无法进屋whith循环#include "config.h" #include "timer.h" #include "GPIO.h" #include "delay.h" #define Fre(X) (65536-((float)(22118400/12/100000.0)*X)) sbit F=P5^4; u16 Data_A=100; u16 Data_B; u16 Data_C; u16 Data_D; u16 Data_E; u16 Data_F; void GPIO_config(void) { GPIO_InitTypeDef GPIO_InitStructure; //结构定义 GPIO_InitStructure.Pin = GPIO_Pin_4; //指定要初始化的IO, GPIO_Pin_0 ~ GPIO_Pin_7, 或操作 GPIO_InitStructure.Mode = GPIO_OUT_PP; //指定IO的输入或输出方式,GPIO_PullUp,GPIO_HighZ,GPIO_OUT_OD,GPIO_OUT_PP GPIO_Inilize(GPIO_P5,&GPIO_InitStructure); //初始化 } /************************ 定时器配置 ****************************/ void Timer0_config(void) { TIM_InitTypeDef TIM_InitStructure; //结构定义 TIM_InitStructure.TIM_Mode = TIM_16Bit; //指定工作模式, TIM_16BitAutoReload,TIM_16Bit,TIM_8BitAutoReload,TIM_16BitAutoReloadNoMask TIM_InitStructure.TIM_Priority = Priority_0; //指定中断优先级(低到高) Priority_0,Priority_1,Priority_2,Priority_3 TIM_InitStructure.TIM_Interrupt = ENABLE; //中断是否允许, ENABLE或DISABLE TIM_InitStructure.TIM_ClkSource = TIM_CLOCK_12T; //指定时钟源, TIM_CLOCK_1T,TIM_CLOCK_12T,TIM_CLOCK_Ext TIM_InitStructure.TIM_ClkOut = DISABLE; //是否输出高速脉冲, ENABLE或DISABLE TIM_InitStructure.TIM_Value = Fre(100); //初值, TIM_InitStructure.TIM_Run = ENABLE; //是否初始化后启动定时器, ENABLE或DISABLE Timer_Inilize(Timer0,&TIM_InitStructure); //初始化Timer0 Timer0,Timer1,Timer2,Timer3,Timer4 } /******************** 主函数**************************/ void main(void) { GPIO_config(); Timer0_config(); EA = 1; while (1); { delay_ms(100); Data_A++; if(Data_A<=100) Data_A=100; if(Data_A>=1000) Data_A=100; Data_B=100000/Data_A;//频率 Data_C=Data_B/20; //高电平 Data_D=Data_B-Data_C;//低电平 Data_E=(u16)Fre(Data_D); } } /********************* Timer0中断函数************************/ void timer0_int (void) interrupt TIMER0_VECTOR { F = ~F; Data_F=Data_E; TH0=Data_F>>8; TL0=Data_F; }
时间: 2023-07-23 11:03:42 浏览: 86
neogeo.zip
这段代码存在一些问题。首先,在`while`循环的末尾多了一个分号,会导致无限循环。另外,在循环中调用了`delay_ms(100)`函数,但是没有对应的头文件和实现,需要添加对应的代码。此外,可能还存在其他问题,比如未定义的函数和结构体。请检查并提供完整的代码和相关头文件,以便我能够更好地帮助你解决问题。
阅读全文