MCPcopy Create free account
hub / github.com/brainflow-dev/brainflow / config_board_with_bytes

Method config_board_with_bytes

src/board_controller/synthetic_board.cpp:263–271  ·  view source on GitHub ↗

if you use this board as a reference, more likely you dont need to implement this method

Source from the content-addressed store, hash-verified

261
262// if you use this board as a reference, more likely you dont need to implement this method
263int 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected