|
@@ -990,6 +990,7 @@ int main(int argc, char *argv[]) {
|
|
char *OcppServerURL=NULL;
|
|
char *OcppServerURL=NULL;
|
|
char *ChargeBoxId=NULL;
|
|
char *ChargeBoxId=NULL;
|
|
char *chargePointVendor=NULL;
|
|
char *chargePointVendor=NULL;
|
|
|
|
+ int isEnableLocalPowerSharging=0;
|
|
|
|
|
|
if( json_object_object_get_ex(jobj, "BackendConnTimeout", &val_obj) ) {
|
|
if( json_object_object_get_ex(jobj, "BackendConnTimeout", &val_obj) ) {
|
|
BackendConnTimeout = json_object_get_int(val_obj);
|
|
BackendConnTimeout = json_object_get_int(val_obj);
|
|
@@ -1019,6 +1020,10 @@ int main(int argc, char *argv[]) {
|
|
chargePointVendor = (char*)json_object_get_string(val_obj);
|
|
chargePointVendor = (char*)json_object_get_string(val_obj);
|
|
strcpy((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor,chargePointVendor);
|
|
strcpy((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor,chargePointVendor);
|
|
}
|
|
}
|
|
|
|
+ if( json_object_object_get_ex(jobj, "isEnableLocalPowerSharging", &val_obj) ) {
|
|
|
|
+ isEnableLocalPowerSharging = json_object_get_int(val_obj);
|
|
|
|
+ ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharging = isEnableLocalPowerSharging;
|
|
|
|
+ }
|
|
|
|
|
|
}
|
|
}
|
|
struct SysConfigData SysConfig;
|
|
struct SysConfigData SysConfig;
|
|
@@ -1546,6 +1551,7 @@ int main(int argc, char *argv[]) {
|
|
struct json_object *OcppServerURL;
|
|
struct json_object *OcppServerURL;
|
|
struct json_object *ChargeBoxId;
|
|
struct json_object *ChargeBoxId;
|
|
struct json_object *chargePointVendor;
|
|
struct json_object *chargePointVendor;
|
|
|
|
+ struct json_object *isEnableLocalPowerSharging;
|
|
|
|
|
|
jobj1=json_object_new_object();
|
|
jobj1=json_object_new_object();
|
|
jobj2=json_object_new_object();
|
|
jobj2=json_object_new_object();
|
|
@@ -2087,6 +2093,9 @@ int main(int argc, char *argv[]) {
|
|
OcppServerURL = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL);
|
|
OcppServerURL = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL);
|
|
ChargeBoxId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
|
|
ChargeBoxId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
|
|
chargePointVendor = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor);
|
|
chargePointVendor = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.chargePointVendor);
|
|
|
|
+ if(strcmp(IsDO, "AX") == 0){
|
|
|
|
+ isEnableLocalPowerSharging = json_object_new_int(ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharging);
|
|
|
|
+ }
|
|
|
|
|
|
//system
|
|
//system
|
|
json_object_object_add(jobj1,"ModelName",ModelName);
|
|
json_object_object_add(jobj1,"ModelName",ModelName);
|
|
@@ -2421,6 +2430,9 @@ int main(int argc, char *argv[]) {
|
|
json_object_object_add(jobj4,"OcppServerURL",OcppServerURL);
|
|
json_object_object_add(jobj4,"OcppServerURL",OcppServerURL);
|
|
json_object_object_add(jobj4,"ChargeBoxId",ChargeBoxId);
|
|
json_object_object_add(jobj4,"ChargeBoxId",ChargeBoxId);
|
|
json_object_object_add(jobj4,"chargePointVendor",chargePointVendor);
|
|
json_object_object_add(jobj4,"chargePointVendor",chargePointVendor);
|
|
|
|
+ if(strcmp(IsDO, "AX") == 0){
|
|
|
|
+ json_object_object_add(jobj4,"isEnableLocalPowerSharging",isEnableLocalPowerSharging);
|
|
|
|
+ }
|
|
printf("%s\n", json_object_to_json_string(jobj4));
|
|
printf("%s\n", json_object_to_json_string(jobj4));
|
|
json_object_put(jobj4);
|
|
json_object_put(jobj4);
|
|
}
|
|
}
|