Merge branch 'feature/cleanup_examples' into 'master'

Minor example cleanup

Remove deprecated system_init, fix app_main prototype

See merge request !197
This commit is contained in:
Angus Gratton 2016-11-15 07:08:33 +08:00
commit c36a3e7d06
6 changed files with 1 additions and 7 deletions

View file

@ -27,6 +27,5 @@ void hello_task(void *pvParameter)
void app_main()
{
nvs_flash_init();
system_init();
xTaskCreate(&hello_task, "hello_task", 2048, NULL, 5, NULL);
}

View file

@ -43,6 +43,5 @@ void blink_task(void *pvParameter)
void app_main()
{
nvs_flash_init();
system_init();
xTaskCreate(&blink_task, "blink_task", 512, NULL, 5, NULL);
}

View file

@ -175,7 +175,6 @@ static void http_get_task(void *pvParameters)
void app_main()
{
nvs_flash_init();
system_init();
initialise_wifi();
xTaskCreate(&http_get_task, "http_get_task", 2048, NULL, 5, NULL);
}

View file

@ -369,7 +369,6 @@ static void https_get_task(void *pvParameters)
void app_main()
{
nvs_flash_init();
system_init();
initialise_wifi();
xTaskCreate(&https_get_task, "https_get_task", 8192, NULL, 5, NULL);
}

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;
}

View file

@ -94,7 +94,6 @@ void app_main()
static void obtain_time(void)
{
nvs_flash_init();
system_init();
initialise_wifi();
xEventGroupWaitBits(wifi_event_group, CONNECTED_BIT,
false, true, portMAX_DELAY);