Skip to content

Commit 8d13304

Browse files
[PC-1116] Mentioning Linux instead Ubuntu
Some changes on the document referencing Linux instead of Ubuntu.
1 parent 8035168 commit 8d13304

File tree

1 file changed

+5
-5
lines changed
  • content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update

1 file changed

+5
-5
lines changed

content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/content.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,21 +139,22 @@ Convert your encoded file into `.ota` format
139139
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.
140140

141141
### Installing Python 3 On Linux
142+
### Installing Python 3 On Linux
142143

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**:
144145

145146
```cpp
146147
sudo apt install python-is-python3
147148
``````
148149

149150
You will also need to install the **crccheck** module on python by following the next instructions:
150151

151-
1. Installing pip on python:
152+
Installing pip on python:
152153
```cpp
153-
//Necessary to installpython modules:
154+
//Necessary to install python modules:
154155
sudo apt install python3-pip
155156
```
156-
2. Installing the crccheck necessary module on python:
157+
Installing the crccheck necessary module on python:
157158

158159
```cpp
159160
//Necessary to run the script:
@@ -171,7 +172,6 @@ You can change the default file location on the code by modifying the next line
171172

172173
```cpp
173174
static char const OTA_FILE_LOCATION[] = "Introduce here your online OTA file location";
174-
175175
```
176176
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:
177177

0 commit comments

Comments
 (0)