Hi Guys,
Has anyone managed to get "Take over serial" to work?
In GDB I see:Code:[no_device]: No such file or directory.
I cannot see the serial device available either.
The only way to get flashing working after this is to close the teensy flashing app, next time it reloads flashing works again.
I have Dual Serial working fine but am using the audio/midi usb and only have one serial.
Thanks
Andy
Take over Serial is a bit tricky. It works by using a "#define" to redirect "Serial" to "debug" in TeensyDebug.h. The "debug" object will format data so that GDB will print it. If any of your sketches use the Serial device, they have to do this or include "TeensyDebug.h", which does this (line 66). If they don't, then they'll send extraneous data to GDB and it will fail. Are you using Mac, Linux or Windows?