1
0
mirror of https://github.com/elua/elua.git synced 2025-01-08 20:56:17 +08:00
elua/boards/known/str-e912.lua
2013-08-31 17:58:40 -03:00

27 lines
561 B
Lua

-- STR-E912 build configuration
return {
cpu = 'str912faw44',
components = {
sercon = { uart = 0, speed = 115200 },
romfs = true,
shell = true,
term = { lines = 25, cols = 80 },
cints = true,
luaints = true,
linenoise = { shell_lines = 10, lua_lines = 50 },
rpc = { uart = 0, speed = 115200 },
adc = { buf_size = 2 },
xmodem = true,
mmcfs = { spi = 0, cs_port = 2, cs_pin = 7 },
},
config = {
vtmr = { num = 4, freq = 16 },
},
modules = {
generic = { 'all', '-net' },
platform = 'all'
}
}