Teensy 3.2 keeps disconnecting after being plugged in

GadielC

New member
Hi there, Im currently doing a project with a Teensy 3.2. My teensy keeps disconnecting after a few seconds of being plugged into my pc.

I tried disconnecting everything that I can off the teensy but the same thing still occurs.

Any suggestions on what to do? Thanks!
 
What software do you have running?
It could be that your software is causing a crash and the Teensy is re-booting.
Have a look at this page. You could incorporate it with you software to aid debugging.
 
Try programming your Teensy 3.2 with something very simple, like this:

Code:
unsigned int count = 0;

void setup() {
  Serial.begin(9600);
  pinMode(13, OUTPUT);
}

void loop() {
  Serial.print("count = ");
  Serial.println(count++);
  delay(500);
  digitalToggle(13);
}

If it runs stable with simple code, start looking for problems in your code.

If it also stops with this program, then investigate hardware issues like power.
 
Back
Top