Skip to content

Commit daa34e7

Browse files
OCPP-2.0.1-add-additional-reason-codes-from-v1.3 (#520)
1 parent 06e13d7 commit daa34e7

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change log
22

3+
4+
- [#518](https://github.com/mobilityhouse/ocpp/issues/518) OCPP 2.0.1 add additional reason codes from v1.3
5+
=======
36
## 0.24.0 (2023-12-07)
47

58
- [#539](https://github.com/mobilityhouse/ocpp/issues/539) feat: Add ChargePoint._handle_call return value. Thanks [@wafa-yah](https://github.com/wafa-yah)

ocpp/v201/enums.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,9 @@ class UnitOfMeasureType(str, Enum):
12841284

12851285

12861286
class StatusInfoReasonType(str, Enum):
1287-
"""Standardized reason codes for StatusInfo defined in Appendix 5."""
1287+
"""
1288+
Standardized reason codes for StatusInfo defined in Appendix 5. v1.3
1289+
"""
12881290

12891291
cs_not_accepted = "CSNotAccepted"
12901292
duplicate_profile = "DuplicateProfile"
@@ -1295,11 +1297,13 @@ class StatusInfoReasonType(str, Enum):
12951297
invalid_certificate = "InvalidCertificate"
12961298
invalid_csr = "InvalidCSR"
12971299
invalid_id_token = "InvalidIdToken"
1300+
invalid_message_sequence = "InvalidMessageSequence"
12981301
invalid_profile = "InvalidProfile"
12991302
invaild_schedule = "InvalidSchedule"
13001303
invalid_stack_level = "InvalidStackLevel"
13011304
invalid_url = "InvalidURL"
13021305
invalid_value = "InvalidValue"
1306+
missing_device_model_info = "MissingDeviceModelInfo"
13031307
missing_param = "MissingParam"
13041308
no_cable = "NoCable"
13051309
no_error = "NoError"

0 commit comments

Comments
 (0)