Skip to main content
ADębs.1
Senior
March 30, 2021
Solved

STM32F746G-DISCO, STM32CubeIDE, FreeRTOS

  • March 30, 2021
  • 2 replies
  • 860 views

Hi

How to quickly configure FreeRTOS to work with the IDE?

Andrzej

This topic has been closed for replies.
Best answer by Bowman32

Hi @Andrzej Dębski​ 

You can refer to FreeRTOS applications available in STM32CubeF7 via this path STM32Cube\Repository\STM32Cube_FW_F7_V1.16.0\Projects\STM32746G-Discovery\Applications\FreeRTOS

Bouraoui

2 replies

Bowman32
Bowman32Answer
ST Employee
March 31, 2021

Hi @Andrzej Dębski​ 

You can refer to FreeRTOS applications available in STM32CubeF7 via this path STM32Cube\Repository\STM32Cube_FW_F7_V1.16.0\Projects\STM32746G-Discovery\Applications\FreeRTOS

Bouraoui

ADębs.1
ADębs.1Author
Senior
March 31, 2021

Hi

Thank you. It turned out that in the main.c file I added manually:

#include "FreeRTOS.h"

#include "queue.h"

#include "task.h"

After that it started moving.

Andrzej