Added a Timer interface module.

This commit is contained in:
jakeg00dwin 2024-08-02 13:05:46 -07:00
parent 0cb3edec81
commit 2af21e4ab5
3 changed files with 13 additions and 9 deletions

View File

@ -1,10 +1,13 @@
/* /**
* Author: username * @brief PUT_TEXT_HERE
* Date: 2024 * @details This file is...
* filename: timer.c * @author username
* description: module_purpose * @date todays_date
* @copyright None
* @file module_name.h
*/ */
#include "timer.h" #include "timer.h"
// dumb test function // dumb test function

View File

@ -1,8 +1,8 @@
/** /**
* @brief PUT_TEXT_HERE * @brief The AVR Timer module
* @details This file is... * @details This file is used to interact with the hardware timers.
* @author username * @author Jake G
* @date todays_date * @date 2024
* @copyright None * @copyright None
* @file TIMER.h * @file TIMER.h
*/ */

View File

@ -9,6 +9,7 @@
extern "C" extern "C"
{ {
#include "MockRegEdit.h"
#include "timer.h" #include "timer.h"
} }