STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! Roadmap for H5 USB and RTOSs.

I was going to turn on USB VCP support into my latest research project on a Nucleo-H563ZI, and noticed that the normal middleware for USB devices doesn't seem to be there. (I've been using F4s and F7s for years, wrote articles on how to get started u...

STM32H755 dual core debug - demo project

Hi, after a lot of wasted time, I've created a demo for dual core with debug files:Here is the project:https://github.com/lonejack/stm32cubeide-demo-dualcore To make the setup the guide:https://www.youtube.com/watch?v=k3mXhPZSasw has been followed.I ...

lonejack_0-1705048171879.png lonejack_1-1705048529091.png lonejack_2-1705048671633.png lonejack_3-1705048768332.png
lonejack by Associate III
  • 1227 Views
  • 8 replies
  • 0 kudos

Resolved! How to convert integer number to Q1.15 format?

Hello,I am using STM32G491 controller for my application. I am trying to use FMAC module for FIR filter implementation for my application. I am referring the STM32G4-Peripheral-Filter_Math_Accelerator_FMAC.pdf FMAC pdf document. I have also referred ...

kirtiraje by Associate II
  • 2400 Views
  • 4 replies
  • 2 kudos

STM32F4 LWIP MODBUS TCP

Hi I work with stm32f4 modbus tcp /ip.When I connect the ethernet cable first and then power the stm32f4, my code works goodBut, when I first power the stm32f4 and then connect the ethernet cable, I cannot even ping it. How I can solve it? Thanks

UAlti.1 by Associate
  • 1146 Views
  • 4 replies
  • 0 kudos

HAL_UART_Transmit_DMA() only work one time

Posted on October 22, 2017 at 16:13I want to use  ' HAL_UART_Transmit_DMA(); ' to send data in DMA mode like this :    char str_Hello[]='Hello\n';    HAL_UART_Transmit_DMA(&huart1,(unsigned char *)str_Hello,strlen(str_Hello));    HAL_Delay(500);But ...