Forum Posts
Resolved! STM32F302R8 unable to use GPIO
Hi all, I am a new STM32 user migrating from Atmel/Microchip's SAMD line. I created my first project following along the tutorials here: https://www.youtube.com/watch?v=x_5rYfAyqq0&t=682s.It's a motor driver, with some other hardware shown outside of...
Resolved! TIM8 Input capture mode using firmware trigger?
I have a STM32G431 MCU board and TIM8 is triggered by an external input pin to perform a counter capture and initiate a DMA transfer for CH1. What I would like to also do on TIM8 is perform a counter capture based on a software trigger to CH3. Is thi...
STM32F091 Flash status SFR timing question during erare
I'm working on a bootloader which needs to erase and program the Flash. The erase seems to be 'working' but I have a suspicion that I'm not waiting long enough for the 'Busy' bit to go active after setting the 'Start' bit. The reference manual says I...
STM32L476RG detached Nucleo drawing 4.9mA even in Stop 2 Mode
The SetupI'm working on a prototype for a battery powered application on the STM32L476. I seem to have the code working, i.e. I put the MCU in Stop 2 Mode and wake it up after a sleep interval using the RTC. I've detached the base part of the Nucleo ...
How to setup SDMMC with the HSI48 clock?
Hi, i'm trying to configure the SDMMC device to be driven by the HSI48 clock, here is my configuration at the moment. Previously, i had configured the SDMMC with the PLLSAI clock and it worked at certain frequencies (38KHz.etc) but i've read in the s...
Why external interrupt shows delay..
I am doing one project with STM32H743ZI.I am using the external interrupt and copy the signal and set the output as input.But is shows about 700us delay.I do not know the reason why its gives such a big delay.
I2C1 Interrupt Handler Never Called
I am using an STM32H753. I2C1 (for an EEPROM) and I2C3 (for a touchscreen) are set up in the same way. Interrupt priority 10 for both, 400kHz. I can transfer data via I2C3 using interrupts, but when I try the same with I2C1, the interrupt handler is ...
Resolved! Why does a call to printf need to be terminated by a newline ?
Works: printf("hello world\n");Does not work: printf("goodbye world !");I have tried to find the answer in gcc´without success.
HAL_SPI_ReceiveIT not working on STM32F4
I am working on a project where I am using two boards to communicate via SPI. The master board (TMS320F28377S) is sending data successfully via SPINow, my receiver board is running on a STM32F439 processor, I'm relatively new to this micro. I configu...