I use nRF51 DK and soft device s130.
I nedd to add a file ("app_uart_fifo.c") in the example of multilink central, after i add the file i build the proyect but the files .h never being created. I have to do something more?

I use nRF51 DK and soft device s130.
I nedd to add a file ("app_uart_fifo.c") in the example of multilink central, after i add the file i build the proyect but the files .h never being created. I have to do something more?

You need to include the app_uart.h file to your project and add the path to the header file:
..\..\..\..\..\..\components\libraries\uart\ to the include path.#include "app_uart.h" near the top of the main.c file (or in whatever file you will be using the UART library).You need to include the app_uart.h file to your project and add the path to the header file:
..\..\..\..\..\..\components\libraries\uart\ to the include path.#include "app_uart.h" near the top of the main.c file (or in whatever file you will be using the UART library).Jorgen i just do that, but this don't solve my problem.
I have to use the function "app_uart_put()". I write an answer more explicit above
If you want to use printf() function for UART, you need to add retarget.c to your project as well.