Skip to content

Commit 9b2ee70

Browse files
committed
Fixed line length
1 parent 97c9a01 commit 9b2ee70

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

arm/cortexm.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -973,8 +973,9 @@ def __init__(self, board):
973973

974974
elif self.mcu in ['stm32f4x1']:
975975
self.add_gnat_source('arm/stm32/stm32f4x1/s-stm32.adb')
976-
self.add_linker_script('arm/stm32/%s/memory-map.ld.tmpl' % self.mcu)
977-
976+
self.add_linker_script('arm/stm32/%s/memory-map.ld.tmpl'
977+
% self.mcu)
978+
978979
elif self.mcu in ['stm32f429x',
979980
'stm32f469x']:
980981
self.add_gnat_source('arm/stm32/stm32f429x/s-stm32.adb')

install.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ def usage():
2222
print(" available. The runtimes are installed in the toolchain itself.")
2323

2424

25-
ALL_BSP = {'arm-eabi': ['stm32f4', 'nucleo_f401re', 'nucleo_f411re', 'stm32f429disco',
25+
ALL_BSP = {'arm-eabi': ['stm32f4',
26+
'nucleo_f401re', 'nucleo_f411re',
27+
'stm32f429disco',
2628
'stm32f469disco',
2729
'stm32f746disco', 'stm32756geval', 'stm32f769disco',
2830
'samg55', 'sam4s', 'samv71', 'openmv2', 'rpi2',

0 commit comments

Comments
 (0)