Hi,
I managed to debug a simple program but I cannot debug anything when we use the Wire library. The code bellow will "freeze" the teensy and no serial ports are generated. As soon as I comment the TeensyDebug library or remove the Wire library, the two ports are generated and I can debug.
I tested it with TeensyMicroMod and the latest TeensyDebug code.
#include "TeensyDebug.h"
#include <Wire.h>
void setup() {
Wire.begin();
}
void loop() {
}