I would like to use functions from components/libraries/mem_manager/mem_manager.c but it doesn't compile because of absense of sdk_config.h header file.
/home/gerbsh/sdk_11.0.0/components/libraries/mem_manager/mem_manager.c:12:24: fatal error: sdk_config.h: No such file or directory
#include "sdk_config.h"
^
compilation terminated.
Makefile:183: recipe for target '_build/mem_manager.o' failed
make: *** [_build/mem_manager.o] Error 1
I add one line to examples/ble_peripheral/ble_app_uart/pca10028/s130/armgcc/Makefile
$(abspath ../../../../../../components/libraries/uart/app_uart_fifo.c) \
+$(abspath ../../../../../../components/libraries/mem_manager/mem_manager.c) \
$(abspath ../../../../../../components/drivers_nrf/delay/nrf_delay.c) \
Thank you very much. Happy new year!