File restructure

This commit is contained in:
2025-08-29 01:49:40 -07:00
parent d092ccd362
commit 20fdce6d82
6 changed files with 4 additions and 3 deletions

View File

@@ -29,8 +29,9 @@ set(MX_INCLUDE_DIRECTORIES
set(PROJECT_INCLUDE_DIRECTORIES set(PROJECT_INCLUDE_DIRECTORIES
${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/Core/Include/Timer
${CMAKE_CURRENT_SOURCE_DIR}/Core/Include/Timer/Reg
${CMAKE_CURRENT_SOURCE_DIR}/Core/Include ${CMAKE_CURRENT_SOURCE_DIR}/Core/Include
${CMAKE_CURRENT_SOURCE_DIR}/Core/Include/Reg
) )
file(GLOB_RECURSE PROJECT_SOURCES file(GLOB_RECURSE PROJECT_SOURCES

View File

@@ -8,7 +8,7 @@
#ifndef SHAL_H #ifndef SHAL_H
#define SHAL_H #define SHAL_H
#include "SHAL_TIM.h" #include "Core/Include/Timer/SHAL_TIM.h"
#endif #endif

View File

@@ -2,7 +2,7 @@
// Created by Luca on 8/28/2025. // Created by Luca on 8/28/2025.
// //
#include "SHAL_TIM.h" #include "Core/Include/Timer/SHAL_TIM.h"
#include <cassert> #include <cassert>
Timer::Timer(Timer_Key t) : timer(t), timer_reg(getTimerRegister(t)){ Timer::Timer(Timer_Key t) : timer(t), timer_reg(getTimerRegister(t)){