Skip to content

Commit 811fce2

Browse files
Mikefly123Copilotineskhou
authored
Introducing File System Validation Tools (#270)
Signed-off-by: Michael Pham <[email protected]> Co-authored-by: Copilot <[email protected]> Co-authored-by: ineskhou <[email protected]> Co-authored-by: ineskhou <[email protected]> Co-authored-by: ineskhou <[email protected]>
1 parent 4b76bc5 commit 811fce2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1472
-7
lines changed

circuitpython-workspaces/flight-software/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ dependencies = [
1616
"adafruit-circuitpython-tca9548a @ git+https://github.com/proveskit/[email protected]",
1717
"adafruit-circuitpython-ticks==1.1.1",
1818
"adafruit-circuitpython-veml7700==2.1.4",
19-
"proves-circuitpython-rv3028 @ git+https://github.com/proveskit/[email protected]",
2019
"proves-circuitpython-sx126 @ git+https://github.com/proveskit/[email protected]",
2120
"proves-circuitpython-sx1280 @ git+https://github.com/proveskit/[email protected]",
2221
]

circuitpython-workspaces/flight-software/src/pysquared/rtc/manager/rv3028.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"""
1515

1616
from busio import I2C
17-
from rv3028.rv3028 import RV3028
17+
from mocks.rv3028.rv3028 import RV3028
1818

1919
from ...hardware.exception import HardwareInitializationError
2020
from ...logger import Logger

cpython-workspaces/flight-software-unit-tests/src/unit-tests/hardware/burnwire/manager/test_burnwire.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
import pytest
1111
from digitalio import DigitalInOut
12+
1213
from pysquared.hardware.burnwire.manager.burnwire import BurnwireManager
1314
from pysquared.logger import Logger
1415

cpython-workspaces/flight-software-unit-tests/src/unit-tests/hardware/imu/manager/test_lsm6dsox_manager.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import pytest
1313
from busio import I2C
1414
from mocks.adafruit_lsm6ds.lsm6dsox import LSM6DSOX
15+
1516
from pysquared.hardware.exception import HardwareInitializationError
1617
from pysquared.hardware.imu.manager.lsm6dsox import LSM6DSOXManager
1718
from pysquared.logger import Logger

cpython-workspaces/flight-software-unit-tests/src/unit-tests/hardware/light_sensor/manager/test_veml7700_manager.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from unittest.mock import MagicMock, PropertyMock, patch
55

66
import pytest
7+
78
from pysquared.hardware.exception import HardwareInitializationError
89
from pysquared.hardware.light_sensor.manager.veml7700 import VEML7700Manager
910
from pysquared.logger import Logger

cpython-workspaces/flight-software-unit-tests/src/unit-tests/hardware/magnetometer/manager/test_lis2mdl_manager.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from unittest.mock import MagicMock, PropertyMock, patch
1010

1111
import pytest
12+
1213
from pysquared.hardware.exception import HardwareInitializationError
1314
from pysquared.hardware.magnetometer.manager.lis2mdl import LIS2MDLManager
1415
from pysquared.sensor_reading.error import (

cpython-workspaces/flight-software-unit-tests/src/unit-tests/hardware/power_monitor/manager/test_ina219_manager.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
import pytest
1212
from mocks.adafruit_ina219.ina219 import INA219
13+
1314
from pysquared.hardware.exception import HardwareInitializationError
1415
from pysquared.hardware.power_monitor.manager.ina219 import INA219Manager
1516
from pysquared.sensor_reading.current import Current

cpython-workspaces/flight-software-unit-tests/src/unit-tests/hardware/radio/manager/test_radio_base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"""
77

88
import pytest
9+
910
from pysquared.hardware.radio.manager.base import BaseRadioManager
1011
from pysquared.hardware.radio.modulation import LoRa
1112

cpython-workspaces/flight-software-unit-tests/src/unit-tests/hardware/radio/manager/test_rfm9x_manager.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
from digitalio import DigitalInOut
1717
from mocks.adafruit_rfm.rfm9x import RFM9x as MockRFM9x
1818
from mocks.adafruit_rfm.rfm9xfsk import RFM9xFSK as MockRFM9xFSK
19+
1920
from pysquared.config.radio import RadioConfig
2021
from pysquared.hardware.exception import HardwareInitializationError
2122
from pysquared.hardware.radio.modulation import FSK, LoRa

cpython-workspaces/flight-software-unit-tests/src/unit-tests/hardware/radio/manager/test_sx126x_manager.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
from digitalio import DigitalInOut
1414
from mocks.proves_sx126.sx126x import ERR_NONE
1515
from mocks.proves_sx126.sx1262 import SX1262
16+
1617
from pysquared.config.radio import RadioConfig
1718
from pysquared.hardware.exception import HardwareInitializationError
1819
from pysquared.hardware.radio.manager.sx126x import SX126xManager

0 commit comments

Comments
 (0)