STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

jump to another app explanation

I have this code:void bootloader_jump_to_app(void){ pFunction Jump; uint32_t JumpAddress;   HAL_RCC_DeInit(); HAL_DeInit();   JumpAddress = *(__IO uint32_t*)(APP_ADDRESS + 4); Jump = (pFunction)JumpAddress;   __set_MSP(*(__IO uint32_t*)APP_AD...

JCuna.1 by Senior
  • 470 Views
  • 3 replies
  • 0 kudos

Resolved! BOOT_LOCK documentation issue

Hi, The general documentation for the STM32G0 family mentions BOOT_LOCK all over the place where this is actually only available on STM32G0x1, not STM32G0x0. I hope this can be fixed and will help some other developers in the meantime.Some of the doc...

Coratron by Associate II
  • 480 Views
  • 2 replies
  • 0 kudos

Resolved! How to go into stop mode with FreeRTOS running on an STM32L073 board. HAL_SuspendTick() is not working while using FreeRTOS?

I am trying to use stop mode with the STM32L073 chip. I am able to get my code working while I am not using FreeRTOS on the STM32L073. I am also able to get this working on the STM32G0 Nucleo board with FreeRTOS.When I start using FreeRTOS on the STM...

VWied.1 by Associate III
  • 955 Views
  • 2 replies
  • 0 kudos