diff options
| author | dmlunar <root@lunar.sh> | 2025-01-22 16:47:21 +0200 |
|---|---|---|
| committer | dmlunar <root@lunar.sh> | 2025-12-02 16:02:10 +0200 |
| commit | 288b138cb59325c42d1a64d9a87e3c879494fd72 (patch) | |
| tree | 03dce50bb5118a3deb46389f191cfb6da5e9bcb9 /firmware/inc/peripheral/timer.h | |
| download | varpa-288b138cb59325c42d1a64d9a87e3c879494fd72.tar.gz varpa-288b138cb59325c42d1a64d9a87e3c879494fd72.zip | |
Diffstat (limited to 'firmware/inc/peripheral/timer.h')
| -rw-r--r-- | firmware/inc/peripheral/timer.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/firmware/inc/peripheral/timer.h b/firmware/inc/peripheral/timer.h new file mode 100644 index 0000000..ff45c85 --- /dev/null +++ b/firmware/inc/peripheral/timer.h @@ -0,0 +1,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 |
