I've found that I often need to physically power cycle my Teensy to get USB serial logs. I'm using the Arduino IDE. Has anyone run into this?
100% of the time I'll get output if I power cycle, much of the time I'll get no output if I just upload new firmware to the Teensy.
Any tips or best practices?
Only thing I'm doing is calling in setup
And then doing basic
I've tried adding a Serial.flush() but that doesn't help.
Thanks
100% of the time I'll get output if I power cycle, much of the time I'll get no output if I just upload new firmware to the Teensy.
Any tips or best practices?
Only thing I'm doing is calling in setup
Code:
Serial.begin(9600);
And then doing basic
Code:
Serial.println("I AM ALIVE");
I've tried adding a Serial.flush() but that doesn't help.
Thanks