Moves heart module to cardio directory

Refactors the location of the heart module for better organization and clarity.

Updates the include paths and CMakeLists.txt to reflect the new location.

Increments the version number.
This commit is contained in:
Russell Gilbert 2026-02-22 14:20:10 +00:00
parent f7818c63ec
commit 9159967b83
5 changed files with 4 additions and 4 deletions

View file

@ -28,8 +28,8 @@ add_executable(dixon
dixon_node_state.h dixon_node_state.h
dixon_brain.cpp dixon_brain.cpp
dixon_brain.h dixon_brain.h
CardioCenter/heart.cpp cardio/heart.cpp
CardioCenter/heart.h cardio/heart.h
logging/dixon_logger.h) logging/dixon_logger.h)
# Create the Dependency # Create the Dependency

View file

@ -1,7 +1,7 @@
#pragma once #pragma once
#include <thread> #include <thread>
#include "dixon_node_state.h" #include "dixon_node_state.h"
#include "CardioCenter/heart.h" #include "cardio/heart.h"
#include "logging/dixon_logger.h" #include "logging/dixon_logger.h"
class DixonBrain class DixonBrain

View file

@ -1 +1 @@
1.0.58 1.0.59