完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
闲来无事,用32写了一个呼吸灯程序,用一个定时器来实现,自认为还可以,就水水贴吧!!
代码看下面: //初始化GPIO口 void GPIO_Config(void) { GPIO_InitTypeDef GPIO_InitStruct; RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOE, ENABLE); //¿ªÊ±ÖÓ GPIO_InitStruct.GPIO_Pin = GPIO_Pin_3; GPIO_InitStruct.GPIO_Mode = GPIO_Mode_OUT; GPIO_InitStruct.GPIO_Speed = GPIO_High_Speed; GPIO_InitStruct.GPIO_OType = GPIO_OType_PP; GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_UP; GPIO_Init(GPIOE,&GPIO_InitStruct); } //初始化定时器T2,定时10us void tiM2_Config(void) { TIM_TimeBaseInitTypeDef TIM_TimeBaseInitStruct; RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2,ENABLE); TIM_TimeBaseInitStruct.TIM_Prescaler = 840; //10us TIM_TimeBaseInitStruct.TIM_Period = 1; //定时10us TIM_TimeBaseInitStruct.TIM_ClockDivision = TIM_CKD_DIV1; TIM_TimeBaseInitStruct.TIM_CounterMode = TIM_CounterMode_Up; TIM_TimeBaseInit(TIM2,&TIM_TimeBaseInitStruct); TIM_Cmd(TIM2,ENABLE); } //下面使用查询标志的方式在主程序中实现,当然也可以开启中断,在中断中实现 //主函数,改变Counter、Compare可以实现呼吸快慢、最亮和最暗停留时间的调整,以达到满意的效果 int main(void) { u16 Counter = 0,Compare=0,Direction=1; GPIO_Config(); TIM2_Config(); while(1) { if(TIM_GetFlagStatus(TIM2,TIM_FLAG_Update)==SET) //查询标志位,是否定时时间到 { if(Counter>Compare) GPIO_SetBits(GPIOE,GPIO_Pin_3); //点亮LED else GPIO_ResetBits(GPIOE,GPIO_Pin_3); //关闭LED Counter++; if(Counter>=300) //改变这个值,就可以改变呼吸速度 { Counter = 30; //改变Counter 值,就可以改变最暗停留时间 if(Direction) Compare++; else Compare--; } if(Compare>=330) Direction=0; //改变Compare值,就可以改变最亮停留时间 if(Compare<=0) Direction=1; TIM_ClearFlag(TIM2,TIM_FLAG_Update); //清除标志位 }; } } |
|
相关推荐
|
|
楼主程序不对吧 变量应该定义成static类型
static u16 Counter = 0,Compare=0,Direction=1; |
|
|
|
|
|
1488 浏览 1 评论
AD7686芯片不传输数据给STM32,但是手按住就会有数据。
1420 浏览 3 评论
3217 浏览 0 评论
如何解决MPU-9250与STM32通讯时,出现HAL_ERROR = 0x01U
1554 浏览 1 评论
hal库中i2c卡死在HAL_I2C_Master_Transmit
1990 浏览 1 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-4 17:16 , Processed in 0.513067 second(s), Total 40, Slave 33 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号