Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into python_ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey1994 committed May 9, 2024
2 parents 196bc1c + 41c304e commit f53dd3f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/board_controller/brainalive/brainalive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ void BrainAlive::adapter_1_on_scan_found (
}
else
{
if (strncmp (peripheral_identified, "ADS_TES", 7) == 0)
if (strncmp (peripheral_identified, "ORION_1", 7) == 0)
{
found = true;
}
Expand Down Expand Up @@ -376,6 +376,7 @@ void BrainAlive::read_data (simpleble_uuid_t service, simpleble_uuid_t character
safe_logger (spdlog::level::warn, "unknown size of BrainAlive Data {}", size);
return;
}

for (int i = 0; i < (int)size; i += 32)
{
double eeg_data[9] = {0};
Expand Down

0 comments on commit f53dd3f

Please sign in to comment.