EMS/test/test.h

14 lines
264 B
C
Raw Normal View History

#ifndef __TEST_H_
#define __TEST_H_
2024-11-13 15:23:09 +08:00
#define _DEFAULT_SOURCE
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);
#endif