2023-04-11 08:51:37 +08:00

31 lines
1.1 KiB
C

/*---------------------------------------------------------------------*/
/* --- STC MCU Limited ------------------------------------------------*/
/* --- STC 1T Series MCU Demo Programme -------------------------------*/
/* --- Mobile: (86)13922805190 ----------------------------------------*/
/* --- Fax: 86-0513-55012956,55012947,55012969 ------------------------*/
/* --- Tel: 86-0513-55012928,55012929,55012966 ------------------------*/
/* --- Web: www.STCMCU.com --------------------------------------------*/
/* --- Web: www.STCMCUDATA.com ---------------------------------------*/
/* --- QQ: 800003751 -------------------------------------------------*/
/* 如果要在程序中使用此代码,请在程序中注明使用了STC的资料及程序 */
/*---------------------------------------------------------------------*/
#include "config.h"
#include "GPIO.h"
#include "Exti.h"
#include "timer.h"
#include "PWM.h"
/******************** 主函数***********************/
void main(void)
{
GPIO_config();
Exti_config();
Timer_config();
PWM_config();
EA = 1;
while (1)
{
UpdatePwm(PWMB, &PWMB_Duty);
}
}