STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

New possibilities for the ultra-low power segment!

STM32U0 is the first Cortex-M0+ with a static consumption of only 160 nA in standby mode with RTC (Real-Time Clock) and 16 nA in shutdown. It also achieves 118 points in CoreMark and targets SESIP level 3 and PSA level 1 focusing on firmware code pro...

gif-stm32u0.gif

stm32f405RG eeprom emulation

Hello All,I am trying to get eeprom emulation working on a stm32f405RG**. I created a new simple project in STM32CubeIde using the eeprom code from the stm32f4cubeide packages. specifically I am using the code from STM32Cube_FW_F4_V1.25.0\Projects\...

TCash.1 by Associate III
  • 670 Views
  • 4 replies
  • 0 kudos

If we initialize an array would it be stored in a different partition of RAM in comparison with the condition under which we do not initialize the array ? initialized array: float Data_Set_X[15000]={0}; uninitialized: float Data_Set_X[15000];

the problem is that When I define the arrays like this :float Data_Set_X[15000]; float Data_Set_Y[15000]; float Data_Set_Z[15000];I get the RAM overflow error which is: `.bss' will not fit in region `RAM' Timer-Blink-Test_CM7 C/C++ Problemwhen I init...

STork.1 by Associate III
  • 603 Views
  • 2 replies
  • 0 kudos

Resolved! Problem using HAL_UART_Transmit_IT

I'm using the HAL_UART_Transmit_IT procedure on a STM32G431 for the LPUART on a 115200 baud communication to a Putty terminal. The MCU is also running ST Motor code.I have some simple 3 character commands that either set variables in the code or read...

BTrem.1 by Senior II
  • 2806 Views
  • 9 replies
  • 0 kudos

SysTick, why not part of CMSIS? (NUCLEO-G070RB)

So I have a NUCLEO-G070RB board here and I am not using the HAL library, but just CMSIS libraries.I see the SysTick functions are part of the HAL not CMSIS. is there a particular reason? I would figure since it's part of the M0+ core it would be i...

MEder by Associate III
  • 694 Views
  • 6 replies
  • 0 kudos

problem with initialisation SDMMC

/* Send ACMD41 SD_APP_OP_COND with Argument 0x80100000 */   while(validvoltage == 0)   {   if(count++ == SDMMC_MAX_VOLT_TRIAL)   {   return HAL_SD_ERROR_INVALID_VOLTRANGE;   }       /* SEND CMD55 APP_CMD with RCA as 0 */   errorstate = ...

EEuge by Senior
  • 478 Views
  • 2 replies
  • 0 kudos

Resolved! I can't make timer stop while debuging

Posted on January 09, 2017 at 18:29 Hello. I have a problem trying to stop a timer in debug mode. I am using a NUCLEO-F072RB. I use timer 7, one of the basic timers, to generate an interrupt. In order to be able to stop the timer in debu...