g0b1vetx-board/Board/network/network.c
2023-11-30 08:10:01 +08:00

44 lines
362 B
C

#include "main.h"
#include "os-app.h"
#include <stdio.h>
#include <rtthread.h>
#include <string.h>
#include "usart-board.h"
void networkInit (void)
{
}
// 网络线程 mqtt 线程和 驱动都从这里走
void networkthread_entry (void * argument)
{
while (1)
{
}
}
#if !defined(LOG_TAG)
#define LOG_TAG "network"
#endif
#include <elog.h>