forked from ccsens_hardware/stc_ttss_868
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
339 B
19 lines
339 B
#ifndef _APP_TASK_UART_H
|
|
#define _APP_TASK_UART_H
|
|
|
|
#include "../ctask/task.h"
|
|
#include "../clib/clib.h"
|
|
|
|
typedef struct _s_task_uart
|
|
{
|
|
TS_task task;
|
|
}S_TASK_UART_TRA;
|
|
|
|
extern S_TASK_UART_TRA s_task_uart;
|
|
|
|
extern void L3_task_uart_init(void);
|
|
extern void L3_task_uart_handler(S_TASK_UART_TRA *s);
|
|
|
|
|
|
#endif // #ifndef _APP_TASK_UART_H
|
|
|
|
|