Current in mA in STOP1 mode
I've implemented STOP 1 mode on STM32L476 using HAL function. The current consumption is >1mA even in STOP mode while I've disabled all the clocks. I'm unable to understand this.
Ask questions and find answers on STM32 hardware set-ups, including schematic-related challenges, debugging probes, power configurations, and more.
I've implemented STOP 1 mode on STM32L476 using HAL function. The current consumption is >1mA even in STOP mode while I've disabled all the clocks. I'm unable to understand this.
Hello everyone, I'm trying to set all the pins(except 11) of port F of STM32L476 as Analog to save power. for(uint8_t GPIO_PIN = 0; GPIO_PIN < 16; GPIO_PIN++) { if(GPIO_PIN != 11) GPIOF->MODER |= (3 << (GPIO_PIN * 2)); } But it resets my progr...
I am trying to use the usb COMPOSITE library. (AL94.I-Cube-USBD-COMPOSITE.1.0.3)Followed the instruction How to generate the code from MXcude for USB CDC and USB HID.the code compile successfully. and I can see those devices when I attach my NUCLEO b...
Hi All,I am looking to use the I2C3 for connecting to an OLED display. I have already used I2C1, and due to design requirements, I cannot use the same bus to communicate to the OLED display, and hence I2C3 is my only option. I2C3_SDA is an alternate ...
Hi there,Looking into the TRM for the STM32L412xx board, I was wondering if I could use a DMA to copy constant data from the Flash to SRAM. The system architecture block diagram connects the DMAs to Flash through the DCode path:However, while reading...
Dear allSituation 1:I use Nucleo-F413ZH with AMC1306EVM (PA8 DFSDM_CKOUT, PB1 DFSDM1_DATIN0)Result: DFSDM is working fine with DMA. In this situation I use mode PDM/SPI input from CH0 and internal clock.See code details in files with ending dfsdm_clk...
The problem that I am facing with the CAN communication using STM32F412G-DISCO is that the CAN transmission from the STM32F412G-DISCO devboard is working fine, but the mcu is not receiving any data on the CAN bus. I am using a CAN analyser to send t...
I am new to stm32 and i want to know how to send message to pc over usb using a stm32h747, thanks!
EDIT: The program is stopping at _WFI() but the current consumption is too high (3.9mA). I'm using STM32L476 processor and while trying to enter stop mode (tried both with and without tickless mode), the program never waits at _WFI(). Is there a way ...