| 365 | } |
| 366 | |
| 367 | WiFiCard DWifiCards::create_card_monitor_emulate() { |
| 368 | WiFiCard ret{}; |
| 369 | ret.type = WiFiCardType::OPENHD_EMULATED; |
| 370 | ret.driver_name = "dummy"; |
| 371 | ret.supported_frequencies_2G = openhd::get_all_channel_frequencies( |
| 372 | openhd::get_channels_2G_legal_at_least_one_country()); |
| 373 | ret.supported_frequencies_5G = openhd::get_all_channel_frequencies( |
| 374 | openhd::get_channels_5G_legal_at_least_one_country()); |
| 375 | return ret; |
| 376 | } |
| 377 | |
| 378 | void DWifiCards::main_discover_an_process_wifi_cards( |
| 379 | const openhd::Config& config, const OHDProfile& m_profile, |
nothing calls this directly
no test coverage detected