title | description | difficulty | tags | author | hardware | software | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
03. Uploading Sketches to the M4 Core on Arduino Portenta X8 |
This tutorial explains how to upload Arduino sketches to the M4 core. |
intermediate |
|
Pablo Marquínez |
|
|
In this tutorial, we will go through the process of uploading sketches to the M4 core on the STM32H747XI MCU. For the user, the process is the same as usual but it differs quite a bit in regards to what happens behind the scenes compared to other Arduino boards.
- Learn how to use the Arduino IDE to compile and upload a sketch
- Learn how to compile the sketch binaries with the Arduino IDE and upload them manually via ADB
- Portenta X8
- USB-C® cable (either USB-A to USB-C® or USB-C® to USB-C®)
- Arduino IDE 1.8.10+, Arduino IDE 2.0+, or Arduino CLI
- Latest "Arduino Mbed OS Portenta Boards" Core
It is a straightforward process to upload to M4 Core using Arduino IDE. You will have to select the Portenta X8 in the board selector inside the Arduino IDE.
Create a custom sketch or open one of the example sketches. For example, we will use the blink sketch:
void setup(){
pinMode(LED_BUILTIN ,OUTPUT);
}
void loop(){
digitalWrite(LED_BUILTIN , HIGH);
delay(1000);
digitalWrite(LED_BUILTIN , LOW);
delay(1000);
}
- Select the port of your device in the port selector menu
- Press the Compile and Upload button
The sketch gets compiled into a binary. That binary file is then uploaded to the Linux side of the Portenta X8 via an adb
SSH connection. The flashing is done on the board itself by active service on Linux. When the sketch has been uploaded successfully, check if the onboard LED is blinking at an interval of one second.
An alternative to using the standard Arduino IDE upload procedure is by uploading the sketch manually using ADB. First, we need to compile the sketch. In the Arduino IDE, select "Export compiled binary" from the Sketch menu. It will compile the sketch and save the binary file in the sketch folder. Alternatively, you can use the Arduino CLI to create an elf
file.
To upload the firmware, you can use the ADB tool that has been installed as part of the Portenta X8 core. It can be found at Arduino15\packages\arduino\tools\adb\32.0.0
.
From that directory, you can use the adb
tool. To upload your compiled sketch, you will need to use the following command:
adb push <sketchBinaryPath> /tmp/arduino/m4-user-sketch.elf
The Portenta X8 has a service that waits for a sketch to be uploaded to a folder. If it detects changes, the device will flash the M4 with the uploaded firmware. This works thanks to the following service:
- monitor-m4-elf-file.service: this service monitors the directory
/tmp/arduino/m4-user-sketch.elf
and each time it detects a new file, it will proceed to flash the M4 usingopenOCD
with the sketch that has been pushed.
In this tutorial, you have learned how to upload a sketch to the M4 core, by using the standard Arduino IDE procedure and manually with ADB. Now for example you can connect an I2C sensor and interact with it.
- If you cannot use the
ADB
tool and the folderArduino15\packages\arduino\tools\adb\32.0.0
is empty, remove the Mbed Portenta Core and install it again.