diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-09-09 13:16:42 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-09-09 13:16:42 +0200 |
| commit | cfa677a0c678f742203aea601c6368768e5467da (patch) | |
| tree | be42cf52fc912a6ca78d334039d47cfb591e9e43 /esds/rcode.py | |
| parent | 57f020e09d738e283520e8cfc88b4cdd1aeaa551 (diff) | |
Debug synchronization + add return code
Diffstat (limited to 'esds/rcode.py')
| -rw-r--r-- | esds/rcode.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/esds/rcode.py b/esds/rcode.py new file mode 100644 index 0000000..f4ca775 --- /dev/null +++ b/esds/rcode.py @@ -0,0 +1,9 @@ +from enum import Enum + +class RCode(Enum): + SUCCESS = 0 + FAIL = 1 + TIMEOUT_EXPIRE = 2 + RECEIVER_TURNED_OFF = 3 + RECEIVER_UNAVAILABLE = 4 + |
