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

Waking from Standby with any GPIO with STM32L4?

I thought of using an STM32 to build a device which responds to infrequent pushbutton presses, but should also conserve battery. My initial instinct was to use an STM32L4 in Standby or Shutdown mode, setting the GPIO as external interrupts which woul...

EPelt.1 by Associate II
  • 1813 Views
  • 2 replies
  • 0 kudos

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
  • 1587 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
  • 6632 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
  • 2321 Views
  • 3 replies
  • 1 kudos