mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-20 01:33:18 +00: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);
|