I have a EtherTen board, and I am attempting to load the dmd_demo example sketch from the DMD package.
I have tried both Arduino 1.5.7 and the latest nightly (2014-08-31). This is on OSX 10.9.4. For Arduino 1.5.7, I had to use the old Java 6 package, as the Java 7 package doesn't work with OSX 10.9 (https://github.com/arduino/Arduino/issues/2178).
When I go to File, then Upload, I get the following output:
Code: Select all
Sketch uses 9,878 bytes (30%) of program storage space. Maximum is 32,256 bytes.
Global variables use 340 bytes (16%) of dynamic memory, leaving 1,708 bytes for local variables. Maximum is 2,048 bytes.
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x10
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x10
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x10
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x10
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x10
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x10
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x10
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x10
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x10
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x10
Problem uploading to board. See http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions.
Code: Select all
Build options changed, rebuilding all
Sketch uses 1,030 bytes (3%) of program storage space. Maximum is 32,256 bytes.
Global variables use 9 bytes (0%) of dynamic memory, leaving 2,039 bytes for local variables. Maximum is 2,048 bytes.
Code: Select all
Build options changed, rebuilding all
Sketch uses 10,642 bytes (32%) of program storage space. Maximum is 32,256 bytes.
Global variables use 281 bytes (13%) of dynamic memory, leaving 1,767 bytes for local variables. Maximum is 2,048 bytes.
avrdude: stk500_recv(): programmer is not responding
Problem uploading to board. See http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions.
Code: Select all
Build options changed, rebuilding all
Sketch uses 9,992 bytes (30%) of program storage space. Maximum is 32,256 bytes.
Global variables use 309 bytes (15%) of dynamic memory, leaving 1,739 bytes for local variables. Maximum is 2,048 bytes.
avrdude: loadaddr(): (b) protocol error, expect=0x14, resp=0x00
avrdude: stk500_paged_write(): (a) protocol error, expect=0x14, resp=0x00
avrdude: stk500_cmd(): programmer is out of sync
Problem uploading to board. See http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions.
Regards,
Victor