24 lines
854 B
C
24 lines
854 B
C
/** @file delay.c
|
|
* Module handling delays definitions and operations
|
|
*
|
|
* The module provides an API to delay the code execution with the most
|
|
* accuraccy possible, putting the system in sleep whenever possible. The RTC is
|
|
* required when using delays superior to a 1.5s. Accuraccy is only garenteed up
|
|
* to the unit being used (to the millisecond when delaying in ms, to the second
|
|
* when delaying in seconds)
|
|
*/
|
|
|
|
//--includes--------------------------------------------------------------------
|
|
|
|
#include "delay.h"
|
|
|
|
|
|
//--local definitions-----------------------------------------------------------
|
|
|
|
//--local variables-------------------------------------------------------------
|
|
|
|
//--public functions------------------------------------------------------------
|
|
|
|
//--local functions-------------------------------------------------------------
|
|
|