Browse
STMicroelectronics Community
FAQs
Sign In
Product forums
STM32 MCUs
STM32 MCUs Products
STM32 MCUs Boards and hardware tools
STM32 MCUs Software development tools
STM32 MCUs Embedded software
STM32 MCUs TouchGFX and GUI
STM32 MCUs Motor control
STM32 MCUs Security
STM32 MCUs Wireless
STM32 MPUs
STM32 MPUs Products
STM32 MPUs Boards and hardware tools
STM32 MPUs Embedded software and solutions
STM32 MPUs Software development tools
MEMS and sensors
MEMS (sensors)
Imaging (sensors)
Automotive and Transportation
Automotive MCUs
AutoDevKit Ecosystem
GNSS positioning
Edge AI
Analog and audio
Interface and connectivity ICs
Power management
ST25 NFC/RFID tags and readers
STM8 MCUs
Other: hardware
Other: software
Knowledge base
STM32 MCUs
STM32 MPUs
MEMS and sensors
Analog and audio
EMI filtering and signal conditioning
Interface and connectivity ICs
Power management
Quality & reliability
Academy
About
Community guidelines
Feedback forum
Community blog
Developer news
mov
Associate II
since
2020-03-13
2024-06-13
User statistics
8
Posts
0
Solutions
0
Kudos given
0
Kudos received
View all badges
STMicroelectronics Community
About mov
Options
Report User
User Activity
Posts
Replies
Hello, I'm using stm32f746 MCU with CMSIS-RTOS2, all working fine except: after wakeup from STANDBY Mode, MCU is not continue execute code, it start from main() reset. Which "Low-power mode" mode I must to use for continue code execution after wakeup?
2021-07-07
stm32f746 Low-power mode
I have trouble to get working USB and bxCAN, device STM32F103RC (STM32CubeIDE v1.4), if bxCAN is not configured, USB work fine, together does not work - error "usb 1-1.3: device descriptor read/64, error -32". What I'm doing wrong?
2021-03-04
Re: Hello, I'm using stm32f746 MCU with CMSIS-RTOS2, all working fine except: after wakeup from STANDBY Mode, MCU is not continue execute code, it start from main() reset. Which "Low-power mode" mode I must to use for continue code execution after wakeup?
2021-07-09
By the way, it's not about HARD FAULT. The question is why does the controller reset when exiting POWER DOWN mode.
Re: Hello, I'm using stm32f746 MCU with CMSIS-RTOS2, all working fine except: after wakeup from STANDBY Mode, MCU is not continue execute code, it start from main() reset. Which "Low-power mode" mode I must to use for continue code execution after wakeup?
2021-07-09
The HAL documentation is not good enough, unfortunately, but everything can be solved by experiments :)
Re: Hello, I'm using stm32f746 MCU with CMSIS-RTOS2, all working fine except: after wakeup from STANDBY Mode, MCU is not continue execute code, it start from main() reset. Which "Low-power mode" mode I must to use for continue code execution after wakeup?
2021-07-09
I solved the problem using STOP mode: HAL_PWR_EnterSTOPMode (PWR_LOWPOWERREGULATOR_ON, PWR_STOPENTRY_WFE); Now MCU continue execute code from enter power down state.
Re: I have trouble to get working USB and bxCAN, device STM32F103RC (STM32CubeIDE v1.4), if bxCAN is not configured, USB work fine, together does not work - error "usb 1-1.3: device descriptor read/64, error -32". What I'm doing wrong?
2021-03-04
I test it, USB work fine if bxCAN disabled.