mirror of
https://github.com/elua/elua.git
synced 2025-01-25 01:02:54 +08:00
25 lines
537 B
Lua
25 lines
537 B
Lua
|
-- EK-LM3S9D92 build configuration
|
||
|
|
||
|
return {
|
||
|
cpu = 'lm3s9d92',
|
||
|
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, first_timer = 0, num_timers = "NUM_TIMER" },
|
||
|
xmodem = true,
|
||
|
linenoise = { shell_lines = 10, lua_lines = 30 }
|
||
|
},
|
||
|
config = {
|
||
|
vtmr = { num = 4, freq = 4 },
|
||
|
},
|
||
|
modules = {
|
||
|
generic = { 'all', '-i2c', '-net' },
|
||
|
}
|
||
|
}
|
||
|
|