44 lines
362 B
C
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>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|