STM32f030F4 20脚的MCU,GPIO不够,因此想把当晶振用的PF0 和PF1 也用了 看文档写的: Using the HSE or LSE oscillator pins as GPIOs When the HSE or LSE oscillator is switched OFF (default state after reset), the related oscillator pins can be used as normal GPIOs. When the HSE or LSE oscillator is switched ON (by setting the HSEON or LSEON bit in the RCC_CSR register) the oscillator takes control of its associated pins and the GPIO configuration of these pins has no effect. When the oscillator is configured in a user external clock mode, only the OSC_IN or OSC32_IN pin is reserved for clock input and the OSC_OUT or OSC32_OUT pin can still be used as normal GPIO. 已经: #define PLL_SOURCE_HSI // HSI (~8MHz) used to clock the PLL, and the PLL is used as system clock source //#define PLL_SOURCE_HSE // HSE (8MHz) used to clock the PLL, and the PLL is used as system clock source //#define PLL_SOURCE_HSE_BYPASS // HSE bypassed with an external clock (8MHz, coming from ST-Link) used to clock 选择为内部RC振荡器,但是PF0 还是不能用,有哪位大虾知道否? |
回复:新手请教STM32f030的PF0的问题
将static void SetSysClock(void) 函数中的
RCC->CR = (uint32_t)RCC_CR_HSEON;
改为:
RCC->CR &= ~((uint32_t)RCC_CR_HSEON);
也就是将外部时钟关闭就行了
RE:新手请教STM32f030的PF0的问题
要用PF0和PF1只要把外部低速时钟关闭,然后配置这两个引脚为GPIO模式就可以了
RE:新手请教STM32f030的PF0的问题
RE:新手请教STM32f030的PF0的问题
RE:新手请教STM32f030的PF0的问题
/* Configure PF.0 as PP output */
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStruct.GPIO_OType = GPIO_OType_PP;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOF, &GPIO_InitStruct);
RE:新手请教STM32f030的PF0的问题
回复:新手请教STM32f030的PF0的问题
看一下GPIO.h,里面有IO复用映射void GPIO_PinAFConfig(GPIO_TypeDef* GPIOx, uint16_t GPIO_PinSource, uint8_t GPIO_AF);
我试过: //GPIO_PinAFConfig(GPIOF, GPIO_PinSource1, GPIO_AF_0);
发现不好使,F030的PDF中只描述了GPIOA,GPIOB的AFn的复用,没有讲到GPIOF,不知道怎么设置
回复:新手请教STM32f030的PF0的问题
我看了一下手册,应该是直接用就可以了。这2个引脚没有复用。
没有选择内部振荡器,结果管脚对地大约1.8V左右,选择内部RC振荡器后,管脚始终是低电平,f0的资料也太少了,要是f1早就搞定了
回复:新手请教STM32f030的PF0的问题
RE:新手请教STM32f030的PF0的问题
回复:新手请教STM32f030的PF0的问题
RCC_CSR 中的HSEON 和LSEON 直接清零呢
抱歉,回复晚了,找自己的帖子找不到了
HSEON LSEON 都清零了,也不好使,有没有人用成过?
现在都没信心弄这个了
RE:新手请教STM32f030的PF0的问题
RE:新手请教STM32f030的PF0的问题
你可以:
查一个GPIO的配置函数.
里面应该有描述:
if (GPIOx == GPIOF)
或相关的,
其实只要有:库基本可以找到用法,及配置方法
只是建议
RE:新手请教STM32f030的PF0的问题
RE:新手请教STM32f030的PF0的问题