Skip to content

Commit 56911f0

Browse files
author
Nama Kamu
committed
fix: correct multiple typos in documentation and code
- Fix 'passthough' -> 'passthrough' in config documentation (2 files) - Fix 'agnositc' -> 'agnostic' in brainpack documentation (2 files) - Fix 'excute' -> 'execute' in game controller connector - Fix 'higer' -> 'higher' in serial reader plugin - Fix 'Nvidia' -> 'NVIDIA' in brainpack documentation (2 files) These typos were found using codespell and verified manually to ensure no unintended changes. All fixes improve code readability and documentation accuracy.
1 parent 98fea18 commit 56911f0

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

docs/developer_cookbook/config.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ You can configure any subset of the available five modes, just two, or all five,
150150

151151
#### **implementation** *string* — Optional
152152

153-
This defines the business logic, if any. If there's none defined, we use default value `passthough`.
153+
This defines the business logic, if any. If there's none defined, we use default value `passthrough`.
154154

155155
**Example: "passthrough"**
156156

docs/full_autonomy_guidelines/brainpack_introduction.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ description: "Introduction to the BrainPack"
88
- From research to real-world autonomy, the **OM1 BrainPack** is a plug-and-play module that brings full autonomy to your robots.
99
- It is designed to be mounted directly onto a robot to bring together mapping, object recognition, remote control, and self charging, giving humanoids and quadrupeds what they need to navigate, remember, and act with purpose.
1010
- The BrainPack makes your robot smarter — a system that **learns, moves, and builds with you.**
11-
- These BrainPacks provide Nvidia Thor to Unitree dogs and humanoids. Each of them comes with on open reference design, speakers, and connectivity to other sensors via Ethernet and USB, with multiple power options.
12-
- The BrainPack supports modern and future Nvidia hardware(Nvidia Thor) and software (JetPack 7.05), current and future versions of ROS2, and is robot agnositc to control different form factors.
11+
- These BrainPacks provide NVIDIA Thor to Unitree dogs and humanoids. Each of them comes with on open reference design, speakers, and connectivity to other sensors via Ethernet and USB, with multiple power options.
12+
- The BrainPack supports modern and future NVIDIA hardware and software (JetPack 7.0 with tag 38.2.1-20250910123945), current and future versions of ROS2, and are robot agnostics, and control different form factors.
1313

1414
![Architecture Diagram](../assets/brainpack.png)
1515
![Architecture Diagram](../assets/brainpack_2.png)
16-
![Architecture Diagram](../assets/G1_brainpack.png)
16+
![Architecture Diagram](../assets/brainpack_screen.png)
1717

1818
## Next steps
1919
We'll shortly be releasing the **BOM** so that you can build your own BrainPack and details on **DIY** guideline for it.

mintlify/developer_cookbook/config.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ You can configure any subset of the available five modes, just two, or all five,
150150

151151
#### **implementation** *string* — Optional
152152

153-
This defines the business logic, if any. If there's none defined, we use default value `passthough`.
153+
This defines the business logic, if any. If there's none defined, we use default value `passthrough`.
154154

155155
**Example: "passthrough"**
156156

mintlify/full_autonomy_guidelines/brainpack_introduction.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ description: "Introduction to the BrainPack"
88
- From research to real-world autonomy, the **OM1 BrainPack** is a plug-and-play module that brings full autonomy to your robots.
99
- It is designed to be mounted directly onto a robot to bring together mapping, object recognition, remote control, and self charging, giving humanoids and quadrupeds what they need to navigate, remember, and act with purpose.
1010
- The BrainPack makes your robot smarter — a system that **learns, moves, and builds with you.**
11-
- These BrainPacks provide Nvidia Thor to Unitree dogs and humanoids. Each of them comes with on open reference design, speakers, and connectivity to other sensors via Ethernet and USB, with multiple power options.
12-
- The BrainPack supports modern and future Nvidia hardware(Nvidia Thor) and software (JetPack 7.05), current and future versions of ROS2, and is robot agnositc to control different form factors.
11+
- These BrainPacks provide NVIDIA Thor to Unitree dogs and humanoids. Each of them comes with on open reference design, speakers, and connectivity to other sensors via Ethernet and USB, with multiple power options.
12+
- The BrainPack supports modern and future NVIDIA hardware and software (JetPack 7.0 with tag 38.2.1-20250910123945), current and future versions of ROS2, and are robot agnostics, and control different form factors.
1313

1414
![Architecture Diagram](../assets/brainpack.png)
1515
![Architecture Diagram](../assets/brainpack_2.png)
16-
![Architecture Diagram](../assets/G1_brainpack.png)
16+
![Architecture Diagram](../assets/brainpack_screen.png)
1717

1818
## Next steps
1919
We'll shortly be releasing the **BOM** so that you can build your own BrainPack and details on **DIY** guideline for it.

src/actions/move_game_controller/connector/go2_game_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def tick(self) -> None:
349349
# special case for no data if the D-pad or LT and RT is kept pressed
350350
if data is None or len(data) == 0:
351351
if self.rt_previous > 0 or self.lt_previous > 0:
352-
# we always excute the left turn first
352+
# we always execute the left turn first
353353
if self.lt_previous > 0:
354354
logging.info(
355355
"Left Trigger is kept pressed - Counter-clockwise rotation"

src/inputs/plugins/serial_reader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ async def _poll(self) -> Optional[str]:
8686

8787
async def _raw_to_text(self, raw_input: Optional[str]) -> Optional[Message]:
8888
"""
89-
Process raw string to higer level text description.
89+
Process raw string to higher level text description.
9090
9191
Parameters
9292
----------

0 commit comments

Comments
 (0)