Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HEV - High Energy Ventilator
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
HEV - High Energy Ventilator
Commits
8ec4c010
Commit
8ec4c010
authored
4 years ago
by
Dónal Murray
Browse files
Options
Downloads
Patches
Plain Diff
Make hevclient accept any type in PAYLOAD_TYPE
parent
cc571dc4
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
raspberry-dataserver/hevclient.py
+3
-6
3 additions, 6 deletions
raspberry-dataserver/hevclient.py
with
3 additions
and
6 deletions
raspberry-dataserver/hevclient.py
+
3
−
6
View file @
8ec4c010
...
...
@@ -8,7 +8,7 @@ import time
import
json
import
threading
from
typing
import
List
,
Dict
,
Union
from
CommsCommon
import
PayloadFormat
from
CommsCommon
import
PayloadFormat
,
PAYLOAD_TYPE
import
logging
logging
.
basicConfig
(
level
=
logging
.
INFO
,
format
=
'
%(asctime)s - %(levelname)s - %(message)s
'
)
...
...
@@ -93,11 +93,8 @@ class HEVClient(object):
elif
payload
[
"
type
"
]
==
"
ALARM
"
:
with
self
.
_lock
:
self
.
_alarms
=
payload
[
"
ALARM
"
]
elif
payload
[
"
type
"
]
==
"
IVT
"
:
pass
elif
payload
[
"
type
"
]
==
"
DEBUG
"
:
pass
elif
payload
[
"
type
"
]
==
"
BATTERY
"
:
elif
payload
[
"
type
"
]
in
[
pt
.
name
for
pt
in
PAYLOAD_TYPE
]:
# payload type is a valid payload type
pass
else
:
raise
HEVPacketError
(
"
Invalid broadcast type
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment