Hi all,
I've set up NPPEXEC in NPP in order to compile and upload to my atmega1284 AVR using arduino_debug.exe, i.e. command line control of the IDE effectively...........So, no more IDE, and all within NPP. Just hit F6.
However, I can't see how to burn bootloaders with it............any ideas?
For reference, here's what I have so far (NPPEXEC execute scripts):-
COMPILE & UPLOAD - REQUIRES IDE TO BE LAST SAVED WITH REQUIRED BOARD, PROGRAMMER CONFIGURED ETC.:-
set arduino_path = "C:\Program Files (x86)\Arduino-1.8.9\arduino_debug"
cmd /c $(arduino_path) --verbose-build --useprogrammer --verbose-upload --upload $(full_current_path)
COMPILE & UPLOAD - OVERRIDES PREVIOUS IDE SELECTIONS
set arduino_path = "C:\Program Files (x86)\Arduino-1.8.9\arduino_debug"
cmd /c $(arduino_path) --verbose-build --board IanJ_1284:avr:IanJ_1284 --useprogrammer --verbose-upload --upload $(full_current_path)
COMPILE ONLY
set arduino_path = "C:\Program Files (x86)\Arduino-1.8.9\arduino_debug"
cmd /c $(arduino_path) --board IanJ_1284:avr:IanJ_1284 --verify $(FULL_CURRENT_PATH)
Ian.