EMS/test/test.h

17 lines
375 B
C
Raw Normal View History

#ifndef __TEST_H_
#define __TEST_H_
void runTest();
void testDI();
void testDO();
2024-11-12 08:21:37 +08:00
void testUart();
void testCreatThreadTask();
void *testLoggerThread(void *arg);
void *testDIDetectThread(void *arg);
void *testUartThread(void *arg);
2024-11-20 16:11:23 +08:00
void *testTcpThread(void *arg);
void *test4GThread(void *arg);
void *testCanSendThread(void *arg);
void *testCanRecvThread(void *arg);
#endif