rm -f $(BUILD_DIR)/*.o
rm -f $(BUILD_DIR)/Laplace/*.o
rm -f $(BUILD_DIR)/$(TARGET).elf
- rm -f $(BUILD_DIR)/$(TARGET).bin
\ No newline at end of file
+ rm -f $(BUILD_DIR)/$(TARGET).bin
+
+.PHONY: flash
+flash:
+ dfu-util -a 0 -i 0 -s 0x90400000 -D build/main.bin
\ No newline at end of file
1. Download the arm-none-eabi toolchain
2. run ```make clean && make```
3. the output file is located in build/main.bin
-4. you can flash it to slot B using the Web DFU from TI Planet
+4. you can flash it to slot B using the Web DFU from TI Planet, or by using the command ```make flash``` (unstable)
5. That's it !
## TODO