Search results

  1. T

    Teensy 4.1 won't stop sending single keyboard character despite code clears output - this same code works fine on Teensy 3.2

    I reckon its on line 42 - its the answer to life, the universe and everything. Apparently...
  2. T

    Meet Teensy 4 Pro

    Have you come across the Teensy MicroMod ? https://www.sparkfun.com/products/16402 Not quite as many IO as you propose but is already commercially available off the shelf
  3. T

    SS file updates - will I wear out the card with frequent file overwrites?

    The answer must be yes, but by how much I don't know. What about adding some SPI FRAM which can be written very fast many many times?
  4. T

    Precision and drift of GPS position

    Going back to the OP, I guess the solution depends on what level of accuracy and precsision is required.
  5. T

    Precision and drift of GPS position

    FWIW trying to establish the distance moved by a train based its wheel rotation you quickly loose accuracy, which quickly accumlates over time and distance. When I worked on an ETCS project a few years back we had to resync actual train location with calculated train location using trackside...
  6. T

    Unix on Teensy 3.5

    How would it perform on the much faster T4.x?
  7. T

    Generate variable reluctance sensor signal with audio board.

    Do you really need to generate a VR signal for the ECU under test? A VR signal ranges from very low voltatges to 10s of volts possibly 100's! Are you developing a VR Conditioner yourself or does the ECU already use one such as the MAX9926 or LM1815? Most ECUs would be more than happy to accept...
  8. T

    Recommendations for 10" TFT Display with touchscreen for Teensy 4.1

    I've always kept the ISR handler to an absolute minimum, ie set flag / store data and the main loop checks for said flag and process the stored data. I never call Serial.printf within an ISR, even other "library" functions if at all possible.
  9. T

    Recommendations for 10" TFT Display with touchscreen for Teensy 4.1

    How about renaming the new function? Do you know how to do that?
  10. T

    Recommendations for 10" TFT Display with touchscreen for Teensy 4.1

    I think the following bit of code is incorrect tft.print(???); I susepct it needs to loop through the data, converting the data bytes to a hex string, append that to result string and then display the result string. What have you tried?
  11. T

    Multi-channel Fast Analogue Capture and Stream

    Be interested to know what platform you have experience in to achieve these requirements?
  12. T

    Recommendations for 10" TFT Display with touchscreen for Teensy 4.1

    Looks like you have made great progress! I have found "bread boarding" a prototype, whilst quick, can cause lots of inconsistant phantom issues which you can waste hours trying to solve. How long does the screen take to render the above picture? (which I guess is not the complete screen resolution)
  13. T

    Recommendations for 10" TFT Display with touchscreen for Teensy 4.1

    Note sure what update rate you require for your display, but you could look at the EVE4 range of intelligent controllers. These support smaller displays plus larger 5", 7", 10.1" and 12" displays via SPI at 60Hz frame rate and support touch. Teensy 4 driver and example are available, I use...
  14. T

    TEENSY 4.1 REDUCED ENCODER PERFORMANCE WITH NATIVE ETHERNET

    Is this similar to the "Nagle Algorithm" which attempts to improve efficiency by buffering small data chunks into larger packets when using TCP/IP? i.e. improving ratio of data vs overhead / housekeeping etc. First thing to disable on a real-time system.
  15. T

    CAN BUS Message Issue Transmiting with Teensy 4.1 and BAMOCAR d3 controller using FlexCAN_T4

    I assume you have a serial connection to your board, if not you won't get past startup.
  16. T

    GPS Module and Library Recommendations

    +1 for the Ada Ultimate GPS Module for my own very similar application (race car dashboard) at 5Hz, you will not get better than 2-3 meter absolute accuracy, but relative accuracy over the course of a race is good enough to show lines, etc. I tried 10Hz but it didnt actually make much of a...
  17. T

    [queued] Engine Monitor - Teensy 4.1 & 3.6

    From the 817/8 data sheet - "BT817/8 supports Horizontal Scanout Filter (HSF) operation. The HSF applies a high-quality filter to output pixels, correcting for LCD panels with non-square pixels (the physical size of the LCD pixel is not square). HSF is enabled and disabled with CMD_HSF. Note...
  18. T

    [queued] Engine Monitor - Teensy 4.1 & 3.6

    If you are using the 7" screen from Riverdi, you may have found that the pixels are not square. on the BT817, you can set horizontal resolution to 1076 to get things nice and square again, only really noticeable if you draw circles... #define EVE_HSIZE (1076L) #define EVE_HSF (1024L)
  19. T

    Adafruit_MAX31855 thermocouple was using a Teensy3.2 now going to Teensy4.0

    If it helps, I am reading 4 MAX31855s using this library https://github.com/RobTillaart/MAX31855_RT on a T4.0 running at full speed. All I needed to do was set CS line to use hardware SPI, though you can define your own CLK, CS and MISO lines in the constructor. I am using v0.2.5 of the driver...
  20. T

    [queued] Engine Monitor - Teensy 4.1 & 3.6

    EVE2 is an very old version of the controller... even so it should still work. I have used EVE2 on a LPC4088 MBED years ago, but have moved to EVE4 / Teensy 4.1 / 7" display more recently. Connections look good, though I also have EVE pin 20 (backlight ground) to ground. Also I have tied PD to...
  21. T

    [queued] Engine Monitor - Teensy 4.1 & 3.6

    SOrry for late reply, EVE libary can be found here https://github.com/RudolphRiedel/FT800-FT813, library is actively maintained and expanded with plenty of examples. Note that the EVE displays are intelligent, you don't manipulate pixels in a frame buffer directly, but rather use primitives such...
  22. T

    [queued] Engine Monitor - Teensy 4.1 & 3.6

    My goto display board for Microcontrollers are the EVE3 or EVE4 intelligent display IC's from Bridgetek, you can get them built into a nice sunlight display module from the likes of Riverdi, MatrixOrbital etc. SPI interface, high brightness, plenty of space for graphics, with or without touch...
  23. T

    Dashboard thoughs

    Have you thought about using the EVE4 controller with 5", 7" or 10" display? I've been using an EVE2 5" for years in my race cars, and have just moved to an EVE4 7" display with the teensy 4 (1026x600). More than adequate for dash board display, 1000 nits as well. Not gone touch screen as its...
  24. T

    Teensy 4.1 PDM (Power distribution module) guidance

    Lookup i2t for fuse modelling. Use Suitable connectors, protect and filter all inputs. You’ll need some way of testing large loads out of the car, I used 12v heater, spot lights etc, lastly be prepared to fry quite a few boards as you develop! I converted user logic from text to a p-code to run...
  25. T

    [posted] Atari 520ST emulator on Teensy4.0

    Fixed link - awesome project! https://github.com/Jean-MarcHarvengt/MCUME/blob/master/README.md
  26. T

    [posted] The Guild of Thieves on a Teensy 4.0

    lol - I'm a windows guy, and was getting stuck at the same place even with the same connection details. Thanks for trying!
  27. T

    [posted] The Guild of Thieves on a Teensy 4.0

    love to try this as well, what sort of terminal emulator do you need for windows and how do you get it to actually run?
  28. T

    Teensy 4.1 processor not recommended for new designs <--Nope, just a misunderstanding

    All three of my T4.1 use the MIMXRT1062DVJ6A processor, there is a newer revision called MIMXRT1062DVJ6B which I presume will be used from now on. IMHO there's no earthly reason to stop using T4.1!
  29. T

    Snoozing Teensy LC and RFM69HCW

    Hi All, I've got a small Teensy LC based project to remote switch 4 channels using the Adafruit RFM69HCW at 433Mhz. The transmitter is powered by a 3.7 v 500 mAh lipo connected to teensy VIN. I've installed Arduino v1.8.13, Teensyduino 1.53, and I'm using using the handy snooze library (@...
Back
Top