blob: ff45c85add7d1356356ccb80b6294241ee643f65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
*
* Author: Dylan Muller
* Copyright (c) 2025
* All rights reserved.
*
* - Commercial/IP use prohibited.
* - Attribution required.
* See License.txt
*
*/
#ifndef TIMER_H_
#define TIMER_H_
#include <stdint.h>
void timer_init(void);
void timer_reset(void);
uint32_t timer_millis(void);
#endif
|