Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"battery_voltage": 5.2,
"critical_battery_voltage": 6.6,
"cubesat_name": "PROVES-MY_SATELLITE_NAME",
"current_draw": 240.5,
"debug": true,
"degraded_battery_voltage": 5.4,
"detumble_enable_x": true,
"detumble_enable_y": true,
"detumble_enable_z": true,
Expand Down
1 change: 1 addition & 0 deletions src/flight-software/lib/proveskit_rp2040_v4/register.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
class Register:
boot_count = 0
error_count = 1
message_count = 2
1 change: 1 addition & 0 deletions src/flight-software/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
logger,
radio,
config.radio.license,
Counter(Register.message_count),
0.2,
)

Expand Down
1 change: 1 addition & 0 deletions src/ground-station/repl.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
logger,
radio,
config.radio.license,
Counter(2),
0.2,
)

Expand Down
Loading