Per Tillisch
Per Tillisch
Yes that's correct, some libraries have to be patched to support ATmega1284P. The Ethernet library needed the W5100 CS pin defined, Firmata sets some board specific defines, SD defines the...
``` main.c: In function 'main': main.c:221:7: error: 'stkFail' undeclared (first use in this function) if (stkFail = 1){ ```
Sure, I'm just trying to work through the compile errors but am not 100% sure what I'm doing. Feel free to squash any of these eventually if you want to...
I just tried it with prog_flash.c added to CSRC in Makefile and it compiled.
_Bool works
ATmega328P compiles to 4434 bytes, larger than the max bootloader section size. Compiling for ATmega1284P gives the following errors: ``` stk500v1.c: In function 'setup_uart': stk500v1.c:152:2: error: 'UBRRL' undeclared (first use...
Also my compile sizes for avr_boot were larger than zevero's so maybe a different build system will also make it smaller. I'm using the tools included with Arduino 1.6.6 and...
@JadinAndrews any news on this? If fitting it in 4kB is giving you trouble I think it would still be useful to have the option(enabled via preprocessor conditionals) available for...
@alexsartin I can't give an update because I haven't heard anything since my last comment but you can look at the work @JadinAndrews did here: https://github.com/JadinAndrews/avr_boot/commits/master or even @SergeantSeven: https://github.com/SergeantSeven/avr_boot/commits/master...
Great! I know how it goes. I have more plans for the Arduino IDE support aspects of avr_boot on my "to do" list but it's taking me a while to...