2024-11-04 16:59:51 +08:00
|
|
|
#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);
|
2024-11-21 09:55:37 +08:00
|
|
|
void *testModbusThread(void *arg);
|
2024-11-20 16:11:23 +08:00
|
|
|
#endif
|