1
0
mirror of https://github.com/elua/elua.git synced 2025-01-08 20:56:17 +08:00
elua/boards/known/lpc-h2888.lua
2012-07-15 00:50:12 +03:00

21 lines
487 B
Lua

-- LPC-H2888 build configuration
return {
cpu = 'lpc2888',
components = {
sercon = { uart = 0, speed = 115200, timer = 0 },
romfs = true,
shell = true,
term = { lines = 25, cols = 80 },
xmodem = true,
rpc = { uart = 0, speed = 115200 }
},
config = {
ram = { ext_start = { "SDRAM_BASE_ADDR" }, ext_size = { "SDRAM_SIZE" } }
},
modules = {
generic = { 'pio', 'tmr', 'pd', 'uart', 'term', 'pack', 'bit', 'elua', 'cpu', 'rpc', 'all_lua' }
}
}