Embedded Systems
spark.txt
Associated article: The SPARK Real-Time Kernel
Tags: Embedded Systems
Published source code accompanying the article by Anatoly Kotlarsky in which he discusses SPARK, short for "Small Portable Adjustable Real-time Kernel." SPARK is a royalty free, fast, tiny, portable real-time kernel. Anatoly describes how he used it to build a video bar-code scanner.
The SPARK Real-time Kernel
by Anatoly Kotlarsky
Listing One
TASKS
{
TASK_MAIN_MENU: taskMainMenu
TASK_HELP: taskHelp
TASK_LIST_DECODERS: taskListDecoders
TASK_ENABLE_DECODER: taskEnableDecoder
TASK_DISABLE_DECODER: taskDisableDecoder
TASK_DECODE: taskDecode
TASK_RUN_SCANNER: taskRunScanner
}
STATES
{
STATE_POWER_UP
...


