53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
#include <stdio.h>
|
|
#include <pthread.h>
|
|
#include "test.h"
|
|
#include "kit_logger.h"
|
|
#include "drv_di.h"
|
|
#include "drv_do.h"
|
|
|
|
void runTest()
|
|
{
|
|
printf("runTest...\n");
|
|
testDO();
|
|
testDI();
|
|
testCreatThreadTask();
|
|
}
|
|
|
|
void testCreatThreadTask()
|
|
{
|
|
printf("testThreadTask\n");
|
|
logger_init("./log");
|
|
pthread_t tTestLogger;
|
|
pthread_create(&tTestLogger, NULL, testLoggerThread, "testLoggerThread");
|
|
pthread_join(tTestLogger, NULL);
|
|
logger_destroy();
|
|
}
|
|
|
|
void *testLoggerThread(void *arg)
|
|
{
|
|
logger_level_printf(LOGGER_DEBUG_LEVEL, "this an debug");
|
|
logger_level_printf(LOGGER_INFO_LEVEL, "this an info");
|
|
logger_level_printf(LOGGER_WARN_LEVEL, "this an warn");
|
|
logger_level_printf(LOGGER_ERROR_LEVEL, "this an error");
|
|
logger_level_printf(LOGGER_FATAL_LEVEL, "this an fatal");
|
|
}
|
|
|
|
void testDI()
|
|
{
|
|
|
|
}
|
|
|
|
void testDO()
|
|
{
|
|
printf("test do\n");
|
|
drv_do_write(DRV_LED1, DO_L);
|
|
drv_do_write(DRV_LED2, DO_L);
|
|
drv_do_write(DRV_LED3, DO_L);
|
|
drv_do_write(DRV_LED4, DO_L);
|
|
drv_do_write(DRV_DO1, DO_L);
|
|
drv_do_write(DRV_DO2, DO_L);
|
|
drv_do_write(DRV_DO3, DO_L);
|
|
drv_do_write(DRV_DO4, DO_L);
|
|
drv_do_write(DRV_DO5, DO_L);
|
|
drv_do_write(DRV_DO6, DO_L);
|
|
} |