brtaylor
Well-known member
EDIT: Sorry, wrong category, I thought this was in bug reports...please move.
I'm encountering a weird issue with a Teensy 4.1 locking up.
The following is the code that I am using:
Here is a screenshot of my Arduino Serial Monitor after the Teensy had locked up:
Teensyduino version 1.54, Arduino version 1.8.15. CPU Speed 528 MHz.
I had been running more complicated code and experiencing lockups, which led to this much more simplified example. I also have some sensors attached to the board - I'm going to try repeating this a few times with a new Teensy 4.1 that I have, without any sensors connected, to rule out hardware issues. Will report back later this evening or early tomorrow on those results.
I'm encountering a weird issue with a Teensy 4.1 locking up.
The following is the code that I am using:
Code:
void setup() {
Serial.begin(115200);
while (!Serial) {}
}
void loop() {
Serial.print( tempmonGetTemp() );
Serial.print("°C");
Serial.print("\t");
Serial.println(millis());
delay(10);
}
Here is a screenshot of my Arduino Serial Monitor after the Teensy had locked up:
Teensyduino version 1.54, Arduino version 1.8.15. CPU Speed 528 MHz.
I had been running more complicated code and experiencing lockups, which led to this much more simplified example. I also have some sensors attached to the board - I'm going to try repeating this a few times with a new Teensy 4.1 that I have, without any sensors connected, to rule out hardware issues. Will report back later this evening or early tomorrow on those results.
Last edited: