Question
Is it possible to use the standard library of the toolchain "GNU Tools for STM32" without using the heap area?
We are developing "STM32F769-Discovery Kit" using STM32Cube IDE.
The toolchain is "GNU Tools for STM32".
Functions such as printf call malloc_r and use the heap area.
_Puts_r ()
__sinit ()
__sfp ()
__sfmorgelue
_malloc_r
In our development project, we want to proceed with development without using the heap area.
Is there a way to use the standard library without using the heap area?
