Search results

  1. H

    What connector goes on the Teensy 4.0 rear pads

    I think this is a 2x5 0.1" pitch SMT connector. But I was hoping someone knew for sure and had a part number. Thanks
  2. H

    Teensy 4.0 Serial monitor with USB RawHID?

    I finally got it to work. Not sure what fixed it or what I was doing wrong before but now it works. Thanks for putting up with my confusion. Now I can try to figure out why I sometimes get odd touch results with the Teensy 4.0 board. The TouchScreen library works fine with the Teensy 3.2 But...
  3. H

    Teensy 4.0 Serial monitor with USB RawHID?

    Weird... I just can't get it to work. I did download the TyCommander repo and built it for my Linux machine. It does see both the RadHID and Seremu interfaces: But I get nothing in the Serial output: I did make sure that the Serial interface is started in my program: void setup() {...
  4. H

    Teensy 4.0 Serial monitor with USB RawHID?

    I still have not figured out how to get the TeensyMonitor to work with RAWHID and the serial emulator. My connection on the bottom of the Arduino window says: Teensy 4.0, Raw HID, 600 MHz, Faster, US English on fake serial When I open the Serial Monitor the top of the window says...
  5. H

    Teensy 3.2 -> 4.0 ILI9341 touchscreen issues

    The examples in the default libraries in Arduino 1.8.13/Teensyduino 1.53 actually work fine with both the Teensy 3.2 and Teensy 4.0. For my purpose I have modified both libraries a bit so just updating to the default libraries wasn't an option. I had to go down the rabbit hole and actually...
  6. H

    Teensy 3.2 -> 4.0 ILI9341 touchscreen issues

    I went back to my original code and local libraries. I then updated my local libraries based on the differences in /opt/arduino-1.8.13/hardware/teensy/avr/libraries. Both the Teensy 3.2 and Teensy 4.0 board are working now. Not sure what I missed the first time... BTW, the TouchScreen...
  7. H

    Teensy 3.2 -> 4.0 ILI9341 touchscreen issues

    The ILI9431 display I am using is like the Adafruit 1774 display. I have my own carrier board for the Teensy that the display module connects to. The display itself is connected as: #define TFT_CS 10 #define TFT_DC 9 #define TFT_RST 23 #define TFT_LITE 22 ILI9341_t3 tft =...
  8. H

    Teensy 4.0 Serial monitor with USB RawHID?

    Hmm.. I tried that but still don't see anything in the Serial Monitor. The title of the window says "TeensyMonitor: Closed".
  9. H

    Teensy 4.0 Serial monitor with USB RawHID?

    Is there any way to get the Serial monitor to work when the USB Type is Raw HID? Thanks
  10. H

    Teensy 3.2 -> 4.0 ILI9341 touchscreen issues

    Hi all, With the Teensy 3.2 shortage I am trying to make a Teensy 4.0 work on a small HMI (Human Machine Interface) we make. I got the ILI9341 LCD to work correctly but the touchscreen is a problem. With the 3.2 board when a "button" is touched on the screen I get a press code and when you...
  11. H

    Is Teensy 3.2 EOL?

    Hello, I have a project designed around a Teensy 3.2 board. It uses the extra I/O available on the SMT header on the back of the board. Is the out of stock of the Teensy 3.2 temporary or is it discontinued? It it's discontinued I will need to look at using another board for the I/O...
  12. H

    Teensy 3.6 digital pins 29/30 with CAN

    I'm using CAN0 on pins 3 & 4. CAN works fine. Most of the remaining pins I have set as either inputs or outputs (using the pinMode() function). Seems like all the pins work except for pins 29 & 30. I can't get them to work as inputs (I have not tried them as outputs yet). The only odd thing I...
  13. H

    Teensy 3.6 digital pins 29/30 with CAN

    Hopefully the title explains the issue... ;-) I'm messing with the CAN interface on a Teensy 3.6 board. I'm using the FlexCAN_T4 library with just the CAN0 interface: FlexCAN_T4<CAN0, RX_SIZE_256, TX_SIZE_16> can0; I have a number of the digital pins setup as inputs and others as outputs...
  14. H

    Teensy loader cli with rawhid device

    Hello all, Is there a way to used the Teensy loader cli with a rawhid device that does not require pressing the reset button? Currently I can use the cli like this to reprogram my board: $ ./teensy_loader -mmcu=mk20dx256 -w -s program.hex This works great except I have to press the reset...
  15. H

    command line loader utility (no button press)

    Eventually the Teensy will be connected to a headless Beaglebone Black. The Teensy loader CLI stuff is what I'm trying to get working. I have compiled it on the Beaglebone and it will program the Teensy board. But, like i said, I need to press the program button in order for it to work. Even...
  16. H

    command line loader utility (no button press)

    Hello all! Is it possible to use the command line loader utility without needing to press the program button to start an update? I have a teensy 3.2 buried in a machine and it's a real pain to get to it whenever I need to update the code. The only external connection I have to the board is the...
Back
Top