kopia lustrzana https://github.com/RobertGawron/IonizationChamber
23 wiersze
599 B
C
23 wiersze
599 B
C
![]() |
#ifndef timer_conf_h
|
||
|
#define timer_conf_h
|
||
|
|
||
|
/**
|
||
|
* @file timer_conf.h
|
||
|
* @brief Interface for timer configuration on STM8 microcontrollers.
|
||
|
*
|
||
|
* Provides a function to initialize a hardware timer to generate periodic
|
||
|
* interrupts. The timer is configured to call `application_builder_tick()`
|
||
|
* via its interrupt handler, which manages device state and measurement data.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @brief Initialize the hardware timer.
|
||
|
*
|
||
|
* Configures the timer to generate periodic update interrupts and enables
|
||
|
* the timer and its interrupt.
|
||
|
*/
|
||
|
void timer_conf_init(
|
||
|
void);
|
||
|
|
||
|
#endif
|