mppt/Hardware/inc/pwm.h

27 lines
469 B
C

/*************************************************
Copyright
File name: pwm.h
Author:
Version: V0.1
Date: 2024/4/27
*************************************************/
#ifndef __PWM_H
#define __PWM_H
#include "ch32l103.h"
#define Prescaler 0
/* 输出频率为240k */
//#define Period 200 - 1
/* 输出频率为100k */
#define Period 480 - 1
/* 输出频率为10k */
//#define Period 4800 - 1
void PWM_TIM_Configuration(void);
void Set_duty_ratio(float *duty_ratio);
#endif