Hello i use the example ble_app_beacon_s130_pca10028, i'll try to add UART functions, but they not work anybody has this problem, please help me!!
int main(void) { uint32_t err_code; // Initialize. APP_TIMER_INIT(APP_TIMER_PRESCALER, APP_TIMER_OP_QUEUE_SIZE, false);
err_code = bsp_init(BSP_INIT_LED, APP_TIMER_TICKS(100, APP_TIMER_PRESCALER), NULL);
APP_ERROR_CHECK(err_code);
uart_init();
ble_stack_init();
advertising_init();
printf("Starting...");
advertising_start();
// Enter main loop.
for (;;)
{
power_manage();
}
}
Best Regards
Nelson