Search results

  1. M

    Integrate Teensy 4.1 design on custom PCB

    Hi Ted, No sorry, we did not come to that yet. And also do not dare to give an estimation of when that will happen.
  2. M

    Integrate Teensy 4.1 design on custom PCB

    Thank you very much for the reply @PaulStoffregen. @aaronlevan both, we do need the temp range and indeed the shortage does not help either.
  3. M

    Integrate Teensy 4.1 design on custom PCB

    Hi, Because of an ongoing project of ours, I would like to ask what it takes to integrate a MIMXRT1062CVL5B on our own PCB, it is a slightly different version than the one on Teensy 4.1. Differences are Temperature range industrial C and 500 Mhz processor. Due to support by e.g. Arduino and...
  4. M

    Teensy 4.0 ADC SYNCH and 4 channels combined with DMA

    Dear all, I am trying to construct the following ADC triggering Synchronously by a Quadtimer and use DMA to transfer the data to a buffer: Whereby I use the QUAD timer to trigger the ADC, this is working with the example in the ADC_Module.cpp, first tried with one ADC and one pin. Lateron...
  5. M

    TEENSY 4.0 Configure Pinning for different use cases

    Thanks @KurtE for the response above. I indeed found some examples that use a Quadtimer to start ADC and currently I am altering those to also capture the input transition. I saw that the functions on the pins are available, only I did not know if the Teensy has a full crossbar/xbar, meaning...
  6. M

    TEENSY 4.0 Configure Pinning for different use cases

    Dear all, For a project I am looking into using certain pins for different functionality, this is for Teensy 4.0. What are the best steps to see if the new configuration of pins is not conflicting with other configurations already used in the Arduino environment? I found on the NXP page the...
  7. M

    ADC library, with support for Teensy 4, 3.x, and LC

    I am trying to figure out what the correct way is to establish continuous sampling with synchronized ADC0 and ADC1, including DMA to do the heavy lifting of transferring the data. For now, I have no working code yet. adc->adc0->setAveraging(1); // set number of averages...
  8. M

    ADC library, with support for Teensy 4, 3.x, and LC

    I will try and report back
  9. M

    ADC library, with support for Teensy 4, 3.x, and LC

    Looking at the code for the ADC (teensy 4.0) I am particularly interested in using both ADCs synchronously. However in the ADC code I see the following remarks: ... adc->startSynchronizedContinuous(Chan0Pin,Chan1Pin); ... __disable_irq(); // both measurements should have a maximum delay...
  10. M

    ADC Teensy 4.0 using pin 0 and 1

    You are completely correct when looking at the Reference manual the pin is not mentioned, thank you for pointing this out.
  11. M

    ADC Teensy 4.0 using pin 0 and 1

    On the chip these pins are called AD_B0_02 and AD_B0_03 and, from what I know the AD is for the analog channel. I agree they are not registered in Arduino with an Ax name/number. So my statement would be that these pins have analog functionality. Of course I could be wrong so that is why I want...
  12. M

    ADC Teensy 4.0 using pin 0 and 1

    Dear all, For a project I am in need to use both ADCs of the teensy 4.0 and want to sample 4 channels (2 on ADC0 and 2 on ADC1). I prefer to use the pins on the outside, therefor want to use pin 0 and 1 (ADC0): Is there a reason that would not work? I know in Arduino I have to assign an A...
Back
Top