Skip to main content
Open topic with navigation CAPL Functions » Smart Charging » SCC Modeling Libraries (Simulation Setup) » V2G Data Queries » EVSE Functions » SCC_GetDC_EVStatus

SCC_GetDC_EVStatus

Valid for: CANoe DE • CANoe4SW DE Note
This function can be called only within the assigned callback. The function is used to query the details of a request.

Function Syntax

void SCC_GetDC_EVStatus ( long& EVReady,
long& EVCabinConditioning,
long& EVRESSConditioning, char EVErrorCode[],
long& EVRESSSOC) // form 1
void SCC_GetDC_EVStatus ( long& EVReady, char EVErrorCode[], long& EVRESSSOC) // form 2

Description

Gets the elements of DC_EVStatus (DIN/ISO) of a received DC message.

Parameters

Form 1

  • EVReady: Gets the EVReady parameter of the DC status (via reference).
  • EVCabinConditioning: Gets the EVCabinConditioning parameter of the DC status (via reference).
  • EVRESSConditioning: Gets the EVRESSConditioning parameter of the DC status (via reference).
  • EVErrorCode: Queries the EVRESSConditioning parameter of the DC status, if contained in the message (to the given char buffer).
  • EVRESSSOC: Gets the EVRESSSOC parameter of the DC status (via reference).

Form 2

  • EVReady: Gets the EVReady parameter of the DC status (via reference).
  • EVErrorCode: Queries the EVRESSConditioning parameter of the DC status if contained in the message (to the given char buffer).
  • EVRESSSOC: Gets the EVRESSSOC parameter of the DC status (via reference).

Return Values

Example