In nrf51_sdk_v4_4_1_31827\nrf51822\Source\console\console.c,
#include "uart_legacy.h"
But there is no "uart_legacy.h" file in the SDK.
I have to modify to "app_uart.h" and change the uart interface functions by myself...
EVERY TIME :( !!!
In nrf51_sdk_v4_4_1_31827\nrf51822\Source\console\console.c,
#include "uart_legacy.h"
But there is no "uart_legacy.h" file in the SDK.
I have to modify to "app_uart.h" and change the uart interface functions by myself...
EVERY TIME :( !!!
Sorry for the late answer, but this module seems to be a leftover from an early version. It isn't really used for anything any longer, and hence isn't really tested. However, it should be fairly easy to wrap up for example simple_uart to provide more or less the same functionality currently provided by hal_uart.
I'd normally recommend using app_uart or app_uart_fifo, but if you just need UART for example for debug outputting, simple_uart() may be easier to get started with.