21 lines
476 B
C
21 lines
476 B
C
#ifndef __TEST_H_
|
|
#define __TEST_H_
|
|
|
|
void runTest();
|
|
void testDI();
|
|
void testDO();
|
|
void testUart();
|
|
void testCreatThreadTask();
|
|
void *testLoggerThread(void *arg);
|
|
void *testDIDetectThread(void *arg);
|
|
void *testUartThread(void *arg);
|
|
void *testTcpThread(void *arg);
|
|
void *test4GThread(void *arg);
|
|
void *testCanSendThread(void *arg);
|
|
void *testCanRecvThread(void *arg);
|
|
void *testModbusThread(void *arg);
|
|
void *testMQTTThread(void *arg);
|
|
void *testXMLThread(void *arg);
|
|
|
|
#endif
|