Ask questions, find answers, and share insights on STM32 products and their technical features.
STM32F407https://www.st.com/resource/en/reference_manual/dm00031020-stm32f405-415-stm32f407-417-stm32f427-437-and-stm32f429-439-advanced-arm-based-32-bit-mcus-stmicroelectronics.pdfWhy are there incorrect Reset Values in ports A and B?I erased the ...
I am trying to create a 50ms timer using the above reference. The clock is 16MHz, I have a divisor of 16 and have the NVIC enabled (all this is done in cubeMX). I have the following ISR void HAL_LPTIM_AutoReloadMatchCallback(LPTIM_HandleTypeDef *hl...
my read flash reading is bellowing:unsigned short * pAddr = (unsigned short * )0x08004000;unsigned short read_value=0;for(int i=0;i<10;i++){read_value = *(pAddr +i);printf(.....,read_value );}---------------I add read_value to watch window ,however...
When I try to run a project in Release I get this message:No source available for "Reset_Handler() at 0x80007c4"What does this mean ?I do not see it in debug, and BTW I did set the mode to Release...
Hi, i'm using stm32f429 to develop i2c communication, the mcu cannot generate START signal after running a few minutes but the SDA and SCL all high, I add the CR1 register to watch and find the CR1 cannot be modified after calling the bellowing: br...
Hello everyone,stm32l series MCU going in STOP mode and dwt has been enabled before, RTC wake it up with 20 seconds. Callback is called with 20 seconds and always dw_val increments with 2 sec. What is going on the backgorund. Normally as much as I go...
We're trying to read from the ADC from 2 channels by using EOC interrupts.When we read the values seems like the channels are wired together.As such we can't distinguish between whether they come from one channel or the other. Here is the code that w...
I need my code called when something connects to the HAL UART.I have a simple mini-debug that just prints something to the UART and I see it on a console connected to the STM debug COM port. I noticed that the HAL_UART_Transmit() always returns HAL_O...