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

STM32L162 LQFP64 device marking

Hi! We have received STM32L162 MCU in LQFP64 package with device marking that doesn't follow the datasheet. In the datasheet for this part product identification lines should be likeSTM32L162RDT6but on the part we had received it isSTM32L162RDT6So th...

AAGree by Associate II
  • 1661 Views
  • 5 replies
  • 0 kudos

Is anyone using Rust here , any toughts?

 Does it deliver what it promises? (you could helloworld a web page and a microcontroller with no big code difference)Is it worth the hussle of learning it?Is there any real example of a situation where Rust saved the day?

0693W00000aH95cQAC.png
Javier1 by Principal
  • 6873 Views
  • 6 replies
  • 4 kudos

I have UART1 and UART2 configured. I am looking to bridge the two together. UART2 (115200) & UART1 (9600). UART2 (PC VIA USB) and UART1 [DMA, Circular (word)] (Connected to external device UART interface).

Code snippet```while (1) {         HAL_UART_Receive_DMA (&huart1, UART1_rxBuffer, 100);         HAL_UART_Transmit (&huart2,UART1_rxBuffer,sizeof(UART1_rxBuffer),100)}void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart){ uint8_t UART1_rxBuffer[100]...

Ghomi.1 by Associate
  • 2480 Views
  • 3 replies
  • 1 kudos

How to write doublewords to flash on an STM32F411RE

I could get HAL_FLASH_Program to write WORDS, as soon as I moved to FLASH_TYPEPROGRAM_DOUBLEWORD the last error returned is alwasy PGA | PGS flags in the SR. PGA = alignment, PGS = sequence. I referred to every internet article I could to figure out ...

ELeyl.1 by Associate II
  • 1293 Views
  • 1 replies
  • 0 kudos