Search found 1 match

by lanealucy
Tue May 08, 2018 3:21 pm
Forum: General Discussion
Topic: (eTaskGetState)- assert failed!
Replies: 1
Views: 4262

(eTaskGetState)- assert failed!

static void periodic_check( void * pvParameters ) { const TickType_t xDelay = ((int)pvParameters * 1000) / portTICK_PERIOD_MS; for( ;; ) { check_for_update(); vTaskDelay( xDelay ); } } void otaau_start_timedUpdateCheck(int secconds) { xTaskCreate(&periodic_check, "periodic_check", 8192, secconds, 5...