1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

OP-1122 OP-1145 commented out PIOS_DEBUGLOG_Printf calls in pathplanner

+review OPReview-609
This commit is contained in:
Philippe Renon 2014-01-14 20:49:19 +01:00
parent c8cb666271
commit 8ccdb252d1

View File

@ -257,7 +257,7 @@ static void pathPlannerTask()
}
}
// safety check for path plan integrity
// safety checks for path plan integrity
static uint8_t checkPathPlan()
{
uint16_t i;
@ -273,11 +273,11 @@ static uint8_t checkPathPlan()
// check count consistency
if (waypointCount > UAVObjGetNumInstances(WaypointHandle())) {
PIOS_DEBUGLOG_Printf("FlighPlan : waypoint count error!");
//PIOS_DEBUGLOG_Printf("PathPlan : waypoint count error!");
return false;
}
if (actionCount > UAVObjGetNumInstances(PathActionHandle())) {
PIOS_DEBUGLOG_Printf("FlighPlan : path action count error!");
//PIOS_DEBUGLOG_Printf("PathPlan : path action count error!");
return false;
}
@ -290,12 +290,12 @@ static uint8_t checkPathPlan()
pathCrc = UAVObjUpdateCRC(PathActionHandle(), i, pathCrc);
}
if (pathCrc != pathPlan.Crc) {
PIOS_DEBUGLOG_Printf("FlighPlan : bad CRC (%d / %d)!", pathCrc, pathPlan.Crc);
// failed crc check
//PIOS_DEBUGLOG_Printf("PathPlan : bad CRC (%d / %d)!", pathCrc, pathPlan.Crc);
return false;
}
// everything ok (hopefully...)
PIOS_DEBUGLOG_Printf("FlighPlan : passed consistency check.", pathCrc, pathPlan.Crc);
// path plan passed checks
return true;
}