Skip to main content
Visitor II
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 Bouraoui Chemli

    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

    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.1Author
    Visitor II
    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