|
@@ -2381,6 +2381,7 @@ struct PsuGroupData
|
|
|
/*Following is the information for system all PSU*/
|
|
|
struct PsuData
|
|
|
{
|
|
|
+ unsigned char SystemInitialPsuQuantity; // psu quantity after ac/dc contactor on
|
|
|
unsigned char SystemPresentPsuQuantity;
|
|
|
unsigned short SystemAvailableCurrent; //abcd=abc.d amp
|
|
|
unsigned int SystemAvailablePower; //Watt
|
|
@@ -5553,7 +5554,7 @@ struct StatusInfoType
|
|
|
*/
|
|
|
struct Authorize_20
|
|
|
{
|
|
|
- unsigned char certificate[5601]; // Optional. The X.509 certificated presented by EV for authorization.
|
|
|
+ unsigned char certificate[5601]; // Optional. The X.509 certificated presented by EV for authorization.
|
|
|
struct IdTokenType idToken; // Required. This contains the identifier that needs to be authorized.
|
|
|
struct OCSPRequestDataType iso15118CertificateHashData[4]; // Optional. Contains the information needed to verify the EV Contract Certificate via OCSP.
|
|
|
unsigned char Response_certificateStatus[32]; // Optional. Certificate status information. - if all certificates are valid: return 'Accepted'. - if one of the certificates was revoked, return 'CertificateRevoked'.
|
|
@@ -6283,14 +6284,14 @@ struct OCPP20Data
|
|
|
struct
|
|
|
{
|
|
|
//CSUMsgValue[0]
|
|
|
- unsigned char ChargingProfileReq:1; //bit 0,
|
|
|
- unsigned char ChargingProfileConf:1; //bit 1
|
|
|
- unsigned char ClearedChargingLimitReq :1; //bit 2
|
|
|
- unsigned char ClearedChargingLimitConf :1; //bit 3
|
|
|
- unsigned char NotifyEVChargingNeedsReq :1; //bit 4
|
|
|
- unsigned char NotifyEVChargingNeedsConf :1; //bit 5
|
|
|
- unsigned char NotifyEVChargingScheduleReq:1; //bit 6
|
|
|
- unsigned char NotifyEVChargingScheduleConf:1; //bit 7
|
|
|
+ unsigned char ChargingProfileReq:1; //bit 0
|
|
|
+ unsigned char ChargingProfileConf:1; //bit 1
|
|
|
+ unsigned char ClearedChargingLimitReq :1; //bit 2
|
|
|
+ unsigned char ClearedChargingLimitConf :1; //bit 3
|
|
|
+ unsigned char NotifyEVChargingNeedsReq :1; //bit 4
|
|
|
+ unsigned char NotifyEVChargingNeedsConf :1; //bit 5
|
|
|
+ unsigned char NotifyEVChargingScheduleReq:1; //bit 6
|
|
|
+ unsigned char NotifyEVChargingScheduleConf:1; //bit 7
|
|
|
} bits[CONNECTOR_QUANTITY];
|
|
|
}CSUMsg;
|
|
|
|