2010-05-10 02:07:17 +03:00
|
|
|
# driver <name> = '<filename>' load a file into memory to be run priviledged.
|
|
|
|
# program <name> = '<filename>' load a file into memory to be run normally.
|
2010-07-08 13:38:36 +03:00
|
|
|
driver driver_lcd = "lcd.elf"
|
|
|
|
driver driver_buzzer = "buzzer.elf"
|
2010-05-10 02:07:17 +03:00
|
|
|
driver driver_gpio = "gpio.elf"
|
2010-07-08 13:38:36 +03:00
|
|
|
program alarm = "alarm.elf"
|
|
|
|
program gui = "gui.elf"
|
|
|
|
driver nand = "nand.elf"
|
2010-05-15 19:42:17 +03:00
|
|
|
driver sdmmc = "sd+mmc.elf"
|
2010-06-07 00:03:25 +03:00
|
|
|
program partition = "partition.elf"
|
|
|
|
program fat = "fat.elf"
|
|
|
|
program test = "test.elf"
|
2010-05-01 00:13:49 +03:00
|
|
|
|
|
|
|
# receive <name> / <type> [, <index>] = <cap> prepare to accept a capability from a named program.
|
2010-07-08 13:38:36 +03:00
|
|
|
receive driver_lcd / Display = display
|
|
|
|
receive driver_lcd / Setting = display_bright
|
|
|
|
receive driver_buzzer / Buzzer = buzzer
|
2010-05-10 02:07:17 +03:00
|
|
|
receive driver_gpio / Keyboard , 0 = keyboard
|
|
|
|
receive driver_gpio / Keyboard , 1 = sysreq
|
2010-05-15 19:42:17 +03:00
|
|
|
receive driver_gpio / Event = sdmmc_gpio
|
2010-07-08 13:38:36 +03:00
|
|
|
receive alarm / UI = ui
|
2010-05-15 19:42:17 +03:00
|
|
|
receive sdmmc / WString = sdmmc
|
2010-06-07 00:03:25 +03:00
|
|
|
receive partition / WString, 0 = p0
|
|
|
|
receive partition / WString, 1 = p1
|
|
|
|
receive partition / WString, 2 = p2
|
|
|
|
receive partition / WString, 3 = p3
|
|
|
|
receive fat / Directory = root
|
2010-05-01 00:13:49 +03:00
|
|
|
|
|
|
|
# sysreq <cap> use a capability as the system request keyboard.
|
|
|
|
sysreq sysreq
|
|
|
|
|
2010-05-05 01:07:55 +03:00
|
|
|
# give <name> / <type> [, <index>] = <cap> give this capability to this program when it requests it.
|
2010-07-08 13:38:36 +03:00
|
|
|
give gui / UI = ui
|
|
|
|
give gui / Display = display
|
|
|
|
give gui / Setting = display_bright
|
|
|
|
give gui / Buzzer = buzzer
|
|
|
|
give gui / Keyboard = keyboard
|
2010-05-15 19:42:17 +03:00
|
|
|
give sdmmc / Event = sdmmc_gpio
|
2010-06-07 00:03:25 +03:00
|
|
|
give partition / WString = sdmmc
|
|
|
|
give fat / WString = p0
|
|
|
|
give test / Directory = root
|
2010-05-01 00:13:49 +03:00
|
|
|
|
2010-05-10 02:07:17 +03:00
|
|
|
# include <file> include a file as another config file.
|
2010-05-01 00:13:49 +03:00
|
|
|
|
2010-05-10 02:07:17 +03:00
|
|
|
# at end of file, the initial threads are killed and the drivers and programs are run as soon as all their dependencies are provided.
|