The USB serial seems to stop working after 8+ characters. To rule out any errors from previous versions, I've installed a fresh Arduino 1.0.4 (64 bit linux) from the arduino.cc website and ran the installer from the first post over this clean installation.
To test this I changed main.cpp in arduino-1.0.4/hardware/teensy/cores/teensy3/main.cpp to the following:
Code:
// To use Teensy 3.0 without Arduino, simply put your code here.
// For example:
Serial.begin(9600);
delay(1000);
pinMode(13, OUTPUT);
while (1) {
Serial.println(Serial.available());
digitalWriteFast(13, HIGH);
delay(500);
digitalWriteFast(13, LOW);
delay(500);
}
Which was uploaded with the standard Makefile and gnu make.
After connecting with 'screen /dev/ttyACM0 9600' to the serial port, everything seems fine until 8+ characters are typed into the serial port. Then the serial port becomes unresponsive, even though the led on the teensy keeps blinking.