This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

UART not work in ble_app_beacon

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

Related