mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-02 17:29:14 +00:00
11 lines
197 B
C
11 lines
197 B
C
|
#pragma once
|
||
|
|
||
|
/** Initialize clocks */
|
||
|
void furi_hal_clock_init();
|
||
|
|
||
|
/** Switch to HSI clock */
|
||
|
void furi_hal_clock_switch_to_hsi();
|
||
|
|
||
|
/** Switch to PLL clock */
|
||
|
void furi_hal_clock_switch_to_pll();
|