mirror of
https://github.com/elua/elua.git
synced 2025-01-25 01:02:54 +08:00
added board EK-LM3S9D92 from TI (LM3S9D92)
This commit is contained in:
parent
5a26274a6e
commit
d190763c7c
@ -127,6 +127,7 @@ board_list = { 'SAM7-EX256' : [ 'AT91SAM7X256', 'AT91SAM7X512' ],
|
|||||||
'MBED' : ['LPC1768'],
|
'MBED' : ['LPC1768'],
|
||||||
'MIZAR32' : [ 'AT32UC3A0256', 'AT32UC3A0512', 'AT32UC3A0128' ],
|
'MIZAR32' : [ 'AT32UC3A0256', 'AT32UC3A0512', 'AT32UC3A0128' ],
|
||||||
'NETDUINO' : [ 'AT91SAM7X512' ],
|
'NETDUINO' : [ 'AT91SAM7X512' ],
|
||||||
|
'EK-LM3S9D92' : [ 'LM3S9D92' ]
|
||||||
}
|
}
|
||||||
|
|
||||||
cpu_list = sum([board_list[i] for i in board_list],[])
|
cpu_list = sum([board_list[i] for i in board_list],[])
|
||||||
|
@ -193,6 +193,7 @@ local board_list =
|
|||||||
[ 'MBED' ] = { 'LPC1768' },
|
[ 'MBED' ] = { 'LPC1768' },
|
||||||
[ 'MIZAR32' ] = { 'AT32UC3A0256', 'AT32UC3A0512', 'AT32UC3A0128' },
|
[ 'MIZAR32' ] = { 'AT32UC3A0256', 'AT32UC3A0512', 'AT32UC3A0128' },
|
||||||
[ 'NETDUINO' ] = { 'AT91SAM7X512' },
|
[ 'NETDUINO' ] = { 'AT91SAM7X512' },
|
||||||
|
[ 'EK-LM3S9D92' ] = { 'LM3S9D92' }
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Build the CPU list starting from the above list
|
-- Build the CPU list starting from the above list
|
||||||
|
@ -34,7 +34,7 @@ end
|
|||||||
|
|
||||||
if board == 'EK-LM3S9B92' then
|
if board == 'EK-LM3S9B92' then
|
||||||
ldscript = "lm3s-9b92.ld"
|
ldscript = "lm3s-9b92.ld"
|
||||||
elseif board == 'SOLDERCORE' then
|
elseif board == 'SOLDERCORE' or board == 'EK-LM3S9D92' then
|
||||||
ldscript = "lm3s-9d92.ld"
|
ldscript = "lm3s-9d92.ld"
|
||||||
else
|
else
|
||||||
ldscript = "lm3s.ld"
|
ldscript = "lm3s.ld"
|
||||||
|
@ -33,7 +33,7 @@ if comp[ 'cpu' ] == 'LM3S9B92' or comp[ 'cpu' ] == 'LM3S9D92':
|
|||||||
|
|
||||||
if comp[ 'board' ] == 'EK-LM3S9B92':
|
if comp[ 'board' ] == 'EK-LM3S9B92':
|
||||||
ldscript = "lm3s-9b92.ld"
|
ldscript = "lm3s-9b92.ld"
|
||||||
elif comp[ 'board' ] == 'SOLDERCORE':
|
elif comp[ 'board' ] == 'SOLDERCORE' or comp[ 'board' ] == 'EK-LM3S9D92':
|
||||||
ldscript = "lm3s-9d92.ld"
|
ldscript = "lm3s-9d92.ld"
|
||||||
else:
|
else:
|
||||||
ldscript = "lm3s.ld"
|
ldscript = "lm3s.ld"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user