mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-06 22:24:33 +02:00
ble_adv example: Remove int return value from app_main()
This commit is contained in:
@@ -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;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user