Is there a way to just compile the user application and flash it without rebuilding the system firmware?
make clean all APP=[app folder] PLATFORM=[device type] program-dfu
Is there a way to just compile the user application and flash it without rebuilding the system firmware?
make clean all APP=[app folder] PLATFORM=[device type] program-dfu
make all APP=xx PLATFORM=xx program-dfu
without clean
How simple. Thanks Kenneth
@AshtonJ, if you make from the “main” directory, it won’t rebuild and flash the system. If you make from the “modules” directory, it will.
Thanks @peekay123 .