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