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: content/hardware/04.pro/boards/portenta-x8/tutorials/out-of-the-box/content.md
+15-16Lines changed: 15 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ software:
20
20
21
21
## Connecting to the Board
22
22
23
-
Once the Portenta X8 its plugged via USB, you can open your browser and go to http://192.168.7.1 and see a web which is hosted by the board, from this dashboard you will be able to:
23
+
Once the Portenta X8 is plugged in via USB, you can open your browser and go to http://192.168.7.1 and see a web page which is hosted by the board, from this dashboard you will be able to:
24
24
25
25

26
26
@@ -36,19 +36,20 @@ Click the Wi-Fi button to start configuring your network connection.
36
36
37
37

38
38
39
-
Select your Wi-Fi SSID
39
+
Select your Wi-Fi SSID.
40
40
41
41

42
42
43
-
Type the password
43
+
Type the password.
44
+
44
45

45
46
46
-
Once its connected you should see the Wi-Fi status button on green.
47
+
Once its connected you should see the Wi-Fi status dot in the bottom left turn green.
***You can change your network by clicking again on the button and repeat the steps***
52
+
***You can change your network by clicking on the button again and repeat the steps***
52
53
53
54
## Registering a Factory
54
55
@@ -60,35 +61,33 @@ And set your new factory name.
60
61
61
62

62
63
63
-
Click register, now you will get a code that you need to paste into your factory page by opening [Arduino Create Cloud](https://create.arduino.cc) in your browser and click inside the integrations section "Portenta X8 Board Manager"
64
+
Click register, now you will get a code that you need to paste into your factory page by opening [Arduino Create Cloud](https://create.arduino.cc) in your browser and click the "Portenta X8 Board Manager" inside the integrations section.
You have plenty of ways to communicate with your board, we are going to show adb and ssh.
75
+
You have plenty of ways to communicate with your board, be it wirelessly or with a cable. Next we are going to show how to use adb and ssh.
75
76
76
77
### ADB
77
78
78
-
First of all make sure you have the latest Mbed Portenta Core, which contains the adb program.
79
-
You can go to its directory inside the Arduino15/packages/arduino/tools/adb/32.0.0, to check the tool you can type on your terminal `adb` you should get feedback from the tool.
79
+
First of all make sure you have the latest **Mbed OS Portenta Core**, which contains the adb program.
80
+
You can go to its directory inside the **Arduino15/packages/arduino/tools/adb/32.0.0**. To check the tool you can use your teminal and type `adb`, you should get feedback from the tool when typing this.
80
81
81
82
To know the list of devices that can be accessed type `adb devices`.
82
83
83
-
If you see only one you just can type `adb shell` if it succeed, you are now communicating to your Portenta X8.
84
+
If you only see one device you can try and type `adb shell`, you are now communicating with your Portenta X8.
84
85
85
86
### SSH
86
87
87
-
SSH is commonly used for remote control on a different kind of devices running different set ups through TCP-IP.
88
-
89
-
To communicate with your board, you will need to know the IP of it, and just type `ssh fio@<IP>`, then the terminal workaround should be the same as ADB.
88
+
SSH is commonly used for remote control on different kinds of devices running different set ups through TCP-IP.
90
89
91
-
The password is `fio`.
90
+
To communicate with your board, you will need to know the IP of it, and just type `ssh fio@<IP>`, then the terminal workaround should be the same as ADB. The password is `fio`.
92
91
93
92

94
93
As it is a linux device, you can do normal stuff like creating files, changing directory, etc.
@@ -111,4 +110,4 @@ Make sure you have the latest mbed Core and as every other board you can select
111
110
112
111
And click compile and upload.
113
112
114
-
***Make sure you don't share GPIOs on the linux side and the Arduino sketc, this will avoid possible errors***
113
+
***Make sure you don't share GPIOs on the linux side and the Arduino sketch, this will avoid possible errors***
0 commit comments