Search results

  1. T

    Any thoughts on Mouser / NXP saying EndOfLife for iMXRT1062 ??

    Thank you Paul. Much appreciated. Regards, Tony Barry
  2. T

    Any thoughts on Mouser / NXP saying EndOfLife for iMXRT1062 ??

    Thank you Paul for the reply ... the term "IMXRT1062DVJ6A" being the IC number for the Teensy 4.1 processor appears here:- https://www.pjrc.com/teensy/techspecs.html (in the table) https://www.pjrc.com/store/teensy41.html (in the schematic as you noted, and on the photo of the Teensy 4.1...
  3. T

    Any thoughts on Mouser / NXP saying EndOfLife for iMXRT1062 ??

    Thank you defragster. Much appreciated. The B item is classed as "New" by Mouser and I presume NXO. That implies seven years of production. Plus some rattle room. Regards Tony Barry
  4. T

    Any thoughts on Mouser / NXP saying EndOfLife for iMXRT1062 ??

    Hi, I am considering Teensy 4.1 for a project which may become commercial. I find from Mouser and NXP that the IC MIMXRT1062DVJ6A which powers the Teensy 4.1 is listed End Of Life. https://au.mouser.com/ProductDetail/NXP-Semiconductors/MIMXRT1062DVJ6A?qs=0lSvoLzn4L9s91DnqP7Crg%3D%3D " ...
  5. T

    Wire.setSCL failure with Teensy 3.5

    Thank you for this explanation, defragster. Very helpful. Regards, Tony Barry
  6. T

    Wire.setSCL failure with Teensy 3.5

    Thank you for your comment, thebigg. There are many things that I have missed the significance of. Coming from a microcontroller background for the past forty years, I am sure there are yet more things to be discovered. However, if you can explain how ... Wire.setSCL(pinNumber) is meant to...
  7. T

    Wire.setSCL failure with Teensy 3.5

    Hi defragster, Thank you for the reply. The pin numbers came from the PJRC Teensy 3.5 Pinouts page. https://www.pjrc.com/teensy/pinout.html Scrolling down to Teensy 3.5 Pinouts, we find that pins 3 and 4 are listed as follows:- Pin 3: PWM CAN0TX SCL2 Pin 4: PWM CAN0RX SDA2 For interest...
  8. T

    Wire.setSCL failure with Teensy 3.5

    Thank you defragster. Your solution works. For those who experience the same issue I had with the i2cscanner example and Teensy 3.5, the solution is 1. Do not use the commands Wire.setSCL(3) or Wire.setSDA(4) to access I2C transfers on pins 3 and 4. 2. Instead, change the following multiple...
  9. T

    Wire.setSCL failure with Teensy 3.5

    Howdy all, I am using the standard Wire library and the Example program "I2Cscanner" in the Examples with a Teensy 3.5. Teensy 3.5 has default Wire pins as SCL0 on pin 19 and SDA0 on pin 18. I want them to be on SCL2 as pin 3 and SDA2 as pin 4. This is approved of by the Teensy docs. The...
  10. T

    Reading multiple GPIO pins on the Teensy 4.0 "atomically"

    Thank you for this info Paul, it is much appreciated. Do you know where there is a collated tutorial on "speedy IO for the Teensy 4" ? Presently I am finding that all info is on the forum, widely disseminated. The responsivity of the forum is very gratifying, but repeated questions all...
  11. T

    Official Distributors

    Thank you thebigg !
  12. T

    Reading multiple GPIO pins on the Teensy 4.0 "atomically"

    Hi DukeBlue219, I am with you on this one. I am attempting digital video acquisition from a analog camera's ITU-R BT.656 port, and need 11 bits (8 bit data, clk, hsync, and vsync). About The clock runs at 28.5MHz so I get 17nsec max to read in the data. I really want to be able to do one...
  13. T

    Official Distributors

    Thanks Rat, good to know. I also have ordered them, but this thread starts with an admonition from Robin that PJRC has distributors, and of they are not on this list then they may well be not legit (i.e. PJRC does not get funds from the sale). Since I want PJRC to keep making Teensy 4.1 I am...
  14. T

    Official Distributors

    Hi Robin, Core Electronics sells your stuff in Australia. https://core-electronics.com.au/f/teensy.html Are they legit ? Regards, Tony Barry
  15. T

    Portmanipulation for Teensy 3.6

    Having had the same question within the last two weeks or so (and being told "Read the 2500 page manual") I thought to offer the following thread as a good distillation of the solution:-...
  16. T

    Fastest port manipulation ?

    Hi Theremingenieur, Thank you for your reply. I agree that Arduino syntax is limited. However Teensy appears to use the Arduino IDE as its programming tool of choice. Hence my question. I have downloaded the reference manual, but at 2500 pages, this remains a reference and not a tutorial...
  17. T

    Fastest port manipulation ?

    Hi Paul, Thank you for this excellent advice. Is there a place where I might see how this is done in Arduino syntax ? Any keyword clues so I can search the forum ? Regards, Tony Barry Sydney, AUS
  18. T

    Fastest port manipulation ?

    Thanks to all who have replied. The digitalWriteFast command appears to have serious legs ... and some limitations (of course). The attached image shows a screenshot of my scope (100MHz, 10:1 500MHz passive probe 10MΩ 13pF), executing a great number of digitalWriteFast instructions:- void...
  19. T

    Fastest port manipulation ?

    Hi Paul, Is there an 8-bit wide digitalReadFast equivalent ? e.g. my8BitVar = PIND; // or some other syntax known to the wise and is a polling loop for an external clock signal of lower latency than an interrupt ? Regards, Tony Barry Sydney, AUS
  20. T

    Fastest port manipulation ?

    Howdy Paul, That digitalWriteFast looks like something I could use ! Is there a list of such additions to the Arduino command syntax anywhere ? Regards, Tony Barry Sydney, AUS
  21. T

    Fastest port manipulation ?

    [I moved this post to a new thread at the instigation of Robin] Howdy Paul / forum users, I am working with the Teensy3.6 to see if it can be used for a video project. Briefly, I have a camera which is PAL / NTSC and which has a BTU.656 port on its bottom. This amounts to an 8-bit port...
  22. T

    Easiest way to add RAM?

    Howdy Paul / forum users, I am working with the Teensy3.6 to see if it can be used for a video project. Briefly, I have a camera which is PAL / NTSC and which has a BTU.656 port on its bottom. This amounts to an 8-bit port clocked at 28MHz, which over the course of 40 msec (for PAL) sends out...
Back
Top