| 337 | } |
| 338 | |
| 339 | int GanglionNative::config_board (std::string config, std::string &response) |
| 340 | { |
| 341 | // todo do smth to unify available commands |
| 342 | // and make them more or less standard between devices |
| 343 | if (config == "get_firmware_version") |
| 344 | { |
| 345 | response = std::to_string (firmware); |
| 346 | return (int)BrainFlowExitCodes::STATUS_OK; |
| 347 | } |
| 348 | return config_board (config); |
| 349 | } |
| 350 | |
| 351 | int GanglionNative::config_board (std::string config) |
| 352 | { |
nothing calls this directly
no test coverage detected