/*****************************************************************
** 程序名:MC9S12G128 PWM
** 参 数:无
** 功 能:初始化G128PWM,频率,16KHz,占空比50%
** 注 意:总线时钟需超频至32MHz
** 作 者:赵露露
** 版 本:v1.0
** 时 间:2012.5.11
******************************************************************/
#include <hidef.h> /* common defines and macros */
#include "derivative.h" /* derivative-specific definitions */
/*****************************************************************
** 函数名: delayms()
** 参 数:xms
** 功 能:在32MHz总线时钟下大约延时xms毫秒
** 注 意:
******************************************************************/
void delayms(uint xms)
{
uint z,j;
for(z=xms;z>0;z--)
for(j=5340;j>0;j--);
}
/*****************************************************************
** 函数名: PLL_Init()
**
MC9S12G128 PWM
最新推荐文章于 2023-02-10 15:19:44 发布
本文档主要介绍MC9S12G128微控制器如何使用PWM功能。作为新手教程,将逐步讲解PWM的配置、设置及应用,同时也欢迎读者指出可能存在的错误。
摘要由CSDN通过智能技术生成