-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathbuild_all_examples.py
More file actions
executable file
·217 lines (172 loc) · 8.49 KB
/
build_all_examples.py
File metadata and controls
executable file
·217 lines (172 loc) · 8.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#! /usr/bin/env python3
import argparse
import os
import os.path
import subprocess
import sys
import shutil
ROOT_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
def run_program(*argv):
print("$ %s" % " ".join(argv))
p = subprocess.Popen(argv, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = p.communicate()
return (p.returncode, stdout, stderr)
def gprbuild(project_file, debug=False):
extra_args = []
extra_args += ["-XADL_BUILD=" + ("Debug" if debug else "Production")]
extra_args += ["-XADL_BUILD_CHECKS=Enabled"]
print("Building '%s'" % project_file)
# Build the project
returncode, stdout, stderr = run_program(
'gprbuild', '-j0', '-p', '-q', '-s', '-P', project_file, *extra_args
)
print(stdout)
if returncode:
print('Build error (gprbuild returned {}):\n{}'.format(
returncode, stderr
))
# Clean to avoid error in the next build with a different run-time or
# compile switches.
run_program('gprclean', "-P", project_file, *extra_args)
return returncode
STM_DRIVERS = "/arch/ARM/STM32/driver_demos/"
# List of project to compile
projects = [
# STM32F429 Discovery
"/boards/stm32f429_discovery/stm32f429_discovery_full.gpr",
"/boards/stm32f429_discovery/stm32f429_discovery_sfp.gpr",
"/examples/STM32F429_Discovery/draw_stm32f429disco.gpr",
"/examples/STM32F429_Discovery/blinky_f429disco.gpr",
"/examples/STM32F429_Discovery/dma2d_stm32f429disco.gpr",
"/examples/STM32F429_Discovery/serial_ports_f429disco.gpr",
# STM32F4 DISCO
"/boards/stm32f407_discovery/stm32f407_discovery_full.gpr",
"/boards/stm32f407_discovery/stm32f407_discovery_sfp.gpr",
"/examples/STM32F4_DISCO/accelerometer/accelerometer.gpr",
"/examples/STM32F4_DISCO/simple_audio/simple_audio.gpr",
"/examples/STM32F4_DISCO/filesystem/filesystem.gpr",
"/examples/STM32F4_DISCO/blinky_f4disco.gpr",
"/examples/STM32F4_DISCO/serial_ports_f4disco.gpr",
# STM32 F4VE
"/boards/stm32_f4ve/stm32_f4ve_full.gpr",
"/boards/stm32_f4ve/stm32_f4ve_sfp.gpr",
"/examples/stm32_f4ve/blinky_stm32_f4ve.gpr",
"/examples/stm32_f4ve/draw/draw.gpr",
"/examples/stm32_f4ve/lcd/lcd.gpr",
"/examples/stm32_f4ve/lcd_spi/lcd_spi.gpr",
# STM32F4XX M
"/boards/stm32f4xx_m/stm32f4xx_m_full.gpr",
"/boards/stm32f4xx_m/stm32f4xx_m_sfp.gpr",
"/examples/stm32f4xx_m/blinky/blinky.gpr",
"/examples/stm32f4xx_m/flash/flash.gpr",
"/examples/stm32f4xx_m/sdcard_fs/sdcard_fs.gpr",
"/examples/stm32f4xx_m/sdcard_raw_io/sdcard_raw_io.gpr",
# Feather STM32F405
"/examples/feather_stm32f405/blinky/blinky.gpr",
"/examples/feather_stm32f405/charlie_wing/charlie_wing.gpr",
# Olimex STM32-H405
"/examples/stm32_h405/blinky/blinky.gpr",
"/examples/stm32_h405/lcd_test/lcd_test.gpr",
# STM32F469 Discovery
"/boards/stm32f469_discovery/stm32f469_discovery_full.gpr",
"/boards/stm32f469_discovery/stm32f469_discovery_sfp.gpr",
"/examples/STM32F469_Discovery/dma2d_stm32f469disco.gpr",
"/examples/STM32F469_Discovery/draw_stm32f469disco.gpr",
"/examples/STM32F469_Discovery/hello_world_tasking_f469disco.gpr",
# STM32F746 Discovery
"/boards/stm32f746_discovery/stm32f746_discovery_full.gpr",
"/boards/stm32f746_discovery/stm32f746_discovery_sfp.gpr",
"/examples/STM32F746_Discovery/dma2d_stm32f746disco.gpr",
"/examples/STM32F746_Discovery/draw_stm32f746disco.gpr",
"/examples/STM32F746_Discovery/blinky_f7disco.gpr",
# STM32F769 Discovery
"/boards/stm32f769_discovery/stm32f769_discovery_full.gpr",
"/boards/stm32f769_discovery/stm32f769_discovery_sfp.gpr",
"/examples/STM32F769_Discovery/dma2d_stm32f769disco.gpr",
"/examples/STM32F769_Discovery/draw_stm32f769disco.gpr",
# NUCLEO-F446ZE
"/boards/nucleo_f446ze/nucleo_f446ze_full.gpr",
"/boards/nucleo_f446ze/nucleo_f446ze_sfp.gpr",
"/examples/nucleo_f446ze/blinky_f446ze.gpr",
# OpenMV2
"/boards/OpenMV2/openmv2_full.gpr",
"/boards/OpenMV2/openmv2_sfp.gpr",
"/examples/OpenMV2/openmv2_example.gpr",
"/examples/OpenMV2/openmv2_example.gpr",
"/examples/OpenMV2/openmv2_example.gpr",
# MicroBit
"/boards/MicroBit/microbit_zfp.gpr",
"/examples/MicroBit/text_scrolling/text_scrolling.gpr",
"/examples/MicroBit/buttons/buttons.gpr",
"/examples/MicroBit/digital_in/digital_in.gpr",
"/examples/MicroBit/music/music.gpr",
"/examples/MicroBit/analog_in/analog_in.gpr",
"/examples/MicroBit/analog_out/analog_out.gpr",
"/examples/MicroBit/digital_out/digital_out.gpr",
"/examples/MicroBit/BLE_beacon/BLE_beacon.gpr",
"/examples/MicroBit/servos/servos.gpr",
"/examples/MicroBit/neopixel/neopixel.gpr",
"/examples/MicroBit/follower/follower.gpr",
"/examples/MicroBit/accelerometer/accelerometer.gpr",
# NRF52_SDK
"/boards/NRF52_DK/nrf52_dk_zfp.gpr",
"/examples/NRF52_DK/buttons/buttons.gpr",
"/examples/NRF52_DK/BLE_beacon/BLE_beacon.gpr",
"/examples/NRF52_DK/digital_out/digital_out.gpr",
# STM32 driver examples
STM_DRIVERS + "/demo_adc_dma/demo_adc_dma.gpr",
STM_DRIVERS + "/demo_adc_interrupts/demo_adc_interrupts.gpr",
STM_DRIVERS + "/demo_adc_polling/demo_adc_polling.gpr",
STM_DRIVERS + "/demo_adc_timer_dma/demo_adc_timer_dma.gpr",
STM_DRIVERS + "/demo_adc_timer_triggered/demo_adc_timer_triggered.gpr",
STM_DRIVERS + "/demo_crc/demo_crc.gpr",
STM_DRIVERS + "/demo_dac_basic/demo_dac_basic.gpr",
STM_DRIVERS + "/demo_dac_dma/demo_dac_dma.gpr",
STM_DRIVERS + "/demo_dma_mem_to_mem/demo_dma_mem_to_mem.gpr",
STM_DRIVERS + "/demo_dma_mem_to_peripheral/demo_usart_dma_continuous.gpr",
STM_DRIVERS + "/demo_gpio_direct_leds/demo_gpio.gpr",
STM_DRIVERS + "/demo_independent_watchdog/demo_iwdg.gpr",
STM_DRIVERS + "/demo_L3GD20_dataready_int/demo_l3gd20_dataready_int.gpr",
STM_DRIVERS + "/demo_L3GD20_fifo_int/demo_l3gd20_fifo_int.gpr",
STM_DRIVERS + "/demo_L3GD20_polling/demo_l3gd20.gpr",
STM_DRIVERS + "/demo_LIS3DSH_pwm/demo_lis3dsh_pwm.gpr",
STM_DRIVERS + "/demo_LIS3DSH_tilt/demo_lis3dsh_tilt.gpr",
STM_DRIVERS + "/demo_rng/demo_rng.gpr",
STM_DRIVERS + "/demo_timer_interrupts_basic/demo_basic_timer_interrupts.gpr",
STM_DRIVERS + "/demo_timer_interrupts_multichannel/demo_timer_interrupts_multichannel.gpr",
STM_DRIVERS + "/demo_timer_pwm/demo_timer_pwm.gpr",
STM_DRIVERS + "/demo_timer_quad_encoder/demo_timer_quad_encoder.gpr",
STM_DRIVERS + "/demo_usart_interrupts/demo_usart_interrupts.gpr",
STM_DRIVERS + "/demo_usart_polling/demo_usart_polling.gpr",
]
# Check if RISC-V32 compiler is available
if shutil.which("riscv64-elf-gnatls"):
# Add RISC-V32 projects
projects += ["/examples/HiFive1/hifive1_example.gpr"]
parser = argparse.ArgumentParser('Compile all the Ada_Drivers_Library examples')
parser.add_argument(
'--prod-only', action='store_true',
help='Only compile in production mode'
)
parser.add_argument(
'pattern', nargs='*',
help='List of patterns to filter the set of examples to build'
)
def main(args):
# Check if we can actually detect a build failure
ret = gprbuild("This_Project_Doesnt_Exist", debug=False)
if not ret:
print("Build failure is not detected")
sys.exit(1)
ret = 0
for prj in projects:
# Check filter pattern, if any
if args.pattern and not any(pat in prj for pat in args.pattern):
continue
if not args.prod_only:
ret = ret or gprbuild(ROOT_DIR + prj, debug=True)
ret = ret or gprbuild(ROOT_DIR + prj, debug=False)
if ret:
sys.exit(1)
if __name__ == '__main__':
main(parser.parse_args())