scripts and ci

This commit is contained in:
Matthew Kennedy 2021-12-27 20:23:26 -08:00
parent 020dd4a392
commit 637ed6cbe0
3 changed files with 10 additions and 1 deletions

View File

@ -12,7 +12,7 @@ rm -r build/
rm ../for_rusefi/wideband_image.h
# build app firmware!
make -j12
make -j12 BOARD=f0_module
# Copy the bin without the bootloader (the image consumed by rusEfi has no bootloader on it)
dd if=build/wideband.bin of=build/wideband_noboot_no_pad.bin skip=6144 bs=1

View File

@ -1,3 +1,5 @@
USE_BOOTLOADER = no
MCU = cortex-m3
include $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk/startup_stm32f1xx.mk

View File

@ -0,0 +1,7 @@
#!/bin/bash
# back out to the root
cd ../..
# build app firmware!
make -j12 BOARD=f1_dave