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-h7/tutorials/over-the-air-update/content.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -139,21 +139,22 @@ Convert your encoded file into `.ota` format
139
139
You can use `OTA_Usage_Portenta.ino.PORTENTA_H7_M7` as a sketch name for facilitated identification of the file. After this, you will have the `.ota` file of the sketch that you will use with the OTA process.
140
140
141
141
### Installing Python 3 On Linux
142
+
### Installing Python 3 On Linux
142
143
143
-
If you recently installed Ubuntu maybe you can't run the **bin2ota.py** script. This may be because you need to install [Python 3](https://phoenixnap.com/kb/how-to-install-python-3-ubuntu) and the necessary modules. To do it execute the next command on **Ubuntu´s terminal**:
144
+
If you recently installed a Linux distribution, maybe you can't run the **bin2ota.py** script. This may be because you need to install [Python 3](https://www.python.org/) and the necessary modules. To do it execute the next command on your **Linux terminal**:
144
145
145
146
```cpp
146
147
sudo apt install python-is-python3
147
148
``````
148
149
149
150
You will also need to install the **crccheck** module on python by following the next instructions:
150
151
151
-
1. Installing pip on python:
152
+
Installing pip on python:
152
153
```cpp
153
-
//Necessary to installpython modules:
154
+
//Necessary to install python modules:
154
155
sudo apt install python3-pip
155
156
```
156
-
2.Installing the crccheck necessary module on python:
157
+
Installing the crccheck necessary module on python:
157
158
158
159
```cpp
159
160
//Necessary to run the script:
@@ -171,7 +172,6 @@ You can change the default file location on the code by modifying the next line
171
172
172
173
```cpp
173
174
staticcharconst OTA_FILE_LOCATION[] = "Introduce here your online OTA file location";
174
-
175
175
```
176
176
It is important to know that if your OTA file is uploaded to an HTTPS website you will need to modify the next line in the code:
0 commit comments