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

STM32F4 SPI Receive Problem

Sorry, I have another question to ask everyone. I am currently using the STM32F429ZIT6 to receive data from the AD7366 via SPI. My Code: int main(){ /* Initialize all configured... */ while(1){ /* CNVST Enable */ GPI...

Scarlet_1-1714478164096.png Scarlet_3-1714478221643.png Scarlet_0-1714478057463.png Scarlet_2-1714478213652.png
Scarlet by Associate III
  • 613 Views
  • 3 replies
  • 0 kudos

Bootloader Firmware Update for STM32H757 using UART

Hi All,I have created two projects. One is for the bootloader and another one is for the Application and will place the bootloader in the starting position of the flash, which is 0x08000000. And application into 0x08040000.Below is the code for bootl...

Nitin007 by Associate II
  • 842 Views
  • 8 replies
  • 0 kudos

Resolved! Count number of pulses on TIM1 input on STM32G031

Hello,I have STM32G031 and I want to use PA8 pin (TIM1_CH1) to count pulses. My idea is to read number of counted pulses every 1 second and reset counter to 0. void TIM1_Init(void) { // Enable TIM1 clock RCC->APBENR2 |= RCC_APBENR2_TIM1EN; ...

StastnyPetr_0-1722952977228.png

STM32F4 LoRa E220-400T30S Communication

I got 2 STM32F446VET7 MCU board and I am trying to communicate each other with LoRa E220-400T30S.I cannot found any usefull libraries so I am trying to write one.I can communicate with modules from UART and setting configuration parameters.Both E22 m...

testbenchmark_0-1722767477601.png

Issues with KSZ9893 and STM32F427 Integration

Hello everyone,I'm currently working on a project where I'm interfacing the KSZ9893 Ethernet switch with an STM32F427 microcontroller. The setup uses the RMII interface for data communication and I2C for management.Issues i am facing:1.unable to ping...

priyazcs by Associate II
  • 299 Views
  • 3 replies
  • 0 kudos

STM32H563 Custom External Loader Issues

I am trying to build a custom external loader for W25Q64 SPI. I am using the OCTOSPI1 using the follow pins.PE11OCTOSPI1_NCSPF6OCTOSPI1_IO3PF7OCTOSPI1_IO2PF8OCTOSPI1_IO0PF9OCTOSPI1_IO1PF10OCTOSPI1_CLKI have followed the stm32-external-loader/Demo_Pro...