mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 12:51:22 +04:00
6 lines
198 B
C
6 lines
198 B
C
|
|
#pragma once
|
||
|
|
#include "main.h"
|
||
|
|
#include "stdbool.h"
|
||
|
|
|
||
|
|
void hal_pwm_set(float value, float freq, TIM_HandleTypeDef* tim, uint32_t channel);
|
||
|
|
void hal_pwm_stop(TIM_HandleTypeDef* tim, uint32_t channel);
|