alihares99
New member
I have developed 2 libraries for DMA Serial for Teensy 3.6 and Teensy 4.0 which are fully compatible with Arduino architecture and code style and easy to use. They are currently open-source and available to public at my Github page (DmaSerialTeensy3_6 and DmaSerialTeensy4_0). I want to know if there is any opportunity for me to publish them as a part of the official libraries of the Teensy Libraries.
Here is how you would use the library:
Here is how you would use the library:
#include "DmaSerialTeensy.h"
void setup() {
dmaSerial1.begin(115200);
}
void Loop() {
while (dmaSerial1.available()) {
dmaSerial1.read();
}
static uint32_t last = 1000;
if (millis() >= last + 1000) {
last = millis();
dmaSerial1.println("alive\r\n");
}
}