mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 18:25:05 +00:00
source files mainly done by Vincent. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> Change-Id: Ic2d1becd400c9b4b4a14d4a243af1bdf77d9c1e2
16 lines
447 B
Plaintext
16 lines
447 B
Plaintext
|
|
/**
|
|
* List of enabled tasks in the priority order
|
|
*
|
|
* The first one has the lowest priority.
|
|
*/
|
|
#define CONFIG_TASK_LIST \
|
|
TASK(BLINK, UserLedBlink, NULL) \
|
|
TASK(CONSOLE, console_task, NULL) \
|
|
TASK(TMRA, TaskTimer, (void *)1234) \
|
|
TASK(TMRB, TaskTimer, (void *)5678) \
|
|
TASK(TMRC, TaskTimer, (void *)8462) \
|
|
TASK(TMRD, TaskTimer, (void *)3719) \
|
|
TASK(HOSTCMD, host_command_task, NULL)\
|
|
TASK(I8042CMD, i8042_command_task, NULL)
|