Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions OpenBCI_32bit_Library.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ boolean OpenBCI_32bit_Library::processChar(char character)
sendEOT();
break;
case OPENBCI_GET_VERSION:
printAll("v3.1.2");
printAll("v3.1.3");
sendEOT();
break;
default:
Expand Down Expand Up @@ -791,7 +791,6 @@ void OpenBCI_32bit_Library::boardReset(void)
{
initialize(); // initalizes accelerometer and on-board ADS and on-daisy ADS if present
delay(500);
configureLeadOffDetection(LOFF_MAG_6NA, LOFF_FREQ_31p2HZ);
printlnAll("OpenBCI V3 8-16 channel");
printAll("On Board ADS1299 Device ID: 0x");
printlnHex(ADS_getDeviceID(ON_BOARD));
Expand All @@ -802,7 +801,7 @@ void OpenBCI_32bit_Library::boardReset(void)
}
printAll("LIS3DH Device ID: 0x");
printlnHex(LIS3DH_getDeviceID());
printlnAll("Firmware: v3.1.2");
printlnAll("Firmware: v3.1.3");
sendEOT();
delay(5);
wifi.reset();
Expand Down Expand Up @@ -1984,6 +1983,7 @@ void OpenBCI_32bit_Library::initialize_ads()
leadOffSettings[i][PCHAN] = OFF;
leadOffSettings[i][NCHAN] = OFF;
}
configureLeadOffDetection(LOFF_MAG_6NA, LOFF_FREQ_31p2HZ);
verbosity = false; // when verbosity is true, there will be Serial feedback
firstDataPacket = true;

Expand Down
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v3.1.3

### Bug Fixes

- Fixed impedance measurement following sample rate changes

# v3.1.2

### Bug Fixes
Expand Down