STM32 MCUs Embedded software

Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Secure boot solution for STM32U5 on Zephyr

Did you come to a conclusion on this approach? I am having the exact same dilemma. There is an approach to do it through TF-M, but then how is the support from ST on that part? https://github.com/zephyrproject-rtos/trusted-firmware-m/tree/release/2.2...

HDot by Associate
  • 89 Views
  • 1 replies
  • 0 kudos

Need help understanding HAL I2C operation

I am attempting to transmit four bytes via I2C to a device with address 0x27, using the code below.data_t[0] = 0x01; data_t[1] = 0x02; data_t[2] = 0x04; data_t[3] = 0x08; HAL_I2C_Master_Transmit (&hi2c4, 0x27U,(uint8_t *) data_t, 4, 100);My understan...

TomC1_0-1752159941446.png
TomC1 by Associate III
  • 53 Views
  • 2 replies
  • 0 kudos

Netxduo Issue after Soft Reset

Hi,I'm currently working on STM32H733 MCU powered by Azure RTOS (Threadx + NetxDuo), My application is divided into two parts: custom bootloader[For Firmware Updates] and application[Business logic Implementation]. I was able to update the applicatio...

Umair by Associate
  • 34 Views
  • 0 replies
  • 0 kudos

Resolved! ‘HAL_RTC_GetTime’ was not updating the time.

Hi Master:Platform: STM32H743HAL library firmware: STM32Cube FW_H7 V1.12.1Question:As shown in the following code, it takes a long time to update 'sTime', perhaps a few minutes.  RTC_TimeTypeDef sTime = { 0 }; RTC_DateTypeDef sDate = { 0 }; ASSERT(H...

Lyu.1 by Senior
  • 70 Views
  • 4 replies
  • 0 kudos

ADDRERRF bit getting set on PKA init

Hello,I am trying to use the PKA module on a STM32U5 controller. I have configured the clock at 160Mhz and also initialized the Ring. However, when I try to initialize the PKA, it runs into ADDRERRF = 1, I was expecting ofcourse INITOK to be 1. Does ...