| 544 | } |
| 545 | |
| 546 | bool WBLink::request_start_analyze_channels(int channels_to_scan) { |
| 547 | auto work_item = std::make_shared<WorkItem>( |
| 548 | "ANALYZE_CHANNELS", |
| 549 | [this, channels_to_scan]() { perform_channel_analyze(channels_to_scan); }, |
| 550 | std::chrono::steady_clock::now()); |
| 551 | return try_schedule_work_item(work_item); |
| 552 | } |
| 553 | |
| 554 | bool WBLink::apply_frequency_and_channel_width(int frequency, |
| 555 | int channel_width_rx, |
nothing calls this directly
no outgoing calls
no test coverage detected