研究生
最后登录1970-1-1
在线时间 小时
注册时间2016-7-18
|
火哥,你好:
我现在在使用一款LED驱动芯片(MBI5359),这个芯片有一个管脚是GCLK,请问我可以把这个脚连在stm32F103的任意一脚上(PC8)吗?这个脚需要我处理什么吗?还是直接就使能就好了,不需要别的操作,就可以提供时钟信号了?
我在代码里面就写了这一句:
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOC, ENABLE); // ê1ÄüPC¶Ë¿úê±Öó
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8; //Ñ¡Ôñ¶Ôó|μÄòy½Å
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC, &GPIO_InitStructure); //3õê¼»ˉPC¶Ë¿ú
GPIO_ResetBits(GPIOC, GPIO_Pin_8); // 1رÕ
|
|