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

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
  • 1299 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
  • 1056 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
  • 5228 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
  • 1520 Views
  • 3 replies
  • 1 kudos