why the MCU can not wakeup?
Dear,i used STM32F205RB MCU, could you tell me:1.why the MCU can not wakeup?2.how can i solve it? tin tai
Ask questions, find answers, and share insights on STM32 products and their technical features.
Dear,i used STM32F205RB MCU, could you tell me:1.why the MCU can not wakeup?2.how can i solve it? tin tai
I'm using the AWD (STM32G0B0CE) with the HAL_ADC_LevelOutOfWindowCallback(), which works fine.For not blocking the MCU completely, I'm disabeling the AWD-IT inside the Callback when fired for about 500ms:LL_ADC_DisableIT_AWD1 (ADC1);After the 500ms e...
I have received some STM32F405RGT6 microcontrollers that have two circular marks (holes) on the package, while the official datasheet only shows one mark indicating pin 1.Is there an official revision or packaging variant from STMicroelectronics that...
Peripheral: QSPIBug: Bit 4 of FTHRES[4:0] in the Control Register is not set when written with threshold values in the range0x10 - 0x1F. Works fine for threshold values in the range 0x00 - 0x0F. So, for example, if one writes 0x16 for athreshold leve...
Hi,I need to run my application in the external flash, as the size of the internal flash is very less for the stm32h7s78-dk board. I have turned on optimizations as well, but i need external flash configuration. probably XSPI1, XSPI2 what all the thi...
Hello,I'm working on a firmware which currently run in USB vendor interface (bInterfaceClass = 0xFF) and it's working.Now I want to add MassStorage. My Firmware is a bit older so I add all usb composite parte by my self (in usbd_core ...) . I defined...
I am facing a strange issue that looks like a possible microcontroller design/behavior problem.My setup:I need the DAC output pin to provide a stable voltage while the microcontroller is in STOP2 sleep mode with the RTC running.Power connections: Vb...
I'm try to generate some pulses to PB0 using STM32F103C8T6 with the following code#include <stdint.h> // STM32F103C8 is a medium density device, hence we use the xB header #include <stm32f103xb.h> #if !defined(__SOFT_FP__) && defined(__ARM_FP) #warn...
Hello, I am currently trying to measure the temperature using the internal temperature sensor of STM32F765. The Reference Manual stated to do temp = ((V_sense - V_25) / Avg_Slope) + 25,but the address of calibration data existed in the Datasheet.In t...
Hi all,we are designing a product based on a STM32U083. The device is battery powered (not removable) and it can remain in storage for at least 2 years. To reduce battery drain we are putting the mcu in shutdown mode to then wake him up via a button ...