Search results

  1. T

    Teensy 4.1 DMA Hardware Chain Issue: 4:1 PIT Trigger to ADC_ETC Trigger Ratio

    Hello everyone, I'm encountering a persistent issue with a hardware chain setup on a Teensy 4.1 (IMXRT1062) and would greatly appreciate any insights. My goal is to achieve a 1:1:1 trigger ratio across the following chain: PIT Timer -> XBAR -> ADC_ETC -> ADC1 -> DMAMUX -> DMA Problem: Despite...
  2. T

    PIT => ADC_ETC 4:1 divider? ClockTree attached

    Hey, Using a teensy 4.1 I have set up a chain PIT => ADC_ETC => DMA. My problem is, that I only get one ADC_ETC trigger with four PIT-Triggers. This is independent from the speed. It stays the same if I slow down / speed up the PIT frequency. I wonder why this is the case? Is this an internal...
  3. T

    ADC_ETC Not Triggering (Software & Hardware Mode)

    And here is a minimal sketch: #include <Arduino.h> volatile uint32_t minimal_adc_etc_isr_count_v7 = 0; // Neuer Zähler für Klarheit void adc_etc_minimal_isr_v7() { // Neuer ISR-Name if (ADC_ETC_DONE0_1_IRQ & ADC_ETC_DONE0_1_IRQ_TRIG_DONE1(0)) { // Prüfe TRIG1 DONE0...
  4. T

    ADC_ETC Not Triggering (Software & Hardware Mode)

    Hello everyone, I'm facing a persistent issue with the ADC_ETC module on an i.MX RT1060 (Teensy 4.1) where it fails to initiate a trigger, both in software trigger mode and when triggered externally via XBAR from a PIT. I've been debugging this extensively and would appreciate any insights or...
  5. T

    Motorized fader with teensy

    Hey, I'm new on teensy and I just got here because I'm interested in building a MIDI controller. For that one I wanna use a few motorized ALPS fader and I wonder, if there is already a working code out. I use the MIDIlibrary, which is available for the teensy but it seems not that easy to put...
Back
Top