I get the error message, 'A problem ocurred while trying to open the files used to store the console output.'.
Could you let me know how to debug this.
cheers
isa
I also get these error messages:
Error inside Serial.<init>() gnu.io.PortInUseException: Unknown Application at gnu.io.CommPortIdentifier.open(CommPortIdentifier.java:354) at processing.app.Serial.<init>(Serial.java:127) at processing.app.Serial.<init>(Serial.java:72) at processing.app.Uploader.downloadJava(Uploader.java:130) at processing.app.Sketch.upload(Sketch.java:1570) at java.awt.Component.processEvent(Component.java:4963) at java.awt.EventDispatchThread.run(EventDispatchThread.java:100) Atmel AVR ATmega8 is found. Uploading: flash Firmware Version: 1.18 Firmware Version: 1.18
//original code from wiring // light serial // by BARRAGAN <http://people.interaction-ivrea.it/h.barragan>
char val; // variable to receive data from the serial port int ledpin = 48; // LED connected to pin 48 (on-board LED) void setup() { pinMode(ledpin, OUTPUT); // pin 48 (on-board LED) as OUTPUT Serial.begin(9600); // start serial communication at 9600bps }
void loop() { if( Serial.available() ) // if data is available to read { val = Serial.read(); // read it and store it in 'val' } if( val == 'H' ) // if 'H' was received { digitalWrite(ledpin, HIGH); // turn ON the LED } else { digitalWrite(ledpin, LOW); // otherwise turn it OFF } delay(100); // wait 100ms for next reading }
We have received the Arduino extreme boards at kingston, thanks for this.
I've tested the boards with the IDE v3 on Windows XP(which uploads fine), I've done the same on Tiger OSX 10.4.4 - and I'm finding that there are problems uploading.
- I've upgraded the FTDI USB Serial drivers to v2_1_0.
- I've run the macosx_setup.command and shutdown X.
- I've set serial port to /dev/cu.usbserial-151
- I've set the serial baud rate to 19200
- I've set the serial_download rate at 19200 (in preferences.txt), and the baud speed at 19200.
The 'programmer is not responding'
Could someone let me know if there are any updates with 10.4.4