How to measure the MCU power consumption
Posted on June 04, 2018 at 07:48How to measure the MCU power consumptionWhen entering the stop mode, how to measure the power consumption?Thanks#mooc #stm32l4 #stop-mode
Ask questions, find answers, and share insights on STM32 products and their technical features.
Posted on June 04, 2018 at 07:48How to measure the MCU power consumptionWhen entering the stop mode, how to measure the power consumption?Thanks#mooc #stm32l4 #stop-mode
Posted on June 04, 2018 at 10:12Hello, In my project I use stm32f405 and ST-LINK tool to program firmware.My test code below:int main(void){ HAL_Init(); SystemClock_Config(); /* GPIO Ports Clock Enable */ __HAL_RCC_GPIOE_CLK_ENABLE()...
Posted on November 02, 2017 at 16:28 Hello, after upgrading CubeMX to version 4.0 on linux I noticed a bug in the generation of ./Makefile. The '# paths' section includes *.c files next to the directories and the '# sources' section includes s...
Posted on May 30, 2018 at 09:50CubeMX pop up the message 'updater is already in use and checking server. Then please retry launching the Updater after few seconds'. It has been always checking and nothing updated. Because of that issue, there is no ...
Posted on June 03, 2018 at 16:07static void EXTILine0_1_Config(void){ GPIO_InitTypeDef GPIO_InitStructure;/* Enable GPIOC clock */ __HAL_RCC_GPIOA_CLK_ENABLE(); /* Configure PA0 pin as input floating */ GPIO_InitStructure.Mode = GPIO_MODE_IT_FALLIN...
Posted on June 03, 2018 at 18:28Hi,I need to debug a circuit with 2 microcontrollers (both are STM32F103 and are connected with an STLink to my development pc), i know it's possible to do it on the same Debug session. Acording to this post [1] i sho...
Posted on June 04, 2018 at 08:23hi ,I am using STM32F417IG we need to configure 15 mail boxes for CAN receive operation.For a initial development and testing we have configured 4 mail boxes.But we are receiving 3 only we have splited 2 each in each ...
Posted on May 17, 2018 at 11:03After programming stm32f091 for the first time (using ST-LINK utility), the chip does not reboot automatically. Only after plugging-off the power source. Read out protection is Level0. User configuration option bytes a...
Posted on April 11, 2017 at 11:50I'd like to be able to output printf string on the Serial Wire Viewer window during the debug on SW4STM32. I've followed the tutorial in the in Help >> Help Contents >> SystemWorkbench for STM32 User Guide >> Advance...
Posted on June 04, 2018 at 06:29mcu: stm32f207VGI have a bootloader which jumps to another application at 0x8040000, the testing code is NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x40000); NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2); USBH_...