STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Without using SD card how to access the .txt or csv file?

Hello,I am working on Nucleo-H745ziq board. I have to read the .txt and .csv file, but on this board there is no SD card implementation, so how I read the .txt file. I tried to read the file using below programmed but unable to read please help me. ...

MDeva.1 by Associate II
  • 1920 Views
  • 6 replies
  • 0 kudos

Hi, I am using STM32L4R5ZG controller in one of my custom board. My application need to erase some flash area in controller. However when i ma trying to erase 100 pages in Bank2 of controller pages are not getting erased and there is no error

I am attaching my code for reference.int FLASH_Erase_Size(uint32_t uStart, uint32_t uLength){ uint32_t page_error = 0U; FLASH_EraseInitTypeDef x_erase_init; uint32_t e_ret_status = HAL_ERROR; uint32_t first_page = 0U, nb_of_pages = 0U, bank_number = ...

PKrish by Associate
  • 466 Views
  • 2 replies
  • 0 kudos

Resolved! G431 Full Duplex SPI LL function for Tx and Rcv

I am playing with G4 LL example code for SPI.In STM32Cube_FW_G4_V1.4.0, there is example SPI_OneBoard_HalfDuplex_IT_Init.I have managed to make it work with my Nucleo-G431RB board. I wonder how I can extend it to a full duplex mode to communicate wit...

HDaji.1 by Senior
  • 1122 Views
  • 5 replies
  • 1 kudos

What is the flash memory range for STM32F103RCT6?

I am having difficulty working out the memory address range for the STM32F103RCT6, which I am using for my project. I would like to write some config data into the top page of flash, but cannot work out with certainty where this page starts and how ...

TCarn.2 by Associate
  • 2124 Views
  • 1 replies
  • 0 kudos

How to clear UART's RX_buffer in stm32f030cct6

Hello Forum, I am using stm32f030cct6 and Quectel L86 GPS module for my application. I am doing coding on STMCubeIDE, using HAL libraries. The GPS module is in continuously receiving data mode. I am receiving that data on uart in a buffer.Max size of...

NHing.1 by Associate III
  • 16777 Views
  • 8 replies
  • 0 kudos

STM32F429IGT Read Configure & Frame from UVC Camera Failed

Hi allMy USB Camera support YUY2 & MJPEG format, PC read back the correct configuration, but STM32 not correct, the configuration only contain MJPEG format! And the other infomation seems correct. Why camera can distinguish the PC and STM32 host ? I ...

Jzhua.1 by Associate
  • 581 Views
  • 1 replies
  • 0 kudos

STM32L433RB: COMP2_OUT has no impact on TIM1 PWM output

Hello,I'm working with STM32L433RB.I would like to, in TIMER1, use COMP2_OUT to as the ETR, to make time-shifting of a PWM output signal.The setting of TIM1 registers are as the following:   TIM1->CR1 = 0; // disable TIM1   TIM1->PSC = 9 - 1;   TIM1-...