How do I disable EXTI4_15_IRQHandler without using HAL
The title says it all, I want a faster interrupt (without HAL) but I can't find the register I need to write to disable the interrupt
Ask questions, find answers, and share insights on STM32 products and their technical features.
The title says it all, I want a faster interrupt (without HAL) but I can't find the register I need to write to disable the interrupt
***Edited to show the probably all the code involved without including the HAL libraries***Hi all, I'm using HAL libraries to code an STM32F103C6 as a slave and I'm using HAL_I2C_Slave_Receive_IT(), debugging I can see that the slave recognize its ad...
Im working with STM32F4 DISCOVERY board. I'm trying to generate DMA request to write to GPIOD[15:8] pins on button press (PA0) by input capture timer configuration (TIM2) .I presume my configuration of timer is wrong, because i used very similar DMA ...
Hello, i'm working with stm32l412cb on custom PCB, and I ran into trouble.Is there any way to wake up MCU from standby by falling edge? Here is scheme and code:void enter_sleep() { HAL_EnableDBGStandbyMode(); //HAL_GPIO_WritePin(GPIOC, GPIO_PIN_13,...
Dear all,I have been trying to read ADC value from an ADC chip (TI ADC161S626) through SPI receive only master (The STM32 used were STM32F103C8T6). However, I realised when I request to read one byte with HAL_SPI_Receive() function, there are more th...
huart1.Instance = USART1; huart1.Init.BaudRate = 9600; huart1.Init.WordLength = UART_WORDLENGTH_8B; huart1.Init.StopBits = UART_STOPBITS_1; huart1.Init.Parity = UART_PARITY_NONE; huart1.Init.Mode = UART_MODE_TX_RX; huart1.Init.HwFlowCtl =...
Hi all! I use STM32L151VDT7X, CubeMX HAL and Atollic TrueSTUDIO® for STM32 9.3.0 in my project. I need to upgrade my firmware on-the-air and so I made “bootloader + image�? application:1) Edited in bootloader linker file:MEMORY { RAM (xrw) : ...
Hello,I'm using the STM32f417ig. I'm trying to configure TIM1 in a specific way, but I couldn't find information about this in the reference manual or on the web.TIM1 is configured to be reset by a trigger event coming from TIM2 (slavemode set in the...