Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PYSQUARED_VERSION ?= v2.0.0-alpha-25w26-2
PYSQUARED_VERSION ?= v2.0.0-alpha-25w29
PYSQUARED ?= git+https://github.com/proveskit/pysquared@$(PYSQUARED_VERSION)
BOARD_MOUNT_POINT ?= ""
BOARD_TTY_PORT ?= ""
Expand Down
1 change: 1 addition & 0 deletions src/flight-software/lib/proveskit_rp2350_v5a/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 @@ -120,6 +120,7 @@
logger,
uhf_radio,
config.radio.license,
Counter(Register.message_count),
0.2,
)

Expand Down
11 changes: 6 additions & 5 deletions src/flight-software/repl.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@

import os

from lib.adafruit_drv2605 import DRV2605 ### This is Hacky V5a Devel Stuff###
from lib.adafruit_drv2605 import DRV2605 # This is Hacky V5a Devel Stuff###
from lib.adafruit_mcp230xx.mcp23017 import (
MCP23017, ### This is Hacky V5a Devel Stuff###
MCP23017, # This is Hacky V5a Devel Stuff###
)
from lib.adafruit_mcp9808 import MCP9808 ### This is Hacky V5a Devel Stuff###
from lib.adafruit_tca9548a import TCA9548A ### This is Hacky V5a Devel Stuff###
from lib.adafruit_veml7700 import VEML7700 ### This is Hacky V5a Devel Stuff###
from lib.adafruit_mcp9808 import MCP9808 # This is Hacky V5a Devel Stuff###
from lib.adafruit_tca9548a import TCA9548A # This is Hacky V5a Devel Stuff###
from lib.adafruit_veml7700 import VEML7700 # This is Hacky V5a Devel Stuff###

# from lib.pysquared.Big_Data import AllFaces ### This is Hacky V5a Devel Stuff###
from lib.pysquared.beacon import Beacon
Expand Down Expand Up @@ -124,6 +124,7 @@
logger,
uhf_radio,
config.radio.license,
Counter(2),
0.2,
)

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

Expand All @@ -68,6 +69,7 @@
logger,
sband_radio,
config.radio.license,
Counter(2),
0.2,
)

Expand Down