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
docs: improve deployment guide with tabbed OS-specific instructions
- Fix file path consistency: use debug/ instead of build/ for ELF location
- Add tabbed instructions for SSH connections (including PuTTY for Windows)
- Add OS-specific file transfer commands (scp)
- Enhance serial terminal section with minicom alternatives
- Improve cross-platform compatibility for all deployment steps
- Maintain consistent formatting with previous documents
Copy file name to clipboardExpand all lines: content/learning-paths/embedded-and-microcontrollers/observing-ethos-u-on-nxp/10-deploy-test-executorch-runner-on-NXP.md
+64-4Lines changed: 64 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,19 +14,43 @@ Find your board's IP address using the serial console or check your router's DHC
14
14
15
15
Connect via SSH:
16
16
17
+
{{< tabpane code=false >}}
18
+
{{< tab header="Windows/Linux" >}}
17
19
```bash
18
20
ssh root@192.168.1.24
19
21
```
20
22
23
+
Alternative with PuTTY on Windows:
24
+
- Host: `192.168.1.24`
25
+
- Port: `22`
26
+
- Connection type: SSH
27
+
- Username: `root`
28
+
{{< /tab >}}
29
+
{{< tab header="macOS" >}}
30
+
```bash
31
+
ssh root@192.168.1.24
32
+
```
33
+
{{< /tab >}}
34
+
{{< /tabpane >}}
35
+
21
36
Replace `192.168.1.24` with your board's IP address.
22
37
23
38
## Copy the firmware to the board
24
39
25
40
Copy the built firmware file to the board's firmware directory:
0 commit comments