1
0
mirror of https://github.com/elua/elua.git synced 2025-01-25 01:02:54 +08:00
elua/boards/known/ek-lm3s1968.lua
2013-08-31 17:58:40 -03:00

27 lines
513 B
Lua

-- EK-LM3S1968 build configuration
return {
cpu = 'lm3s1968',
components = {
sercon = { uart = 0, speed = 115200 },
wofs = true,
romfs = true,
shell = true,
term = { lines = 25, cols = 80 },
cints = true,
lm3s_disp = true,
lm3s_pio = true,
rpc = { uart = 0, speed = 115200 },
adc = { buf_size = 2 },
xmodem = true,
},
config = {
vtmr = { num = 4, freq = 4 },
},
modules = {
generic = { 'all', '-i2c', '-net', '-can' },
platform = 'all',
}
}