STM32 MCUs Products

Ask questions, find answers, and share insights on STM32 products and their technical features.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Hi, i use the stm32f405rgt6 and like to jump to the system memory 0x1fff0000. It never stays at DFU stm32_bootloader, it always starts application again.

I tryed two methodes, one just jumping to that address 0x1fff0000 via function pointer and second writing some magic numbers at 0x2001fffc and placing some asm code in the startup *.s file to jump branch to the system bootloader. I had to change cont...

MOtto.1 by Associate II
  • 2500 Views
  • 8 replies
  • 0 kudos

Resolved! STM32L052 - RTC with implausible or Zero - Content after RESET due to leaving the standby mode by recognizing of level LOW on RTC-TAMP1 (PC13)

The tamper contact RTC.TAMP1 on PC13 is used for entering and leaving the standby modus in tamper - level - detection - mode. The detection of low level on RTC-TAMP1 finishes the standby mode and restarts the controller. That is all OK. but in about ...

FEber.1 by Associate III
  • 1774 Views
  • 8 replies
  • 0 kudos

How to stop receive data in this code? or How to stop a get char? I used Interrupt to scan WiFi Information. I need only SSID. To input a buffer (Ring or FIFO) but it keeps bringing inform.

  void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart) { if(huart->Instance == USART2) { RX_Data[Rx_Index] = RXD; Rx_Index++; HAL_UART_Receive_IT(&UART2_WIFI,&RXD,1);   }   }

wwgww by Associate II
  • 694 Views
  • 1 replies
  • 0 kudos

STM32L073 RTC/LCD clock frequency

The RTC/LCD clock can be derived from HSE (prescaled). In this case, the prescaler must be chosen appropriately so as to get an RTC/LCD frequency within the admissible range.Using CubeMX, when the limits are exceeded, the tooltip says:* (tooltip over...

SZano by Associate III
  • 783 Views
  • 0 replies
  • 0 kudos

Resolved! STM32F411CE DMA odd interaction with PWM timer

I am trying to use DMA to capture data in the background (from ADC) while I use PWM to control 2 motors. When I use DMA to capture the ADC values from my sensors it works fine. When I only use my PWM timers (without DMA in the background) the PWM wor...

KClos.1 by Associate II
  • 1439 Views
  • 4 replies
  • 0 kudos

Resolved! About sleep mode (STM32F303)

I once read that when waking up a microcontroller from any low power mode, it will start as we have pressed the reset button, but, the reference manual says this: "After waking up from Standby mode, program execution restarts in the same way as after...

Getting Usage_FaultHandler exception when reading int32 value from the un-aligned void* ptr. Example: Here data pointer address is 0x20008911, which is unaligned by 4 byte. rpm = ((float) * (const s32 *)_data) / 256.0F;

We are porting applications from STM32F1 to STM32F427 MCU. Currently, we are not explicitly configuring SCB->CCR unaligned trap, based on ARM M4 manual, LDR, VLDR always triggers the fault if the address is not aligned properly.Do I require to use me...

KSing.4 by Associate II
  • 1504 Views
  • 5 replies
  • 0 kudos