mirror of
https://github.com/LIV2/lide.device.git
synced 2025-12-06 00:32:45 +00:00
11 lines
172 B
C
11 lines
172 B
C
#include "device.h"
|
|
#include <stdbool.h>
|
|
|
|
#define TASK_NAME "idetask"
|
|
#define TASK_PRIORITY 0
|
|
#define TASK_STACK_SIZE 65535
|
|
|
|
#define CMD_DIE CMD_NONSTD+1
|
|
|
|
void ide_task();
|