openmcpwm.c
来自「Microchip的官方PIC24H系列16位单片机的外设源程序库。」· C语言 代码 · 共 36 行
C
36 行
#include <pwm.h>
#include <p30fxxxx.h>
/* PWM1-3 are defined in following devices */
#if defined(__dsPIC30F2010__) || defined(__dsPIC30F3010__) || defined(__dsPIC30F4012__) || \
defined(__dsPIC30F3011__) || defined(__dsPIC30F4011__) || defined(__dsPIC30F6010__) || defined(__dsPIC30F5015__)
/*********************************************************************
* Function Name : OpenMCPWM
* Description : This function configures PWM module for the
* following parameters:
* period, sptime, PWM Mode, Clock Prescale,
* Output Postscale, high res mode, I/O pair mode,
* I/O pair mode,I/O pair enable, Special event
* postscale, Special event direction, override
* synchronization.
* Parameters : unsigned int period
* unsigned int sptime
* unsigned int config1
* unsigned int config2,
* unsigned int config3
* Return Value : None
**********************************************************************/
void OpenMCPWM(unsigned int period, unsigned int sptime, unsigned int
config1, unsigned int config2, unsigned int config3)
{
PTPER = period;
SEVTCMP = sptime;
PWMCON1 = config2;
PWMCON2 = config3;
PTCON = config1;
}
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?