MCPcopy Create free account
hub / github.com/FastLED/FastLED / makeBasicConfig

Function makeBasicConfig

tests/fl/channels/validation.cpp:13–22  ·  view source on GitHub ↗

Basic test configuration

Source from the content-addressed store, hash-verified

11
12// Basic test configuration
13SingleTestConfig makeBasicConfig() {
14 SingleTestConfig config;
15 config.driver_name = "PARLIO";
16 config.lane_sizes = {100};
17 config.pattern = "MSB_LSB_A";
18 config.iterations = 1;
19 config.pin_tx = 1;
20 config.pin_rx = 0;
21 return config;
22}
23
24FL_TEST_CASE("Basic configuration succeeds") {
25 SingleTestConfig config = makeBasicConfig();

Callers 1

FL_TEST_FILEFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected