|
@@ -2532,7 +2532,7 @@ void CheckSystemValue(void)
|
|
|
|
|
|
|
|
|
if(isWebsocketSendable &&
|
|
|
- ((server_sign == TRUE) && ((statusModeChage[gun_index] == TRUE) || ((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > (server_cycle_Status + (GunStatusInterval*gun_index))) || ((cpinitateMsg.bits[gun_index].StatusNotificationReq == 1) && ((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > 30)))) )
|
|
|
+ (((statusModeChage[gun_index] == TRUE) || ((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > (server_cycle_Status + (GunStatusInterval*gun_index))) || ((cpinitateMsg.bits[gun_index].StatusNotificationReq == 1) && ((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > 30)))) )
|
|
|
{
|
|
|
if(SystemInitial > 0)
|
|
|
SystemInitial -= 1;
|
|
@@ -3617,13 +3617,20 @@ S_FAULT =12
|
|
|
, ShmOCPP16Data->StatusNotification[gun_index].VendorId
|
|
|
, ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode);
|
|
|
|
|
|
- LWS_Send(message);
|
|
|
+ if((server_sign == TRUE))
|
|
|
+ {
|
|
|
+ LWS_Send(message);
|
|
|
|
|
|
- sprintf(tempdata, "StatusNotification,%d", (gun_index));
|
|
|
+ sprintf(tempdata, "StatusNotification,%d", (gun_index));
|
|
|
|
|
|
- if(hashmap_operation(0, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid, mapItem, tempdata/*(void**)(&mapItem)*//*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
|
|
|
+ if(hashmap_operation(0, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid, mapItem, tempdata/*(void**)(&mapItem)*//*(void**)(&mapItem)*/) == MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
|
|
|
+ {
|
|
|
+ //DEBUG_ERROR("statusNotification mapitem pass");
|
|
|
+ result = PASS;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else
|
|
|
{
|
|
|
- //DEBUG_ERROR("statusNotification mapitem pass");
|
|
|
result = PASS;
|
|
|
}
|
|
|
|