Skip to content

Commit 083872d

Browse files
committed
Merge remote-tracking branch 'origin/navigation_testing' into navigation_testing
2 parents 1e45bcb + 0b5509c commit 083872d

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"telemetry_port": 7000, "pod_address": "127.0.0.1", "heartbeat_timeout": 5000, "command_port": 6000, "pod_driver": "Simulation", "controlLaptopIpAddr": "192.168.0.2", "retrieval_timeout": 60000}
1+
{"retrieval_timeout": 60000, "telemetry_port": 7000, "command_port": 6000, "heartbeat_timeout": 5000, "pod_address": "127.0.0.1", "pod_driver": "Simulation", "controlLaptopIpAddr": "192.168.0.2"}

OnLand/ControlLaptop/templates/_cards/commands.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h4 class="title">Controls</h4>
2727
<button class="btn btn-info btn-command" type="button" data-toggle="collapse" data-target="#overridesCollapse" aria-expanded="false" aria-controls="manualControlsCollapse"> OVERRIDES </button>
2828
</div>
2929
<div class="row text-center">
30-
<button class="btn btn-info btn-command" type="button" data-toggle="collapse" data-target=".multi-collapse" aria-expanded="false" aria-controls="manualControlsCollapse"> MANUAL CONTROL </button>
30+
<button class="btn btn-info btn-command" type="button" data-toggle="collapse" data-target=".multi-collapse" aria-expanded="false" aria-controls="manualControlsCollapse"> MANUAL </button>
3131
</div>
3232
</div>
3333
</div>

OnLand/ControlLaptop/templates/tables/LVSensors.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@
1313
},
1414
"gtPack1Voltage": {
1515
"name_pretty": "GT LP Voltage [V]",
16-
"order": 6
16+
"order": 3
1717
},
1818
"gtPack2Voltage": {
1919
"name_pretty": "GT HP Voltage [V]",
20-
"order": 8
20+
"order": 4
2121
},
2222
"gtPack1Current": {
2323
"name_pretty": "GT LP Current [A]",
24-
"order": 7
24+
"order": 5
2525
},
2626
"gtPack2Current": {
2727
"name_pretty": "GT HP Current [A]",
28-
"order": 9
28+
"order": 6
2929
}
3030
}

OnLand/ControlLaptop/templates/tables/SensorRanges.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
},
112112
"maxIgbtTemperature": {
113113
"psBooting": [0,0],
114-
"psStandby": [10,100],
114+
"psStandby": [0,0],
115115
"psArming" : [10,100],
116116
"psArmed" : [10,100],
117117
"psPreFlight" : [10,150],
@@ -122,7 +122,7 @@
122122
},
123123
"gateDriverTemperature": {
124124
"psBooting": [0,0],
125-
"psStandby": [10,80],
125+
"psStandby": [0,0],
126126
"psArming" : [10,80],
127127
"psArmed" : [10,80],
128128
"psPreFlight" : [10,80],
@@ -133,7 +133,7 @@
133133
},
134134
"inverterControlBoardTemperature": {
135135
"psBooting": [0,0],
136-
"psStandby": [10,80],
136+
"psStandby": [0,0],
137137
"psArming" : [10,80],
138138
"psArmed" : [10,80],
139139
"psPreFlight" : [10,80],
@@ -144,7 +144,7 @@
144144
},
145145
"motorTemperature": {
146146
"psBooting": [0,0],
147-
"psStandby": [15,40],
147+
"psStandby": [0,0],
148148
"psArming" : [15,40],
149149
"psArmed" : [15,40],
150150
"psPreFlight" : [15,40],
@@ -406,14 +406,14 @@
406406
"psNone" : [0,0]
407407
},
408408
"gtPack2Current": {
409-
"psBooting": [0,0],
410-
"psStandby": [0,0],
411-
"psArming" : [0,0],
412-
"psArmed" : [0,0],
413-
"psPreFlight" : [0,0],
414-
"psAcceleration": [0,0],
415-
"psCoasting": [0,0],
416-
"psBraking" : [0,0],
409+
"psBooting": [0.1,1],
410+
"psStandby": [0,2],
411+
"psArming" : [0,2],
412+
"psArmed" : [0,2],
413+
"psPreFlight" : [0.1,2],
414+
"psAcceleration": [0.1,10],
415+
"psCoasting": [0.1,10],
416+
"psBraking" : [0,10],
417417
"psNone" : [0,0]
418418
}
419419
}

OnLand/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# Udp Telemetry Stream
2121
UDP_TELEM_TIMEOUT = 3 # How long to wait without receiving telemetry before deciding connection is lost
2222
UDP_TELEM_PORT = 7000 # Control Server Port to receive telemetry over
23-
TELEMETRY_BROADCAST_FREQUENCY = 500 # Minimum time between telemetry broadcasts
23+
TELEMETRY_BROADCAST_FREQUENCY = 1000 # Minimum time between telemetry broadcasts
2424

2525

2626
# SocketIO

0 commit comments

Comments
 (0)