From 3355d89c10e8874b2d53c9a1d7c95368fde2b247 Mon Sep 17 00:00:00 2001 From: AJ Keller Date: Tue, 27 Jun 2017 16:23:22 -0400 Subject: [PATCH] Update file type from .edf to .bdf --- CHANGELOG.md | 5 +++++ OpenBCI_GUI/DataLogging.pde | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3235f6..57d909d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 2.2.1 + +### Bug Fixes +* Addresses #121 - `.edf` incompatible changed ending to `.bdf` + # 2.2.0 ### Bug Fixes diff --git a/OpenBCI_GUI/DataLogging.pde b/OpenBCI_GUI/DataLogging.pde index 0fc4830..65269c5 100644 --- a/OpenBCI_GUI/DataLogging.pde +++ b/OpenBCI_GUI/DataLogging.pde @@ -940,9 +940,9 @@ public class OutputFile_BDF { * @returns {String} - A fully qualified name of an output file with `str`. */ private String getFileName(String s) { - String output = "SavedData"+System.getProperty("file.separator")+"OpenBCI-EDF-"; + String output = "SavedData"+System.getProperty("file.separator")+"OpenBCI-BDF-"; output += s; - output += ".edf"; + output += ".bdf"; return output; }