Smart Knob Controller
time_utils.h
1/*
2* time_utils.h
3*
4* Created on: June 4, 2025
5* Author: nickl
6*/
7
8#ifndef INC_TIME_UTILS_H_
9#define INC_TIME_UTILS_H_
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15#include <stm32f4xx_hal.h>
16#include <stdint.h>
17
22uint32_t micros(void);
27void delay_us(uint32_t us);
28
29#ifdef __cplusplus
30}
31#endif
32
33#endif /* INC_TIME_UTILS_H_ */