Browse Source

[Improve][Modularization][Module_OcppBackend / Module_OcppBackend20]

2021.11.26 / Folus Wen

Actions:
1. Clock align meter value message sent out logic improvement.

Files:
1. As follow commit history

Image version: D0.00.XX.XXXX.XX
Image checksum: XXXXXXXX

Hardware PWB P/N : XXXXXXX
Hardware Version : XXXXXXX
FolusWen 3 years ago
parent
commit
504aa140da

+ 5 - 5
EVSE/Modularization/ocpp20/MessageHandler.c

@@ -7074,12 +7074,12 @@ void CheckSystemValue(void)
 					}
 				}//End for AC
 			}
+		}
 
-			if(cpinitateMsg.bits[gun_index].ClockAlignMeterReq == ON)
-			{
-				sendMeterValuesRequest(gun_index, ReadingContextEnumType_Sample_Clock);
-				cpinitateMsg.bits[gun_index].ClockAlignMeterReq = OFF;
-			}
+		if(isWebsocketSendable && (cpinitateMsg.bits[gun_index].ClockAlignMeterReq == ON))
+		{
+			sendMeterValuesRequest(gun_index, ReadingContextEnumType_Sample_Clock);
+			cpinitateMsg.bits[gun_index].ClockAlignMeterReq = OFF;
 		}
 
 		// Sample period MeterValue

+ 5 - 2
EVSE/Modularization/ocppfiles/MessageHandler.c

@@ -4722,9 +4722,12 @@ void CheckSystemValue(void)
 					}
 				}//End for AC
 			}
+		}
 
-			if(reqClockAlignMeter[gun_index] == 1)
-				sendMeterValuesRequest(gun_index, ReadingContext_Sample_Clock);
+		if(isWebsocketSendable && (reqClockAlignMeter[gun_index] == 1))
+		{
+			sendMeterValuesRequest(gun_index, ReadingContext_Sample_Clock);
+			reqClockAlignMeter[gun_index] = 0;
 		}
 
 		// Sample period MeterValue

+ 5 - 2
EVSE/Modularization/ocppph/MessageHandler.c

@@ -4443,9 +4443,12 @@ void CheckSystemValue(void)
 					}
 				}//End for AC
 			}
+		}
 
-			if(reqClockAlignMeter[gun_index] == 1)
-				sendMeterValuesRequest(gun_index, ReadingContext_Sample_Clock);
+		if(isWebsocketSendable && (reqClockAlignMeter[gun_index] == 1))
+		{
+			sendMeterValuesRequest(gun_index, ReadingContext_Sample_Clock);
+			reqClockAlignMeter[gun_index] = 0;
 		}
 
 		// Sample period MeterValue