1
0
mirror of https://github.com/elua/elua.git synced 2025-01-25 01:02:54 +08:00
elua/boards/known/ek-lm3s9b92.lua
Bogdan Marinescu a9da3f816b Documentation updated
- (mostly) finished configurator docs
- arch_overview conterted to AsciiDoc and updated
- 'adc' parameters updates in all configuration files
- added 'config_only' option to the build system
2013-05-25 01:30:08 +03:00

25 lines
494 B
Lua

-- EK-LM3S9B92 build configuration
return {
cpu = 'lm3s9b92',
components = {
sercon = { uart = 0, speed = 115200 },
wofs = true,
romfs = true,
shell = true,
term = { lines = 25, cols = 80 },
cints = true,
rpc = { uart = 0, speed = 115200 },
adc = { buf_size = 2 },
xmodem = true,
linenoise = { shell_lines = 10, lua_lines = 30 }
},
config = {
vtmr = { num = 4, freq = 4 },
},
modules = {
generic = { 'all', '-i2c', '-net' },
}
}