if you use this board as a reference, more likely you dont need to implement this method
| 261 | |
| 262 | // if you use this board as a reference, more likely you dont need to implement this method |
| 263 | int SyntheticBoard::config_board_with_bytes (const char *bytes, int len) |
| 264 | { |
| 265 | safe_logger (spdlog::level::info, "config_board_with_bytes for len: {}", len); |
| 266 | for (int i = 0; i < len; i++) |
| 267 | { |
| 268 | safe_logger (spdlog::level::trace, "byte: {} value: {}", i, (int)bytes[i]); |
| 269 | } |
| 270 | return (int)BrainFlowExitCodes::STATUS_OK; |
| 271 | } |
nothing calls this directly
no outgoing calls
no test coverage detected