-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathflash_node_id.py
executable file
·137 lines (111 loc) · 3.61 KB
/
flash_node_id.py
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#!/usr/bin/env python3
"""Flash a node id to OreSat firmware card."""
import subprocess
import sys
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
from argparse import ArgumentParser
from telnetlib import Telnet
from threading import Thread
from time import sleep
NODE_IDS = {
("battery", 1): 0x04,
("battery", 2): 0x08,
("solar_module", 1): 0x0C,
("solar_module", 2): 0x10,
("solar_module", 3): 0x14,
("solar_module", 4): 0x18,
("solar_module", 5): 0x1C,
("solar_module", 6): 0x20,
("solar_module", 7): 0x24,
("solar_module", 8): 0x28,
("adcs", 1): 0x38,
("reaction_wheel", 1): 0x3C,
("reaction_wheel", 2): 0x40,
("reaction_wheel", 3): 0x44,
("reaction_wheel", 4): 0x48,
}
CONFIG_PATH = {
"battery": "boards/BATTERY_V3/oocd.cfg",
"solar_module": "boards/SOLAR_V4/oocd.cfg",
"adcs": "boards/ORESAT_ADCS_V1_2/oocd.cfg",
"reaction_wheel": "boards/ORESAT_RWB_V4/oocd.cfg",
}
CARD_ALIASES = {
"battery": ["bat", "batt"],
"solar_module": ["solar", "sol"],
"adcs": ["imu"],
"reaction_wheel": ["rw"],
}
parser = ArgumentParser(description="Flash the node id to a OreSat firmware card")
parser.add_argument("card")
parser.add_argument("-n", "--number", type=int, default=1)
parser.add_argument("-o", "--host", default="localhost")
parser.add_argument("-p", "--port", default="4444")
args = parser.parse_args()
node_id = 0x1
card = args.card.lower().replace("-", "_")
for key, values in CARD_ALIASES.items():
if card == key:
break
elif card in values:
card = key
break
else:
print(f"failed to find card with name or alias of {args.card}")
sys.exit(1)
try:
node_id = NODE_IDS[(card, args.number)]
except KeyError:
print(f"failed to find card with name {args.card} and number {args.number}")
sys.exit(1)
proc = None
inv_node_id = 255 - node_id
value = hex(inv_node_id << 8 | node_id)
def run_openocd():
print("starting openocd")
global proc
config_path = CONFIG_PATH[card]
proc = subprocess.Popen(
["openocd", "-f", f"{config_path}"],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
)
thread = Thread(target=run_openocd)
thread.start()
sleep(2)
def telnet_write(tn: Telnet, msg: str):
tn.write(f"{msg}\r\n".encode())
sleep(0.1)
try:
with Telnet(args.host, args.port) as tn:
print("connecting with telnet")
sleep(2)
print("halting firmware")
telnet_write(tn, "halt")
print("unlocking flash")
telnet_write(tn, "mww 0x40022004 0x45670123")
telnet_write(tn, "mww 0x40022004 0xCDEF89AB")
print("unlocking option bytes for writing")
telnet_write(tn, "mww 0x40022008 0x45670123")
telnet_write(tn, "mww 0x40022008 0xCDEF89AB")
print("clearing option bytes")
telnet_write(tn, "mww 0x40022010 0x00000220")
telnet_write(tn, "mww 0x40022010 0x00000260")
print("enabling programing")
telnet_write(tn, "mww 0x40022010 0x00000210")
print("writing node id")
telnet_write(tn, "mwh 0x1ffff800 0x55AA")
telnet_write(tn, "mwh 0x1ffff802 0x00ff")
telnet_write(tn, f"mwh 0x1ffff804 {value}")
telnet_write(tn, "mwh 0x1ffff806 0x00ff")
telnet_write(tn, "mwh 0x1ffff808 0x00ff")
telnet_write(tn, "mwh 0x1ffff80a 0x00ff")
telnet_write(tn, "mwh 0x1ffff80c 0x00ff")
telnet_write(tn, "mwh 0x1ffff80e 0x00ff")
print(f"node id 0x{node_id:X} was flashed")
except OSError:
print("failed to write node id due to a telnet connection error")
sleep(0.5)
proc.terminate()
thread.join()