IonizationChamber/Software/Firmware/Driver/clk_conf.h

22 wiersze
487 B
C
Executable File

#ifndef clk_conf_h
#define clk_conf_h
/**
* @file clk_conf.h
* @brief Interface for STM8 clock configuration utilities.
*
* Provides a function to initialize the system clock and enable
* required peripheral clocks.
*/
/**
* @brief Initialize the system clock and peripheral clocks.
*
* Configures the STM8 clock sources, prescalers, and enables
* clocks for specific peripherals such as I2C, UART, and timers.
*/
void clk_conf_init(
void);
#endif