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
6350e799
Commit
6350e799
authored
4 years ago
by
Dónal Murray
Browse files
Options
Downloads
Patches
Plain Diff
Make version mismatch a critical error
parent
c9227c1b
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
raspberry-dataserver/ArduinoEmulator.py
+6
-2
6 additions, 2 deletions
raspberry-dataserver/ArduinoEmulator.py
raspberry-dataserver/CommsCommon.py
+4
-1
4 additions, 1 deletion
raspberry-dataserver/CommsCommon.py
raspberry-dataserver/CommsLLI.py
+4
-1
4 additions, 1 deletion
raspberry-dataserver/CommsLLI.py
with
14 additions
and
4 deletions
raspberry-dataserver/ArduinoEmulator.py
+
6
−
2
View file @
6350e799
...
...
@@ -9,7 +9,7 @@ import binascii
from
pathlib
import
Path
from
subprocess
import
Popen
from
CommsLLI
import
CommsLLI
from
CommsCommon
import
PayloadFormat
from
CommsCommon
import
PayloadFormat
,
HEVVersionError
# Set up logging
logging
.
basicConfig
(
format
=
'
%(asctime)s - %(levelname)s - %(message)s
'
)
...
...
@@ -32,7 +32,11 @@ class ArduinoEmulator:
await
asyncio
.
sleep
(
0.02
)
except
FileNotFoundError
:
logging
.
critical
(
"
File not found
"
)
exit
(
0
)
exit
(
1
)
except
HEVVersionError
as
e
:
logging
.
critical
(
f
"
HEVVersionError:
{
e
}
"
)
exit
(
1
)
async
def
receiver
(
self
):
payload
=
await
self
.
_lli
.
_payloadrecv
.
get
()
...
...
This diff is collapsed.
Click to expand it.
raspberry-dataserver/CommsCommon.py
+
4
−
1
View file @
6350e799
...
...
@@ -153,6 +153,9 @@ class PAYLOAD_TYPE(IntEnum):
IVT
=
8
LOGMSG
=
9
class
HEVVersionError
(
Exception
):
pass
@dataclass
class
PayloadFormat
():
# class variables excluded from init args and output dict
...
...
@@ -203,7 +206,7 @@ class PayloadFormat():
# check for mismatch between pi and microcontroller version
def
checkVersion
(
self
):
if
self
.
_RPI_VERSION
!=
self
.
version
:
raise
Exception
(
'
Version Mismatch
'
,
"
PI:
"
,
self
.
_RPI_VERSION
,
"
uC:
"
,
self
.
version
)
raise
HEVVersionError
(
'
Version Mismatch
'
,
"
PI:
"
,
self
.
_RPI_VERSION
,
"
uC:
"
,
self
.
version
)
def
getSize
(
self
)
->
int
:
return
len
(
self
.
byteArray
)
...
...
This diff is collapsed.
Click to expand it.
raspberry-dataserver/CommsLLI.py
+
4
−
1
View file @
6350e799
...
...
@@ -10,7 +10,7 @@ from collections import deque
from
enum
import
Enum
,
IntEnum
from
dataclasses
import
asdict
from
struct
import
error
as
StructError
from
CommsCommon
import
PayloadFormat
,
PAYLOAD_TYPE
from
CommsCommon
import
PayloadFormat
,
PAYLOAD_TYPE
,
HEVVersionError
from
CommsFormat
import
CommsPacket
,
CommsACK
,
CommsNACK
,
CommsChecksumError
,
generateAlarm
,
generateCmd
,
generateData
# Set up logging
...
...
@@ -198,6 +198,9 @@ class CommsLLI:
logging
.
error
(
f
"
Invalid payload:
{
payload
}
"
)
# restart/reflash/swap to redundant microcontroller?
comms_response
=
CommsNACK
(
packet
.
address
)
except
HEVVersionError
as
e
:
logging
.
critical
(
f
"
HEVVersionError:
{
e
}
"
)
exit
(
1
)
finally
:
comms_response
.
setSequenceReceive
(
packet
.
sequence_receive
)
await
self
.
sendPacket
(
comms_response
)
...
...
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