Can somebody please make and upload a hex file of the attached sketch? I have included all pertinent libraries.
Thanks!
storm-x-firmware (2).zip (171 KB)
Can somebody please make and upload a hex file of the attached sketch? I have included all pertinent libraries.
Thanks!
storm-x-firmware (2).zip (171 KB)
Turn on verbose compiling and you will find the IDE makes the hex file for you.
I understand that, but it is not compiling on my computer.
technosteve:
I understand that, but it is not compiling on my computer.
Maybe because the source code has syntax errors?
It won't compile because it is 50 bytes too big. It works on other computers, just not mine, and I'm only asking for a favor. I've dumped 8 hours trying to get it to work, and I'm done attempting to resolve the issue. All I need is the simple hex file please.
Well there's a syntax error on line 75 (a stray slash character) that's not in the original source code from the coralux.net web site. After fixing that I get this error:
Binary sketch size: 32,306 bytes (of a 32,256 byte maximum)
I'm using Arduino 1.0.5-r2, if that makes any difference.
I should note that 32,306 bytes is small enough to fit on an ATmega328p if it didn't have an Arduino bootloader, but I don't know if the Arduino IDE supports that configuration (ie, you would have to use a different programmer).
You could try making a lot of the functions "static" which reduces code size in many cases.
You may also have some luck asking the Coralux people for support.
Edit: I just made a bunch of functions and variable static and brought it down to 32,008 bytes.
Too_Big.ino (71.3 KB)