EMS/test/test.h

21 lines
476 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);
2024-11-21 09:55:37 +08:00
void *testModbusThread(void *arg);
2024-11-22 09:44:21 +08:00
void *testMQTTThread(void *arg);
2024-11-25 16:14:09 +08:00
void *testXMLThread(void *arg);
2024-11-22 09:44:21 +08:00
2024-11-20 16:11:23 +08:00
#endif