STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! Infinite data transmit using SPI

I am testing with STM32F769 Discovery board to make video syncs (not vsync, hsync).I am using SPI module to make infinite clock and data.But, it seems not supported in normal and DMA transmit mode (there is delay between transmissions).How should i ...

SPark.28 by Associate II
  • 718 Views
  • 2 replies
  • 0 kudos

Resolved! stm32f4xx_it.c overwirtten if I update the configuration

I'm new to STM32 and am trying to get a couple of simple things working at this point. I am trying to generate and handle a GPIO interrupt on PA0 using FreeRTOS and I have no trouble with that. All the examples I've seen say to modify the ISR at st...

JHanc.1 by Associate
  • 1067 Views
  • 3 replies
  • 0 kudos

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
  • 852 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
  • 796 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
  • 3321 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
  • 921 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
  • 601 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...