1
0
mirror of https://github.com/elua/elua.git synced 2025-01-25 01:02:54 +08:00
elua/boards/known/str9-comstick.lua

26 lines
529 B
Lua
Raw Normal View History

2012-07-14 18:27:37 +03:00
-- STR9-comStick board build configuration
return {
cpu = 'str912faw44',
components = {
sercon = { uart = 1, 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 },
2012-07-14 18:27:37 +03:00
xmodem = true
},
config = {
vtmr = { num = 4, freq = 16 },
},
modules = {
2012-07-15 00:50:12 +03:00
generic = { 'all', "-net", "-can" },
2012-07-14 18:27:37 +03:00
platform = 'all'
}
}