STM32 MCUs Embedded software

Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

TF-M Secure storage B-U585I-IOT02A

Hello , I am aiming to demonstrate secure storage operation SST using PSA APIs using STM32U585. To verify that TF-M services are operational and Secure/Non-Secure communication works. However I dont find any more stm32cube TFM ready solutions/example...

SDRAM on the STM32F429I-DISC

Hi,I want to fly the STM32F429I-DISC with the 8 MB SDRAM. I use CubeIDE and selected the right board. All units are set to default. I commented out everything that had to do with os.With help of ChatGPT I hacked together an initialization of the SDRA...

DetlefS by Senior
  • 71 Views
  • 3 replies
  • 0 kudos

STM32303E-Eval SD Card

Hi everyone,As part of one of my projects, I have to use an SD card to store my data. Since the final board has not yet been manufactured, I started developing my software on the STM32303E-EVAL evaluation kit.For reference, it uses the same microcont...

Stack.PNG
DNA-) by Associate III
  • 28 Views
  • 1 replies
  • 0 kudos

STM32H7 - USBX RNDIS - USBD_RNDIS_EPINCMD_ADDR

Hello,  I'm using STM32CubeIDE 2.0.0 + STM32CubeMX 6.16.1 + FW_H7 V1.12.1 I have a problem with USBX RNDIS.The generated code on file ux_device_descriptor.h  at line 308 is: #define USBD_RNDIS_EPINCMD_ADDR 0x81U In the exemple code of STM32H735-DK fi...

Dams by Associate III
  • 31 Views
  • 4 replies
  • 0 kudos

FileX on QSPI files are not kept after reset

Hi,I’m working with a custom PCB based on an STM32H743BI and an external MT25TL01G memory device.To manage the data I’m using FileX + LevelX. I’m able to create the media, create directories, create files, write to them, and read them without issues....

Moving isr_vector inside text section

Hi,I just wanted to check if is it dangerous to move the isr_vector inside the text section like this:.text :{. = ALIGN(4);KEEP(*(.isr_vector)). = ALIGN(4);FILL(0x00000000);. = ALIGN(4);*(.text) /* .text sections (code) */*(.text*)*(.glue_7) /* glue ...

UriA by Visitor
  • 31 Views
  • 0 replies
  • 0 kudos

USBX as a host in stand alone

Hey there at @Pavel A. I've implemented USBCDC as a device In stand alone mode successfully I intend on implementing CDC host stand alone that is to say without X-thread RTOS.The generated files from cube MX don't have Read_run and Write_run function...