Edge Impulse enables developers to create the next generation of intelligent device solutions with embedded Machine Learning. This repository contains the Edge Impulse firmware for the Arduino Portena H7 development board. This device supports all Edge Impulse device features, including ingestion, remote management and inferencing.
- Arduino Portenta H7 development board.
- Arduino Portenta Vision Shield (LoRa or Ethernet).
First, sign up for a free account on Edge Impulse. You can then rename or create a new project in the Studio.
Then, install the Edge Impulse CLI, Arduino CLI, and the Arduino IDE (required for Windows users only, optional for macOS/Linux users):
Follow the instructions to install the Edge Impulse CLI according to your Operating System.
Use following link for download and installation procedure: Arduino CLI.
The Edge Impulse firmware depends on some libraries and the Mbed core for Arduino. These will be automatically installed if you don't have them yet.
Installing Arduino IDE is a requirement only for Windows users. macOS and Linux users can use either the Arduino CLI or IDE to build the application.
- Download and install the Arduino IDE for your Operating System.
- In Tools -> Board -> Boards Manager, search for
portenta
and install the Arduino Mbed OS Portenta Boards v2.5.2. - In Arduino Menu -> Preferences, check the location of the preferences.txt file (ie: /Users/aureleq/Library/Arduino15/).
- Copy the
boards.local.txt
andplatform.local.txt
files into the Arduino Mbed Portenta directory, for instance:/Users/aureleq/Library/Arduino15/packages/arduino/hardware/mbed_portenta/2.5.2
. The platform.local.txt should not be required in the next Arduino Mbed Core release (more details here).
The precompiled firmware enable users to collect data directly from the Edge Impulse Studio and run a default image classification model.
First, clone or download this repository.
To flash the firmware, double-click on the flashing script for your Operating System in the flashing-scripts folder.
Once you have flashed the firmware, you can connect the board to your Edge Impulse project with:
$ edge-impulse-daemon
(use your Edge Impulse credentials and select your project and board when prompted)
Extract the contents of the exported Arduino library from your Edge Impulse project, and replace src/edge-impulse-sdk/
, src/tflite-model/
and src/model-parameters/
folders in the project
accordingly. Next rebuild the application.
-
Build the application:
./arduino-build.sh --build
-
Flash the application:
./arduino-build.sh --flash
- Open the
workshop-devsummit2021-portenta.ino
, select the Arduino Portenta H7 (M7 core) board and the Flash Split 2 MB M7 + M4 in SDRAM. - Build and flash the application using the Upload button.
Once the application has been flashed, you can run the inference on the target with:
edge-impulse-run-impulse
-
Not flashing? You can double tap the button on the board to put it in bootloader mode.
-
Invalid DFU suffix signature?
dfu-util: Invalid DFU suffix signature dfu-util: A valid DFU suffix will be required in a future dfu-util release!!! dfu-util: Cannot open DFU device 2341:035b dfu-util: No DFU capable USB device available Upload error: Error: 2 UNKNOWN: uploading error: uploading error: exit status 74
Having the above issues? Then copy
20-arduino.rules
to/etc/udev/rules.d/
and try again.