I noticed the following compile time issue in the SDK - both 10 and 11:
The file ./examples/ble_central/ble_app_hrs_c/main.c
needs:
#include "app_uart.h"
For it to compile correctly.
I noticed the following compile time issue in the SDK - both 10 and 11:
The file ./examples/ble_central/ble_app_hrs_c/main.c
needs:
#include "app_uart.h"
For it to compile correctly.
Compiles very well with Keil. What setup are you using?
ARM GCC.
The SDK does in fact compile as delivered. I do have one difference: -DNRF_LOG_USES_RTT instead of -DNRF_LOG_USES_UART
I think that broke it. No source changes.
That does not change anything for me (compiles fine with armgcc with both flags). Also those flags are not present in SDK 10 example makefile.
You're going to make me work for this!
Found my missing flag: CFLAGS += -DBSP_UART_SUPPORT
Then it compiles. I was wrong.
Thanks - I should have tried that first.