My problem is that I can not get the Arduino environment to program the board.
I followed the instructions to install Arduino as per:http://www.arduino.cc/playground/Linux/Ubuntu
Which I am recapping below:
- sudo apt-get install sun-java6-jre gcc-avr avr-libc - sudo update-alternatives --config java
to make sure, sun-java is used- sudo apt-get install ia32-libs librxtx-java- $ wget http://arduino.googlecode.com/files/arduino-0017.tgz
$ tar -xf arduino*.tgz
$ cd arduino*- $ cd lib/
$ mv RXTXcomm.jar RXTXcomm.jar-DISABLED
$ mv librxtxSerial.so librxtxSerial.so-DISABLED
$ cd .. - Made some changes to the arduino script
#!/bin/sh
APPDIR="$(dirname -- "${}")"
for LIB in \
java/lib/rt.jar \
java/lib/tools.jar \
lib/*.jar \
;
do
CLASSPATH="${CLASSPATH}:${APPDIR}/${LIB}"
done
CLASSPATH="${CLASSPATH}:/usr/share/java/RXTXcomm.jar"
export CLASSPATH
LD_LIBRARY_PATH=/usr/lib:'pwd'/lib:${LD_LIBRARY_PATH}
export LD_LIBRARY_PATH
export PATH="${APPDIR}/java/bin:${PATH}"
java -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel processing.app.Base
- Set the USB port and board properly in Arduino IDE
- ./arduino- Opened the Blink sketch- When I trie to upload I get the message
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_recv(): programmer is not responding
Parallel I tried the same board on Ubuntu 9.04 32-bit without any problems.
I would like to hear from anyone who has this hardware/software combination that got it to work. Or, any other tips are welcome.
Thanks in advance.