STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

HAL_Delay() Not Working Before OS Kernel Start.

Hi,I need to initialize a display by calling my function in main.c. This function uses the I2C4 channel and requires implementing some delays.Since it uses I2C4, it must be placed after the CubeMX Init functions, specifically in /* USER CODE 2 */. Do...

Ricko by Senior III
  • 309 Views
  • 5 replies
  • 1 kudos

H7 USB devices Errata

Hello, I would like to get more info on Errata ES0392 Rev 13 - section 2.25.3:the errata states:I'm confused with the wording of this errata.  Can someone from ST describe the meaning of this errata?I currently have USB0 connected to the USB Hub dire...

mattcrc_0-1741837754691.png mattcrc_1-1741838045724.png mattcrc_2-1741840510959.png mattcrc_4-1741840772902.png

Atomic variable for scheduler question

I traditionally use a volatile type for my schedulers. Very simple like so volatile uint8_t myflag; uint8_t ticks; void Func(void){ ++ticks; if(!(ticks % 5)){ myflag = true; } } void User(void){ if(myflag) { myflag = false; //DO ...

Carl_G by Senior
  • 784 Views
  • 28 replies
  • 3 kudos

Resolved! TIM still running in STOP

I am using TIM2 to create PWMs for LEDs. When I enter STOP mode I expect the PWM to stop. Yet it does not. From the manual TIM do not have wakeup capability from stop mode. So they should not be requesting the HSI to operate.What could possibly cause...

Carl_G by Senior
  • 209 Views
  • 3 replies
  • 0 kudos

STL Library flash test error configuration

Hi, my current issue is that after implement Self test library for a stm32h5 the basic things like STL_SCH_Init() works fine but when i try to run the flash test the STL_SCH_ConfigureFlash fails, the status says STL_ERROR.How i run the test:I define ...

juanmilo by Associate
  • 132 Views
  • 2 replies
  • 1 kudos

HAL L4 RTC Bug Report

I'm currently using a STM32L433RCT3 and the L4 HAL library. My goal was to read back a configured RTC alarm, increment it, and restart the alarm. I created a:RTC_AlarmTypeDef sAlarm;I read back the RTC alarm using,HAL_RTC_GetAlarm(&hrtc,&sAlarm,RTC_A...

MVeen.1 by Associate II
  • 204 Views
  • 2 replies
  • 0 kudos