ble_adv example: Remove int return value from app_main()

This commit is contained in:
Angus Gratton 2016-11-14 15:55:26 +11:00
parent f7af4ddc89
commit 751736f902

View File

@ -197,10 +197,9 @@ void bleAdvtTask(void *pvParameters)
}
}
int app_main()
void app_main()
{
bt_controller_init();
xTaskCreatePinnedToCore(&bleAdvtTask, "bleAdvtTask", 2048, NULL, 5, NULL, 0);
return 0;
}