On FL_IS_STUB: register a one-shot async task that drives autoresearch.
On all other platforms (ESP32, etc.), this is a no-op.
55 {
56#ifdef FL_IS_STUB
57
58
59
61 if (!
state ||
state->drivers_available.empty()) {
62 FL_ERROR(
"[STUB CLIENT] No drivers discovered — autoresearch cannot run");
63 exit(1);
64 }
65
66 FL_PRINT(
"\n[STUB CLIENT] ============================================");
67 FL_PRINT(
"[STUB CLIENT] Simulated host client — running autoresearch");
68 FL_PRINT(
"[STUB CLIENT] Drivers: " <<
state->drivers_available.size());
69 FL_PRINT(
"[STUB CLIENT] ============================================");
70
71
74
75
76 static CRGB stub_leds[10];
77 const int num_leds = 10;
78
79
82 timing_cfg.timing,
85
86 int grand_total = 0, grand_passed = 0;
87
88 for (fl::size di = 0; di <
state->drivers_available.size(); di++) {
89 const auto& drv =
state->drivers_available[di];
90
91
92
93
94
95
96 if (drv.name == "BIT_BANG") {
97 FL_PRINT(
"\n[STUB CLIENT] Driver: " << drv.name.c_str() <<
" (skipped — no loopback in host stub)");
98 continue;
99 }
100
101 FL_PRINT(
"\n[STUB CLIENT] Driver: " << drv.name.c_str());
102
104 FL_ERROR(
"[STUB CLIENT] Failed to activate driver: " << drv.name.c_str());
105 grand_total++;
106 continue;
107 }
108
109
110 fl::AutoResearchConfig vcfg(
111 timing_cfg.timing,
112 timing_cfg.name,
113 fl::span<fl::ChannelConfig>(&stub_tx_cfg, 1),
114 drv.name.c_str(),
117 num_leds,
119
120 int driver_total = 0, driver_passed = 0;
123
124 FL_PRINT(
"[STUB CLIENT] " << drv.name.c_str()
125 << ": " << driver_passed << "/" << driver_total << " passed");
126
127 grand_total += driver_total;
128 grand_passed += driver_passed;
129 }
130
131 FL_PRINT(
"\n[STUB CLIENT] ============================================");
132 FL_PRINT(
"[STUB CLIENT] TOTAL: " << grand_passed <<
"/" << grand_total);
133
134 if (grand_total == 0) {
135 FL_ERROR(
"[STUB CLIENT] No tests ran — exiting 1");
137 } else if (grand_passed == grand_total) {
138 FL_PRINT(
"[STUB CLIENT] ALL TESTS PASSED ✓ — exiting 0");
140 } else {
141 FL_ERROR(
"[STUB CLIENT] " << (grand_total - grand_passed)
142 << " TESTS FAILED — exiting 1");
144 }
145 });
146#endif
147}
bool autoResearchSetExclusiveDriverByName(const char *name)
AutoResearch-style helper: set an exclusive driver by name.
void autoResearchChipsetTiming(fl::AutoResearchConfig &config, int &driver_total, int &driver_passed, uint32_t &out_show_duration_ms, fl::vector< fl::RunResult > *out_results, int num_runs_per_pattern)
Handle & then(function< void()> on_then) FL_NOEXCEPT
#define FL_PRINT(X)
Print without prefix (like FL_WARN but without "WARN: " prefix) Uses sstream for dynamic formatting (...
Handle every_ms(int interval_ms)
constexpr ChipsetTimingConfig makeTimingConfig() FL_NOEXCEPT
Convert compile-time CHIPSET type to runtime timing config.
void exit(int code)
No-op exit function for embedded systems In embedded environments, calling exit is typically not mean...
@ RMT
RMT-based receiver (ESP32)
Configuration for a single LED channel.
Chipset timing configuration with name for testing.
#define FL_TRACE
A macro to capture the current source file, line number, and time.