I’m using a custom Teensy MicroMod carrier, and my Serial Monitor disconnects about 5 seconds after starting. However, the main loop keeps running fine. I confirmed this because my LED blinking code continues working:
void setup() {
Serial.begin(9600);
while (!Serial) {;} // Wait for serial (optional)
delay(100);
Serial.println(“Serial test started…”);
pinMode(13, OUTPUT);
pinMode(9, OUTPUT);
}
I have just tried your sketch on my ATP carrier and Teensy. It works without a problem. I only needed to update the udev-folder on Ubuntu. Is your serial monitor set for 9600 ?
I’m using Arduino IDE to program on Windows 10, and yes, the Serial Monitor is set to 9600.
Everything works fine on SparkFun’s MicroMod ATP Carrier Board, but when I use my custom carrier board, the Serial Monitor only outputs for about 5000ms (~5 seconds) before the USB serial disconnects. I have to reconnect the USB to get the serial connection back.
Could this be due to my USB D- and D+ PCB traces being too small or too long?
Here’s my basic USB to Teensy MicroMod connection:
USB VIN → 5V
D+ → Teensy D+
D- → Teensy D-
GND → GND
3.3V → 3.3V
Any thoughts on whether the PCB routing could be the issue? Thanks!