STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Corrupted data via SPI_HAL_Receive in STM32F407

Dear friends, I need your help with the issue of data corruption when reading the data on SPI bus in STM32F407. I'm using 24 channels of temperature measurement (slaves) with one master STM32F407. 12 channels are connected to SPI1, other 12 channels ...

OVeli.1 by Associate II
  • 1059 Views
  • 3 replies
  • 0 kudos

Code alters a variable on itself

Hello,I want to be able to do multiple routines in my stm32 code. I went for the option to use Switch case statements. The problem is after the code has done one iteration the variable that is used in the switch statement(routine_test) changes on its...

HBesi.1 by Associate II
  • 972 Views
  • 5 replies
  • 1 kudos

USART blocked by Overrun error on my STM32L051

Hi everyone,I have a broblem regarding USART in overrun occurrence.In effect the "HAL_UART_IRQHandler" routine is called every incoming char, but this never calls callback routine (SYS_UART_RxCpltCallback).In debug mode I can see there is an USART_IS...

Creating .hex file from two banks memory of STM32H753

Hello,I have a problem with my .HEX file generated with KEIL 5.In STM32H753 there are two banks memory:FIRST BANK MEMORY : 0x08000000-0x080FFFFFSECOND BANK MEMORY : 0x08100000-0x081FFFFFMy project has this structure:0x08000000-0x08060000=> My own Boo...

FBern.2 by Associate II
  • 3099 Views
  • 22 replies
  • 0 kudos

HAL_I2C_Mater_Transmit issue

​ HAL_I2C_Master_Transmit_IT(&hi2c1,e,&c,1); HAL_I2C_Slave_Receive(&hi2c2,&d, 1, 1000);​​In the above case, it was confirmed that I2C communication works well.​ HAL_I2C_Master_Transmit(&hi2c1,e,&c,1,1000); HAL_I2C_Slave_Receive(&hi2c2,&d, 1, 1000);​H...

MYu.1 by Associate II
  • 824 Views
  • 1 replies
  • 0 kudos

Resolved! How to clear or bypass hard-fault in STM32L433?

Hello,I'm working on a project, wherein I've interfaced my STM32L433 controller with a Flash-IC (Nor flash) on the SPI port. At present, there is continuously bulk reading and writing operation is going on. Due to random power-cut, some of the flash ...