ble_adv example: Remove int return value from app_main()
This commit is contained in:
parent
f7af4ddc89
commit
751736f902
1 changed files with 1 additions and 2 deletions
|
@ -197,10 +197,9 @@ void bleAdvtTask(void *pvParameters)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int app_main()
|
void app_main()
|
||||||
{
|
{
|
||||||
bt_controller_init();
|
bt_controller_init();
|
||||||
xTaskCreatePinnedToCore(&bleAdvtTask, "bleAdvtTask", 2048, NULL, 5, NULL, 0);
|
xTaskCreatePinnedToCore(&bleAdvtTask, "bleAdvtTask", 2048, NULL, 5, NULL, 0);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue