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.
17 lines
251 B
17 lines
251 B
#ifndef APP_TASK_RFID
|
|
#define APP_TASK_RFID
|
|
|
|
#include "../ctask/task.h"
|
|
#include "app_common.h"
|
|
|
|
typedef struct
|
|
{
|
|
TS_task task;
|
|
}TS_rfid;
|
|
|
|
extern TS_rfid ts_rfid;
|
|
|
|
extern void L3_task_rfid_init();
|
|
extern void L3_task_rfid_handle(TS_rfid *s);
|
|
|
|
#endif
|
|
|