1
0
mirror of https://github.com/elua/elua.git synced 2025-01-25 01:02:54 +08:00
elua/boards/known/ek-lm3s8962.lua
Bogdan Marinescu 69c653accd New file system: NIFFS
For more details check https://github.com/pellepl/niffs.
2018-05-19 23:02:27 +03:00

32 lines
722 B
Lua

-- EK-LM3S8962 build configuration
return {
cpu = 'lm3s8962',
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 },
tcpip = { ip = "192.168.1.100", dns = "192.168.1.1", gw = "192.168.1.1", netmask = "255.255.255.0" },
dns = true,
dhcp = true,
xmodem = true,
mmcfs = { spi = 0, cs_port = 6, cs_pin = 0 },
niffs = { linear_area = true },
},
config = {
vtmr = { num = 4, freq = 4 },
},
modules = {
generic = { 'all', '-i2c' },
platform = 'all',
}
}