- Remove vendor-specific ChargingStation.WebSocketPingInterval entry
from README (already listed under OCPPCommCtrlr per OCPP 2.0.1 spec)
- Use Constants.DEFAULT_WEBSOCKET_PING_INTERVAL in OCPPCommCtrlr registry
entry instead of hardcoded '30' for single source of truth
- :white_check_mark: Model (type: string) (units: -)
- :white_check_mark: SupplyPhases (type: integer) (units: -)
- :white_check_mark: VendorName (type: string) (units: -)
-- :white_check_mark: WebSocketPingInterval (type: integer) (units: seconds) **(vendor-specific)**
#### ClockCtrlr
allowZero: true,
component: OCPP20ComponentName.OCPPCommCtrlr,
dataType: DataEnumType.integer,
- defaultValue: '30',
+ defaultValue: Constants.DEFAULT_WEBSOCKET_PING_INTERVAL.toString(),
description:
'0 disables client side websocket Ping/Pong. Positive values are interpreted as number of seconds between pings. Negative values are not allowed.',
min: 0,