DJohnstone
Member
Is there an easy way to monitor the serial debug messages on a Teensy 3.1 outside of Arduino? I'm trying to print debug messages inside of the a Audio library and I'm not having any luck with Arduino's built in Serial Monitor app.
Care to elaborate about something more technically specific than "not having any luck " ?
Usually, if you code thisThanks guys, I guess more specifically I'm trying to print debug messages during the initialization of Audio Library objects. I can't start the Arduino serial monitor fast enough after loading my project to catch these initial messages.
Serial.begin(9600);
while (!Serial)
;
delay(1000);
This can be done with a Mac compatible terminal emulator that uses the USB serial interface and virtual serial port, same concept as in MS Windows' COMn, but for /dev/ttyxxxAlso, it would be nice to be able to print and monitor serial debug messages when building outside of Arduino with an external make system. I use Teensy-Template, which is great for building externally.
I am developing on a Mac.
Another way to fix that - in setup or main loop have it wait until a pin condition occurs (I usually loop until a digitalRead(pin) returns zero - set one of the pins to be an input with pullup, and then use a button or wire-touch to GND - app starts when the pin goes low).I can't start the Arduino serial monitor fast enough after loading my project to catch these initial messages.