Skip to content

Commit 3a0b185

Browse files
Update README.md to correct workspace directory names for clarity
1 parent 3da0796 commit 3a0b185

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Before getting started, make sure you have a proper Zephyr development environme
134134

135135
1. **Install the Zephyr SDK**: Follow the [official Zephyr getting started guide](https://docs.zephyrproject.org/latest/getting_started/index.html) for your operating system.
136136

137-
2. **Set up Python virtual environment and install West**:
137+
2. **Set up a Python virtual environment and install West**:
138138
```bash
139139
python3 -m venv ~/.venv
140140
source ~/.venv/bin/activate
@@ -147,15 +147,15 @@ The first step is to initialize the workspace folder where the `OpenAstroFirmwar
147147

148148
```bash
149149
# Initialize workspace for OpenAstroFirmware
150-
west init -m https://github.com/OpenAstroTech/OpenAstroFirmware --mr main OpenAstroTech-workspace
150+
west init -m https://github.com/OpenAstroTech/OpenAstroFirmware --mr main OpenAstroFirmware-workspace
151151
# Update Zephyr modules
152-
cd OpenAstroTech-workspace
152+
cd OpenAstroFirmware-workspace
153153
west update
154154
```
155155

156156
After initialization, your workspace structure will look like:
157157
```
158-
OpenAstroTech-workspace/
158+
OpenAstroFirmware-workspace/
159159
├── OpenAstroFirmware/ # This repository
160160
├── zephyr/ # Zephyr RTOS
161161
└── modules/ # Zephyr modules (HAL, libraries, etc.)
@@ -185,13 +185,13 @@ west build -t guiconfig # GUI configuration tool
185185

186186
#### For Native Simulation (Development/Testing)
187187
```bash
188-
cd OpenAstroTech-workspace/OpenAstroFirmware/app
188+
cd OpenAstroFirmware-workspace/OpenAstroFirmware/app
189189
west build -b native_sim
190190
```
191191

192192
#### For MKS Robin Nano (Production Hardware)
193193
```bash
194-
cd OpenAstroTech-workspace/OpenAstroFirmware/app
194+
cd OpenAstroFirmware-workspace/OpenAstroFirmware/app
195195
west build -b mks_robin_nano
196196
```
197197

0 commit comments

Comments
 (0)