FastLED 3.9.15
Loading...
Searching...
No Matches
rx_test.h
Go to the documentation of this file.
1// src/fl/channels/detail/validation/rx_test.h
2//
3// RX channel testing logic - validates RX channel functionality
4// via manual GPIO toggle pattern
5
6#pragma once
7
8#include "fl/stl/int.h"
9
10namespace fl {
11
12// Forward declarations
13class RxChannel;
14
15namespace validation {
16
26bool testRxChannel(
27 fl::shared_ptr<fl::RxChannel> rx_channel,
28 int pin_tx,
29 int pin_rx,
30 u32 hz,
31 size_t buffer_size);
32
33} // namespace validation
34} // namespace fl
bool testRxChannel(fl::shared_ptr< fl::RxChannel > rx_channel, int pin_tx, int pin_rx, u32 hz, size_t buffer_size)
Test RX channel with manual GPIO toggle pattern.
Base definition for an LED controller.
Definition crgb.hpp:179