FastLED 3.9.15
Loading...
Searching...
No Matches
AutoResearchAsync.h
Go to the documentation of this file.
1// examples/AutoResearch/AutoResearchAsync.h
2//
3// Async task setup for JSON-RPC processing in autoresearch sketch.
4// Runs RPC polling on FastLED's task scheduler for non-blocking operation.
5
6#pragma once
7
9#include "AutoResearchHelpers.h" // autoResearchSetExclusiveDriverByName
10#include "fl/task/task.h"
11#include "fl/task/executor.h"
12
13namespace autoresearch {
14
34inline fl::task::Handle setupRpcAsyncTask(AutoResearchRemoteControl& remote_control, int interval_ms = 10) {
35 return fl::task::every_ms(interval_ms, FL_TRACE)
36 .then([&remote_control]() {
37 uint32_t current_time = millis();
38 remote_control.tick(current_time); // Calls Remote::update() which does pull + tick + push
39 });
40}
41
54 AutoResearchRemoteControl& /*remote*/,
56#ifdef FL_IS_STUB
57 // Register a task that runs on the next async_run() cycle (during loop())
58 // Note: every_ms(0) fires immediately; after_frame() requires frame-task
59 // dispatch which isn't wired up in the stub example runner.
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 // WS2812B-V5 timing (same as the Python client default)
72 fl::NamedTimingConfig timing_cfg(
74
75 // Static LED storage — span must remain valid for the entire call
76 static CRGB stub_leds[10];
77 const int num_leds = 10;
78
79 // ChannelConfig stores timing by value internally, so passing a local ref is fine
80 fl::ChannelConfig stub_tx_cfg(
81 state->pin_tx,
82 timing_cfg.timing,
83 fl::span<CRGB>(stub_leds, num_leds),
84 RGB);
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 // BIT_BANG is the cycle-counted GPIO fallback. On the stub/host
92 // platform there is no actual GPIO toggling, so its TX output
93 // can't be captured by the loopback RX path the stub uses for
94 // self-verification. Skip it in the stub autorun (#2469) — it's
95 // still available for explicit selection by name on real hardware.
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
103 if (!autoResearchSetExclusiveDriverByName(drv.name.c_str())) {
104 FL_ERROR("[STUB CLIENT] Failed to activate driver: " << drv.name.c_str());
105 grand_total++; // count as a failure
106 continue;
107 }
108
109 // AutoResearchConfig holds timing by reference — timing_cfg is in scope
111 timing_cfg.timing,
112 timing_cfg.name,
113 fl::span<fl::ChannelConfig>(&stub_tx_cfg, 1),
114 drv.name.c_str(),
115 state->rx_channel,
116 state->rx_buffer,
117 num_leds,
119
120 int driver_total = 0, driver_passed = 0;
121 uint32_t driver_duration_ms = 0;
122 autoResearchChipsetTiming(vcfg, driver_total, driver_passed, driver_duration_ms);
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");
136 exit(1);
137 } else if (grand_passed == grand_total) {
138 FL_PRINT("[STUB CLIENT] ALL TESTS PASSED ✓ — exiting 0");
139 exit(0);
140 } else {
141 FL_ERROR("[STUB CLIENT] " << (grand_total - grand_passed)
142 << " TESTS FAILED — exiting 1");
143 exit(1);
144 }
145 });
146#endif
147}
148
149} // namespace autoresearch
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)
TestState state
void tick(uint32_t current_millis)
Process RPC system (pull + tick + push)
Remote RPC control system for test autoresearch Encapsulates all RPC function registration and proces...
Handle & then(function< void()> on_then) FL_NOEXCEPT
Definition task.cpp.hpp:276
Task Handle with fluent API (was class fl::task, renamed to avoid namespace collision)
Definition task.h:139
constexpr EOrder RGB
Definition eorder.h:17
Task executor — runs registered task runners and manages the run loop.
fl::CRGB CRGB
Definition crgb.h:25
#define FL_ERROR(X)
Definition log.h:219
#define FL_PRINT(X)
Print without prefix (like FL_WARN but without "WARN: " prefix) Uses sstream for dynamic formatting (...
Definition log.h:457
fl::task::Handle setupRpcAsyncTask(AutoResearchRemoteControl &remote_control, int interval_ms=10)
Setup async task for JSON-RPC processing.
void maybeRegisterStubAutorun(AutoResearchRemoteControl &, fl::shared_ptr< AutoResearchState > state)
On FL_IS_STUB: register a one-shot async task that drives autoresearch.
Handle every_ms(int interval_ms)
Definition task.cpp.hpp:320
constexpr ChipsetTimingConfig makeTimingConfig() FL_NOEXCEPT
Convert compile-time CHIPSET type to runtime timing config.
@ RMT
RMT-based receiver (ESP32)
Definition rx.h:166
Configuration for driver-agnostic autoresearch testing Contains all input parameters needed for autor...
Configuration for a single LED channel.
Definition config.h:163
const char * name
Definition Common.h:36
fl::ChipsetTimingConfig timing
Definition Common.h:34
Chipset timing configuration with name for testing.
Definition Common.h:33
#define FL_TRACE
A macro to capture the current source file, line number, and time.
Definition trace.h:102