L
Reaction score
0

Latest activity Postings About

    • L
      Posting code seems to be removing content on final Serial.println. Should read: Serial.println(dst); Not sure why.
    • L
      Sorry about that. See corrected code that compiles. / #include <Arduino.h> #include <imxrt.h> #include <DMAChannel.h> DMAChannel dma; DMAMEM uint32_t src[4] = { 10, 20, 30, 40 }; DMAMEM uint32_t dst[4]; volatile bool dmaDone = false; void...
    • L
      Hello, I can't seem to get a simple DMA transfer to work. Attached is the code I am trying to make work. I am running on a Teensy 4.1. Thanks for any help I can get. ------ #include <Arduino.h> #include <imxrt.h> #include <DMAChannel.h>...
  • Loading…
  • Loading…
Back
Top