Add empty timer functions
This commit is contained in:
parent
26eb97a4a8
commit
83509adc3a
1 changed files with 10 additions and 0 deletions
|
@ -14,4 +14,14 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "timer.h"
|
||||
|
||||
void timer_init(void) {}
|
||||
|
||||
void timer_clear(void) {}
|
||||
|
||||
uint16_t timer_read(void) { return 0; }
|
||||
uint32_t timer_read32(void) { return 0; }
|
||||
uint16_t timer_elapsed(uint16_t last) { return 0; }
|
||||
uint32_t timer_elapsed32(uint32_t last) { return 0; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue