ChkCreate_ADASEgoVehicleLaneViolation, ChkStart_ADASEgoVehicleLaneViolation
Valid for: CANoe DE • CANoe4SW DEFunction Syntax
dword chkCreate_ADASEgoVehicleLaneViolation(); //form 1dword chkCreate_ADASEgoVehicleLaneViolation(char* callback); //form 2dword chkStart_ADASEgoVehicleLaneViolation(); //form 3dword chkStart_ADASEgoVehicleLaneViolation(char* callback); //form 4
Constructor
TestCheck::CreateADASEgoVehicleLaneViolation();TestCheck::CreateADASEgoVehicleLaneViolation(char* callback);TestCheck::StartADASEgoVehicleLaneViolation();TestCheck::StartADASEgoVehicleLaneViolation(char* callback);
Check Name
ADAS EgoLane ObservationDescription
Observes the lane of the EgoVehicle. The check fires an event if the EgoVehicle leaves its lane.Parameters
- callback: This parameter is optional.
- Name of the callback which is called when the check fails.
- Signature:
void Callback( dword checkId )orvoid Callback( TestCheck check )
Return Values
- 0: Check could not be created and must not be referenced.
- > 0: Check was created successfully and may be referenced using the returned (handle-) value.
Possible Errors
- EgoVehicle is undefined.
- CAPL callback does not exist.