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

How to use the FreeRTOS on STM32N6570-DK board

I am trying to use the FreeRTOS on the STM32N6570-DK board, and now I have some problems with it. I downloaded the  RTOS from the website and I get the croutine.c, event_groups.c, list.c, queue.c, stream_bufffer.c, tasks.c, timers.c under the route o...

Z-YF by Associate III
  • 266 Views
  • 1 replies
  • 0 kudos

Resolved! I2S + DMA configuration

I have NUCLEO-F756ZG board with STM32F765ZG and I have hooked up ICS43434 mic into I2S1 bus. Now I have been scratching my head for a day to figure out how to get data out from that puppy. Or actually getting data out is simple, but to make it sane i...

JusbeR_0-1746793869493.png JusbeR_1-1746793913913.png
JusbeR by Associate II
  • 715 Views
  • 8 replies
  • 0 kudos

USBX Device CDC ACM problem

Hi all,I am writing to you because I am trying to understand how to make the USB CDC ACM work on the Nucleo U5A5ZJ board. First of all I analyzed some ST webinars and tested the UX_Device_CDC_ACM program which works correctly. I tried to reproduce it...

How to use SSD1315 Library

Hi!I'm trying to make a LCD screen work, but without success.I found this library:https://github.com/STMicroelectronics/stm32-ssd1315But I can'd find more documentation with examples (how to initialize).Can you give me a "wire"? Now I'm using a ssd13...

cyberpex_0-1740617468809.png
cyberpex by Associate II
  • 1256 Views
  • 6 replies
  • 3 kudos

STM32 HAL Tick Timer - Handy Hint #3

The HAL tick timer interrupts the MCU every 1 ms. When using FreeRTOS it is best to set the HAL Tick source to a timer rather than the system tick interrupt.  Delays in freeRTOS are created using vTaskDelay() or vTaskDelayUntil() and don't use the HA...