12 lines
239 B
C
12 lines
239 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);
|
||
|
#endif
|