Posted on February 24, 2015 at 16:05Is it possible to configure external interrupt for blue user button on Nucleo bord (which is PC13) using HAL library?As given in examples for EXTI_Line0 connected to PA.00 pin: GPIO_InitTypeDef GPIO_InitStructu...
Posted on February 26, 2015 at 14:29To help someone a lammer like me, that's how I did it:void MX_GPIO_Init(void){GPIO_InitTypeDef GPIO_InitStruct; /* GPIO Ports Clock Enable */ __GPIOC_CLK_ENABLE(); __GPIOA_CLK_ENABLE(); /*Configure GPIO pin :...