1
0
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:
Bogdan Marinescu 2012-06-27 00:45:04 +03:00
parent 5a26274a6e
commit d190763c7c
4 changed files with 4 additions and 2 deletions

View File

@ -127,6 +127,7 @@ board_list = { 'SAM7-EX256' : [ 'AT91SAM7X256', 'AT91SAM7X512' ],
'MBED' : ['LPC1768'],
'MIZAR32' : [ 'AT32UC3A0256', 'AT32UC3A0512', 'AT32UC3A0128' ],
'NETDUINO' : [ 'AT91SAM7X512' ],
'EK-LM3S9D92' : [ 'LM3S9D92' ]
}
cpu_list = sum([board_list[i] for i in board_list],[])

View File

@ -193,6 +193,7 @@ local board_list =
[ 'MBED' ] = { 'LPC1768' },
[ 'MIZAR32' ] = { 'AT32UC3A0256', 'AT32UC3A0512', 'AT32UC3A0128' },
[ 'NETDUINO' ] = { 'AT91SAM7X512' },
[ 'EK-LM3S9D92' ] = { 'LM3S9D92' }
}
-- Build the CPU list starting from the above list

View File

@ -34,7 +34,7 @@ end
if board == 'EK-LM3S9B92' then
ldscript = "lm3s-9b92.ld"
elseif board == 'SOLDERCORE' then
elseif board == 'SOLDERCORE' or board == 'EK-LM3S9D92' then
ldscript = "lm3s-9d92.ld"
else
ldscript = "lm3s.ld"

View File

@ -33,7 +33,7 @@ if comp[ 'cpu' ] == 'LM3S9B92' or comp[ 'cpu' ] == 'LM3S9D92':
if comp[ 'board' ] == 'EK-LM3S9B92':
ldscript = "lm3s-9b92.ld"
elif comp[ 'board' ] == 'SOLDERCORE':
elif comp[ 'board' ] == 'SOLDERCORE' or comp[ 'board' ] == 'EK-LM3S9D92':
ldscript = "lm3s-9d92.ld"
else:
ldscript = "lm3s.ld"