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 1/2] 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)); From 8ea76cd513d432b3d4e3598db0d263b450147379 Mon Sep 17 00:00:00 2001 From: Tharun Iyer <107667054+tharun-OpenBCI@users.noreply.github.com> Date: Mon, 4 Aug 2025 17:32:31 -0400 Subject: [PATCH 2/2] Update SD Card Conversion Script to expect .TXT files --- sd_file_conversion/txt_to_csv_conversion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sd_file_conversion/txt_to_csv_conversion.py b/sd_file_conversion/txt_to_csv_conversion.py index c87e55321..7b32c1df1 100644 --- a/sd_file_conversion/txt_to_csv_conversion.py +++ b/sd_file_conversion/txt_to_csv_conversion.py @@ -286,7 +286,7 @@ def start_converting(sd_dir:str = "./", save_path = save_path # Get a list of files in the specified directory with a '.txt' extension - files = [file for file in os.listdir(sd_dir) if file.endswith('.txt')] + files = [file for file in os.listdir(sd_dir) if file.endswith('.TXT')] # Sort the files in reverse order (latest files first) if files: