CTS-SAT-1-OBC-Firmware
Loading...
Searching...
No Matches
stm32_timing_helpers.h
Go to the documentation of this file.
1
2#ifndef INCLUDE_GUARD__STM32_TIMING_HELPERS_H
3#define INCLUDE_GUARD__STM32_TIMING_HELPERS_H
4
5#include <stdint.h>
6
7void TIM_delay_blocking_ms(uint32_t delay_time_ms);
8
9uint32_t TIM_get_uptime_ms();
10
11#endif /* INCLUDE_GUARD__STM32_TIMING_HELPERS_H */
uint32_t TIM_get_uptime_ms()
Get the uptime of the system in milliseconds.
Definition stm32_timing_helpers.c:13
void TIM_delay_blocking_ms(uint32_t delay_time_ms)
Delay blocking, not yielding to other RTOS tasks.
Definition stm32_timing_helpers.c:7