Forum Rule: Always post complete source code & details to reproduce any issue!
Results 1 to 4 of 4

Thread: Teensy 4.1 with 2.5v io

  1. #1
    Junior Member
    Join Date
    Mar 2023
    Posts
    2

    Teensy 4.1 with 2.5v io

    Hi,
    I've got a teensy 4.1 and need to interface with a 2.5v system. Could use a level shifter, but it would be easy to replace the tlv74733p with a tlv74725p. This would set the 3.3v rail of the teensy to 2.5v, including the NVCC_GPIO rail. Would this break other aspects of the board? Would the usb2 host port still function?

    Thanks

  2. #2
    Senior Member PaulS's Avatar
    Join Date
    Apr 2015
    Location
    Netherlands
    Posts
    1,029
    I would be seriously surprised when the chip is able to run at 2V5 supplied from the regulator.
    Please have a look at this page for the rather complex power-up sequence.
    A quick scan of the datasheet shows that the DCDC_IN pins[L1, L2] need to be powered by 3.0V at the minimum. Same for VDD_HIGH_IN and other pins.

    Click image for larger version. 

Name:	Capture.PNG 
Views:	2 
Size:	138.0 KB 
ID:	30617

    Probably better to use a levelshifter...
    Paul

  3. #3
    Senior Member PaulStoffregen's Avatar
    Join Date
    Nov 2012
    Posts
    27,656
    Quote Originally Posted by cirthix View Post
    it would be easy to replace the tlv74733p with a tlv74725p.
    ...
    Would this break other aspects of the board?
    This would definitely break the power up sequence at step #7. Details here: (scroll down to "Power Up Sequence")

    https://www.pjrc.com/store/ic_mkl02_t4.html

    The bootloader chip waits until the 3.3V power reaches about 2.9 to 3.0 volts before it sends the enable signal to turn on the DCDC which makes the CPU voltage. If you solder a 2.5V regulator, it will just sit there waiting forever for the power to come up.

    Must admit it's been years since I tested, but as I recall the 2.9V threshold was chosen because the DCDC can shut off under extreme conditions if the input voltage is too low. If you worked around the enable issue, you might need more capacitance at the DCDC input. Or you might need an external step-down converter and not use the one built into the chip.


    Would the usb2 host port still function?
    This too is supposed to be at least 3.0 volts, but that's mostly needed for the 1.5K presence resistor and 12 Mbit speed. If you run at 480 Mbit, pretty likely it will work, if your PC (or USB hub) is able to see 1.5K resistor to start the USB enumeration process.

  4. #4
    Junior Member
    Join Date
    Mar 2023
    Posts
    2
    Thanks for the quick feedback, level shifter it is then.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •