You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/quickstart.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# FC V5b Quickstart Guide
2
2
This is a quick guide that can be used to quickstart and test the core functions of the V5b Flight Controller Board!
3
3
4
-
## Firmware and Software Compatabilities
5
-
The V5b FC board uses the standard PROVES Kit software development toolchain. At this time it is cross compatible with V5a firmware but has some key incompatabilities with V5a software.
4
+
## Firmware and Software Compatibilities
5
+
The V5b FC board uses the standard PROVES Kit software development toolchain. At this time it is cross compatible with V5a firmware but has some key incompatibilities with V5a software.
6
6
7
7
You can install firmware using the manual process (drag and drop onto the RP2350 boot drive) or you can try using the following terminal command (note this command currently installs V5a firmware):
8
8
```sh
@@ -14,21 +14,21 @@ You can install software by running the following command in the root directory
14
14
make install BOARD_MOUNT_POINT="Enter the Board Mount Point Here"
15
15
```
16
16
17
-
If you want to use V5a software on a V5b board note that the enable levels of *all* the load switches are inverted. This means that although V5b boards enable their load switches by setting their `value` to `True` V5a boards enable thier load switches by setting their `value` to `False`. This can cause some surprises if not carefully checked.
17
+
If you want to use V5a software on a V5b board note that the enable levels of *all* the load switches are inverted. This means that although V5b boards enable their load switches by setting their `value` to `True` V5a boards enable their load switches by setting their `value` to `False`. This can cause some surprises if not carefully checked.
18
18
19
19
> NOTE: V5b Flight Controller Boards are still affected by the bug with the deep sleep implementation for RP2350's in CircuitPython. If your board appears to "disappear" soon after booting simply power cycle and attempt to establish a serial connection ASAP to get around this issue.
20
20
21
21
## Individual Functional Checkouts
22
-
At the moment the best way to verify individual hardware functionalities is to enter the `REPL` by interupting any running code and allowing `reply.py` to setup manual test functions. You can interupt the `main` loop with a `ctrl+c` terminal command. Note this appears to work significantly better with a dedicated serial terminal software like `Tabby` or `Warp` rather than the built in serial terminals in `VS Code` or `Cursor`.
22
+
At the moment the best way to verify individual hardware functionalities is to enter the `REPL` by interrupting any running code and allowing `reply.py` to setup manual test functions. You can interrupt the `main` loop with a `ctrl+c` terminal command. Note this appears to work significantly better with a dedicated serial terminal software like `Tabby` or `Warp` rather than the built in serial terminals in `VS Code` or `Cursor`.
23
23
24
24
Once you're in the `REPL` you'll have access to the following objects:
25
25
-`watchdog` | This component handles interaction with the external rad tolerant watchdog.
26
26
-`logger` | This component takes function outputs and formats them in `json`. Currently just prints to terminal but will soon support saving logs to the Flash Memory.
27
-
-`config` | This component interactes with `config.json` where satellite paramters are set
27
+
-`config` | This component interacts with `config.json` where satellite parameters are set
28
28
-`c` | The satellite helper class that handles resets, uptime, and mode switching.
29
-
-`sleep_helper` | This helper class provides access to deep_sleep functions. It doesn't really do anything in the REPL because the USB connection is maintained blocking deep sleep.
30
-
-`radio` | This radio is the default 437.4 Mhz RFM98PW amateur band UHF radio.
31
-
-`magnetometer` | This component encapsulates interacting with the onboard magneotmeter.
29
+
-`sleep_helper` | This helper class provides access to `deep_sleep` functions. It doesn't really do anything in the REPL because the USB connection is maintained blocking deep sleep.
30
+
-`radio` | This radio is the default 437.4 MHz RFM98PW amateur band UHF radio.
31
+
-`magnetometer` | This component encapsulates interacting with the onboard magnetometer.
32
32
-`imu` | This component interacts with the 6-dof accel and gyro Inertial Measurement Unit.
33
33
-`cdh` | This is a helper class for parsing incoming packets and commands over the radio.
34
34
-`f` | This is the legacy functions helper class.
@@ -37,7 +37,7 @@ Once you're in the `REPL` you'll have access to the following objects:
37
37
-`tca`| The TCA I2C Multiplexer, not yet added to a dedicated manager class
38
38
-`all_faces` | A scaffold implementation of interacting with data from all of the satellite solar panel faces
39
39
40
-
Ideally all of the functions in all of these objects should execute without errors when the FC board is fully connected with all other boards in the PROVES Kit. You can learn more about what functions are availible in each object by either inspecting them directly or using the following pattern in the `REPL`:
40
+
Ideally all of the functions in all of these objects should execute without errors when the FC board is fully connected with all other boards in the PROVES Kit. You can learn more about what functions are available in each object by either inspecting them directly or using the following pattern in the `REPL`:
0 commit comments