From 3cfd8957f2fb547b4e8b2f6d67f589b7029a5a73 Mon Sep 17 00:00:00 2001 From: Cameron Goddard Date: Sun, 1 Sep 2024 19:03:57 -0400 Subject: [PATCH] format --- src/controller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controller.cpp b/src/controller.cpp index 0937ea5..b405547 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -20,7 +20,7 @@ Controller::Controller(int handle) : test_stand(TestStand(handle)), tui(TUI(&test_stand)), handle(handle) { INIT_SCAN_RATE = 70; SCANS_PER_READ = 1; - + aDataSize = NUM_CHANNELS * SCANS_PER_READ; aData = new double[sizeof(double) * aDataSize]; valid_input = false; @@ -32,7 +32,7 @@ Controller::Controller(int handle) : test_stand(TestStand(handle)), tui(TUI(&tes } int file_count = 0; - for (const auto& entry : std::filesystem::directory_iterator("../data/")) { + for (const auto &entry : std::filesystem::directory_iterator("../data/")) { if (std::filesystem::is_regular_file(entry.status())) { file_count++; }