Added a Timer interface module.
This commit is contained in:
parent
0cb3edec81
commit
2af21e4ab5
|
@ -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
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
extern "C"
|
||||
{
|
||||
#include "MockRegEdit.h"
|
||||
#include "timer.h"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue