| 120 | // FLEXIO not available on ESP32 (Teensy 4.x peripheral). See FastLED#2764. |
| 121 | template <> |
| 122 | fl::shared_ptr<RxDevice> RxDevice::create<RxDeviceType::FLEXIO>(int pin) FL_NOEXCEPT { |
| 123 | (void)pin; |
| 124 | return fl::make_shared<DummyRxDevice>("FLEXIO RX not supported on ESP32"); |
| 125 | } |
| 126 | |
| 127 | // LPC_SCT_CAPTURE not available on ESP32 (LPC8xx peripheral). See FastLED#3015. |
| 128 | template <> |