|
@@ -925,12 +925,126 @@ typedef union
|
|
|
|
|
|
struct DC_METER_INFO
|
|
|
{
|
|
|
- double presetVoltage; // resolution: 1.000v
|
|
|
- double presentCurrent; // resolution: 1.000a
|
|
|
- double presentPower; // resolution: 1.000kw
|
|
|
- double totlizeImportEnergy; // resolution: 1.000kwh
|
|
|
- double totlizeExportEnergy; // resolution: 1.000kwh
|
|
|
- unsigned char LinkStatus; // 0 = unknow ,1 = link , 2 miss link
|
|
|
+ double presetVoltage; // resolution: 1.000v
|
|
|
+ double presentCurrent; // resolution: 1.000a
|
|
|
+ double presentPower; // resolution: 1.000kw
|
|
|
+ double totlizeImportEnergy; // resolution: 1.000kwh
|
|
|
+ double totlizeExportEnergy; // resolution: 1.000kwh
|
|
|
+ unsigned char timestamp[32];
|
|
|
+ uint8_t LinkStatus; // 0 = unknow ,1 = link , 2 miss link
|
|
|
+};
|
|
|
+
|
|
|
+typedef union
|
|
|
+{
|
|
|
+ unsigned char Status;
|
|
|
+ struct
|
|
|
+ {
|
|
|
+ unsigned char suLinkStatusIsOk:1;
|
|
|
+ unsigned char muFatalErrorOccured:1;
|
|
|
+ unsigned char transactionIsOnGoing:1;
|
|
|
+ unsigned char tamperingIsDetected:1;
|
|
|
+ unsigned char timeSyncStatusIsOk:1;
|
|
|
+ unsigned char overTemperatureIsDetected:1;
|
|
|
+ unsigned char reversedVoltage:1;
|
|
|
+ unsigned char suMeasureFailureOccurred:1;
|
|
|
+ }bits;
|
|
|
+
|
|
|
+}DcmbStatusFlag;
|
|
|
+
|
|
|
+typedef union
|
|
|
+{
|
|
|
+ unsigned char Errors;
|
|
|
+ struct
|
|
|
+ {
|
|
|
+ unsigned char muInitIsFailed:1;
|
|
|
+ unsigned char suStateIsInvalid:1;
|
|
|
+ unsigned char versionCheckIsFailed:1;
|
|
|
+ unsigned char muRngInitIsFailed:1;
|
|
|
+ unsigned char muDataIntegrityIsFailed:1;
|
|
|
+ unsigned char muFwIntegrityIsFailed:1;
|
|
|
+ unsigned char suIntegrityIsFailed:1;
|
|
|
+ unsigned char logbookIntegrityIsFailed:1;
|
|
|
+ unsigned char logbookIsFull:1;
|
|
|
+ unsigned char memoryAccessIsFailed:1;
|
|
|
+ unsigned char muStateIsFailed:1;
|
|
|
+ unsigned char res:5;
|
|
|
+ }bits;
|
|
|
+
|
|
|
+}DcmbErrorFlag;
|
|
|
+
|
|
|
+struct DC_METER_STATUS_INFO
|
|
|
+{
|
|
|
+ unsigned short StatusValue;
|
|
|
+ DcmbStatusFlag MeterStatusFlag;
|
|
|
+
|
|
|
+ unsigned char applicationFirmwareVersion[16];
|
|
|
+ unsigned char applicationFirmwareAuthTag[32];
|
|
|
+ unsigned char legalFirmwareVersion[16];
|
|
|
+ unsigned char legalFirmwareAuthTag[32];
|
|
|
+ unsigned char sensorFirmwareVersion[16];
|
|
|
+ unsigned char sensorFirmwareCrc[4];
|
|
|
+
|
|
|
+ unsigned char Systime[32];
|
|
|
+ unsigned char ipAddress[32];
|
|
|
+ unsigned char meterId[32];
|
|
|
+
|
|
|
+ unsigned short ErrorValue;
|
|
|
+ DcmbErrorFlag MeterErrorFlag;
|
|
|
+
|
|
|
+ unsigned char publicKey[140];
|
|
|
+ unsigned char publicKeyOcmf[200];
|
|
|
+ unsigned short indexOfLastTransaction;
|
|
|
+ unsigned short numberOfStoredTransactions;
|
|
|
+};
|
|
|
+
|
|
|
+struct DC_METER_TRANSACTION_HEAD
|
|
|
+{
|
|
|
+ unsigned char evseId[32];
|
|
|
+ unsigned char transactionId[32];
|
|
|
+ unsigned char clientId[32];
|
|
|
+ unsigned short tariffId;
|
|
|
+ unsigned short cableId;
|
|
|
+ unsigned short userData[32];
|
|
|
+
|
|
|
+};
|
|
|
+
|
|
|
+struct DC_METER_TRANSACTION_ACTION
|
|
|
+{
|
|
|
+ struct DC_METER_TRANSACTION_HEAD head;
|
|
|
+ unsigned char transactionOCMF[512];
|
|
|
+ unsigned char OcmfInfoReady; // 0 = nothing, 1 = ocmp info ready
|
|
|
+ unsigned char ActionCmd; // 1 = transaction Start, 2 transaction Stop, sync time
|
|
|
+};
|
|
|
+
|
|
|
+typedef union
|
|
|
+{
|
|
|
+ unsigned char Status;
|
|
|
+ struct
|
|
|
+ {
|
|
|
+ unsigned char intermediateRead:1;
|
|
|
+ unsigned char res:7;
|
|
|
+ }bits;
|
|
|
+
|
|
|
+}DcmbTransactionReadlevel;
|
|
|
+
|
|
|
+struct DC_METER_TRANSACTION_RESULT
|
|
|
+{
|
|
|
+ unsigned short paginationCounter;
|
|
|
+ struct DC_METER_TRANSACTION_HEAD head;
|
|
|
+ unsigned char timestampStart[32];
|
|
|
+ unsigned char timestampStop[32];
|
|
|
+ unsigned int transactionDuration;
|
|
|
+ DcmbTransactionReadlevel intermediateRead;
|
|
|
+ unsigned int transactionStatus;
|
|
|
+ unsigned char energyUnit[8];
|
|
|
+ double energyImport;
|
|
|
+ double energyImportTotalStart;
|
|
|
+ double energyImportTotalStop;
|
|
|
+ double energyExport;
|
|
|
+ double energyExportTotalStart;
|
|
|
+ double energyExportTotalStop;
|
|
|
+ unsigned char signature[140];
|
|
|
+ //unsigned char transactionOCMF[512];
|
|
|
};
|
|
|
|
|
|
typedef struct Bazel8Command
|
|
@@ -1081,6 +1195,10 @@ struct SysInfoData
|
|
|
CabinetSettingFlag CabinetSetting;
|
|
|
struct LocalSharingInfo localSharingInfo; // Local power sharing info structure
|
|
|
struct DC_METER_INFO DcMeterInfo[4];
|
|
|
+ struct DC_METER_STATUS_INFO DcMeterStatusInfo[4];
|
|
|
+ struct DC_METER_TRANSACTION_ACTION DcMeterReadTransactionRecord[4];
|
|
|
+ struct DC_METER_TRANSACTION_ACTION DcMeterTransactionAction[4];
|
|
|
+ struct DC_METER_TRANSACTION_RESULT DcMeterTransactionResult[4];
|
|
|
unsigned char OTPTemp; // OTP Temperature
|
|
|
unsigned char OTPTempR; // OTP Recovery Temperature
|
|
|
struct LCD_OVERRIDE LcdOveride; // LCD override info (no use anymore)
|