blob: 20185e03a5bef7fdc17e4a5210856eb6bedcc568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -e
apps="bme680-max44009-logger button-and-motion-logger
donothing i2cdetect ledblink mpu9250_motionlog
shell sysinfo timertest
waittest wetterstation ws2812b_dmap ws2812b_uart"
for app in $apps; do
make -B arch=arduino-nano app=$app build/system.elf
done
|