FastLED 3.9.15
Loading...
Searching...
No Matches

◆ toString() [1/2]

const char * fl::toString ( RxBackend backend)
inline

Definition at line 17 of file types.h.

17 {
18 switch (backend) {
19 case RxBackend::PLATFORM_DEFAULT: return "PLATFORM_DEFAULT";
20 case RxBackend::RMT: return "RMT";
21 case RxBackend::ISR: return "ISR";
22 case RxBackend::FLEXPWM: return "FLEXPWM";
23 case RxBackend::FLEXIO: return "FLEXIO";
24 case RxBackend::LPC_SCT_CAPTURE: return "LPC_SCT_CAPTURE";
25 }
26 return "UNKNOWN";
27}
@ LPC_SCT_CAPTURE
LPC8xx SCT input-capture + DMA edge backend (LPC845 et al). Capture path is a skeleton until follow-u...
Definition types.h:14
@ FLEXPWM
Teensy 4.x-only FlexPWM capture backend.
Definition types.h:12
@ FLEXIO
Teensy 4.x-only FlexIO capture backend (FLEXIO1 — FLEXIO2 is owned by the WS2812 TX driver)....
Definition types.h:13
@ PLATFORM_DEFAULT
Use the recommended backend for the active platform (RMT on ESP32; FlexPWM on Teensy 4....
Definition types.h:9
@ RMT
ESP32-only RMT capture backend.
Definition types.h:10
@ ISR
Platform-neutral interrupt-driven edge capture backend when available.
Definition types.h:11

References FL_NOEXCEPT, FLEXIO, FLEXPWM, ISR, LPC_SCT_CAPTURE, PLATFORM_DEFAULT, and RMT.