Search results

  1. A

    TyCommander can upload on MacOS but not Windows

    I mainly use a Windows machine, I have lost the ability to upload anything to any Teensy with TyCommander on any Windows machine. After modifying one .cpp file***, TyCommander can no longer upload a project I have been working on. The code compiles with no problem in Arduino (but does not...
  2. A

    USB Serial write timeout after sending 13 bytes to Teensy 3.2

    I want to send a command to the Teensy that is 25 bytes long, and I attempt to read it with the following simple code: void setup() { Serial.begin(57600); } void loop() { if (Serial.available()>24){ Serial.read(); } } I send bytes one at a time to the Teensy with TyQt serial...
Back
Top