no很拽的小孩 发表于 2015-8-9 19:03:31

关于Gokit V2.2 刷官方固件 RGB LED不亮的解决方案

本帖最后由 no很拽的小孩 于 2015-8-9 19:07 编辑

1.打开gokit-mcu-hw2-master\User\Hal_rgb_led\hal_rgb_led.c
2.找到函数void RGB_LED_Init(void);
3.将附加的代码添加到函数中void RGB_LED_Init(void)
{
       
        GPIO_InitTypeDef GPIO_InitStruct;
        RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOB,ENABLE);
        GPIO_InitStruct.GPIO_Mode = GPIO_Mode_Out_PP;
        GPIO_InitStruct.GPIO_Pin = GPIO_Pin_8|GPIO_Pin_9;
        GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOB, &GPIO_InitStruct);
       
        /*附加的代码*/
        GPIO_InitStruct.GPIO_Pin = GPIO_Pin_0;//GPIO_Pin_8|GPIO_Pin_9;
        GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOA, &GPIO_InitStruct);
        GPIO_SetBits(GPIOA,GPIO_Pin_0);
       
       
       
        Send32Zero();       
        DataDealWithAndSend(0,0,0);          // display red
DataDealWithAndSend(0,0,0);       

}
4.重新编译,刷入固件,亮瞎眼了。。。
页: [1]
查看完整版本: 关于Gokit V2.2 刷官方固件 RGB LED不亮的解决方案