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
* Date: 2024
* filename: timer.c
* description: module_purpose
/**
* @brief PUT_TEXT_HERE
* @details This file is...
* @author username
* @date todays_date
* @copyright None
* @file module_name.h
*/
#include "timer.h"
// dumb test function

View File

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

View File

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