From b3918c8814e1d7869e0c9430812724671bfda3ec Mon Sep 17 00:00:00 2001 From: Philip Pitts <84428015+philippitts@users.noreply.github.com> Date: Thu, 29 Feb 2024 00:12:40 -0500 Subject: [PATCH] Fix Cyton impedance check board configuration --- OpenBCI_GUI/BoardCyton.pde | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenBCI_GUI/BoardCyton.pde b/OpenBCI_GUI/BoardCyton.pde index fdfaf46d0..71ae90f38 100644 --- a/OpenBCI_GUI/BoardCyton.pde +++ b/OpenBCI_GUI/BoardCyton.pde @@ -450,8 +450,8 @@ implements ImpedanceSettingsBoard, AccelerometerCapableBoard, AnalogCapableBoard currentADS1299Settings.values.gain[channel] = Gain.X1; currentADS1299Settings.values.inputType[channel] = InputType.NORMAL; - currentADS1299Settings.values.bias[channel] = Bias.INCLUDE; - currentADS1299Settings.values.srb2[channel] = Srb2.DISCONNECT; + currentADS1299Settings.values.bias[channel] = Bias.NO_INCLUDE; + currentADS1299Settings.values.srb2[channel] = Srb2.CONNECT; currentADS1299Settings.values.srb1[channel] = Srb1.DISCONNECT; fullCommand.append(currentADS1299Settings.getValuesString(channel, currentADS1299Settings.values));