You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Las tareas no se inician cuando las EEPROM no están a bordo, debido a que hay una lectura de estado que causa un loop infinito antes de iniciar el funcionamiento efectivo.
Ejemplo TaskConsole.c
/*Avoid the acummulation of commands while the SUCHAI is still deploying.. */
#if (SCH_THOUSEKEEPING_USE == 1)
portTickType xLastWakeTime = xTaskGetTickCount();
portTickType check_deployment_time = (10000) / portTICK_RATE_MS; /* check every 10sec */
while( TRUE ){
/* TODO: Infinite loop if EEPROM is not onboard */
if( sta_get_BusStateVar(sta_dep_ant_deployed)==1 ){
break;
}
vTaskDelayUntil(&xLastWakeTime, check_deployment_time);
}
#endif
Las tareas no se inician cuando las EEPROM no están a bordo, debido a que hay una lectura de estado que causa un loop infinito antes de iniciar el funcionamiento efectivo.
Ejemplo TaskConsole.c
Relacionado: #23
The text was updated successfully, but these errors were encountered: