| 117 | } |
| 118 | |
| 119 | int MuseAthena::parse_muse_options () |
| 120 | { |
| 121 | muse_preset = "p1041"; |
| 122 | enable_low_latency = true; |
| 123 | |
| 124 | std::string parse_error; |
| 125 | if (!MuseOptions::parse_preset_options (params.other_info, board_id, |
| 126 | MuseOptions::PresetFamily::Athena, true, muse_preset, enable_low_latency, parse_error)) |
| 127 | { |
| 128 | safe_logger (spdlog::level::err, "Invalid MuseAthena other_info: {}", parse_error); |
| 129 | return (int)BrainFlowExitCodes::INVALID_ARGUMENTS_ERROR; |
| 130 | } |
| 131 | |
| 132 | return (int)BrainFlowExitCodes::STATUS_OK; |
| 133 | } |
| 134 | |
| 135 | |
| 136 | void athena_adapter_on_scan_found ( |
nothing calls this directly
no test coverage detected