-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapplication.py
More file actions
43 lines (37 loc) · 1.4 KB
/
application.py
File metadata and controls
43 lines (37 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import connections
class application(connections):
def __init__(self):
try:
self.initializeHW()
self.initializeConnections()
self.initializeVariables()
self.setStatus()
except:
self.noFault = False
print("initialization failed")
def initializeHW(self):
#this is where you initialize hardware
print("hardware initialized")
def initializeConnections(self):
#this is where we initialize I/O
#we initialize IO and check connections using handshakes and checks
print("connection initialized")
def initializeVariables(self):
#this is where we initialize variables,
#i.e. self.SsomeVariable = defaultValue
print("variables initialized")
def setStatus(self):
self.status = True
print("status changed")
def tickfunctionality(self):
print("tick")
#Add part of the function for testing
self.noFault = False
#what it does each tick
#write to buffer
#update local values
#check values for fault codes
#set flag to run tick again
##member variables
status = False ##status as to whether variables have been initialized
noFault = True ##status as to whether any faults have been detected (True means no faults, false means fault detected)