My examples for the new Arduino Pro board the Portenta H7
and how to make it work for Arduino The folder I am doing this testing is m09-Tensoflow/TFLITE-2023
Based on these examples and other demos https://github.com/hpssjellis/portenta-pro-community-solutions
Main Teaching Site that will use this information https://github.com/hpssjellis/maker100
I just tested ~19 of these programs and put my results at research/README.md I fixed a few mistakes and got DAC working. The reason I tested everything is there is a new version of the mbed board software for the PortentaH7 coming out soon.
Portenta Schematic here
Portenta full Datasheet pdf here
Arduino MBED core github https://github.com/arduino/ArduinoCore-mbed
STM32H747XIH6 https://www.st.com/en/microcontrollers-microprocessors/stm32h747xi.html#11
STM32H747XIH6 datasheet https://www.st.com/resource/en/datasheet/stm32h747xi.pdf
STM32H747XIH6 video https://www.st.com/en/microcontrollers-microprocessors/stm32h747xi.html#
https://www.youtube.com/playlist?list=PL57Dnr1H_egtm0pi-okmG0iE_X5dROaLw
Click image below to view the same playlist link as above
Note: The Arduino Pro site has much more professional Pro tutroials at https://www.arduino.cc/pro/tutorials/portenta-h7 that lead you through every step of similar examples, however these videos are for people just to quickly get up and running.
As of July 24th, 2020 this site is just to get the PortentaH7 working how I like it to work.
My Arduino Robotics teaching will eventually contain student tested Arduino teaching programs with instructional videos.
https://github.com/hpssjellis/arduino-high-school-robotics-course
So Far what is working:
my00-dual-clean.ino As the M7 core loads itself and using bootM4() the M4 core, what if one of them has a problem and you are working on the other one? Sometimes you need to clean both cores before you can upload new code to both cores. Or at least clean the other code before uploading new code. Clean video at here
my01-BlinkM7.ino Get the Portenta H7 Blinking with it's weird on board LED's connected to 3V3 so you have to send LOW to turn it on. Great for the board health (can't send 5V to it and break the LED), but crappy for anyone use to HIGH turns LED's on.
my01b-blink-serial.ino. Always good to test both blink and serial. This code sets M7 to boot M4 as well. If issues make sure M4 is clean. Blink Serial video here
my02a-dual-core.ino Proud of this. I have taken the Pro Tutorial and made it more smooth. This code can be flashed to either core and randomly sets blue and green onboard LED flashing. This is the way to write dual core code. Pro Tutorial at https://www.arduino.cc/pro/hardware/product/portenta-h7 then go to the tutorials
The changes were that for RPC you need to add -fexceptions to the cflags.txt and cxxflags.txt files in the board location AppData\Local\Arduino15\packages\arduino-beta\hardware\mbed\1.2.2\variants\PORTENTA_H7_M4 I have put in a request to have it changed here to the ArduinoCore-mbed
my02b-dual-core-RPC.ino An advanced program. The M4 core cannot print to Serial, so this advanced example uses RPC (Remote Procedure Call) to send a print command from the M4 core to the M7 core to print to serial.
my02c-dual-core-RPC-variable.ino Another advanced file that I would leave until you are more comfortable with the Portenta
my02d-dual-core-RPC-timer.ino Another advanced file that I would leave until you are more comfortable with the Portenta this one uses and interval instead of the delay.
my02e-easier-dual.ino Easier Dual RPC programming that fully seperates the M4 and M7 core programs but still in one file. A very small delay added to the M7 core while the M4 core has a long delay to slow things donw enough to see what is happening. Means more code to write, but much easier to understand and to build from.
my02f_easy_m4_rpc_print.ino This is my new favorite RPC. It redirects regular Serial.println from the M4 core to the M7 as regular Serial.println, by using #define Serial RPC1
but only for the M4 core.
my02g-analogRead-m4-rpc.ino. Showing how to do analogRead of A0 to A6 but on the M4 core. Also found that delayMicrosecond(1234); was needed between each Serial.println(); statement for RPC to fully work.
my02h-rpc-from-m4.ino. Some people have been having troubles with complex varriable passing on the Arduino forum at https://forum.arduino.cc/t/passing-variable-from-cm7-to-cm4-using-rpc/692026/4 this program just shows that the variable can be on the M4 core and use RPC to be controlled by the M7 core. It also shows storing more than one variable. The issues on the forum are using much more complex systems so not sure if this will be helpfull.
The changes were add -fexceptions to the cflags.txt and cxxflags.txt files in the board location AppData\Local\Arduino15\packages\arduino-beta\hardware\mbed\1.2.2\variants\PORTENTA_H7_M4
my03-BLE-LED-control.ino All this does is activate the onboard LED using BLE. I use the nrf-connect androd app, but any BlueTooth connectivity app should be able to turn on and off your LED. BLE video here, This Arduino Tutorial is based on my BLE program (Look for my name at the bottom of the page ) Pro BLE Tutorial here
my04-BLE-LED-multi-control.ino Proud of this baby. It scans for BLE LED activated boards that must have "LED" in their bluetooth set local name and then one after another flashes the on board LED. The boards even work when fully disconnected from a computer (use a usb stick to power the boards). Unfortunately to test this out you need more than one board. I have a few Nano 33 IOT boards that have my03-BLE-LED-control.ino running powered by a wall charger. BLE multi video here
my05-Web-server.ino Cool webserver with buttons to control the on-board LED. Needs to show the serial monitor to discover the local IP address. You must be on the same local network to view the page. More complex to make as a full www webpage. Strangely needs to be connected to a computers USB port, that should not be an issue.
my06_LED_onboard_setRGB.ino a fairly advanced program that allows complete control of the on-board LED's.
my07-analog-test.ino Just a program that quickly prints out all the analogRead pins A0-A6
my08-mbed-blink.ino starting to use the mbed compiler, fairly different from arduino code.
/m09-Tensoflow Read my opinions in that folder. I did get the TensorflowLite Hello_world working on the serial-plotter. Now I am able to convert my TensorflowJS Vanilla Javascript Machine Learning models to a C header file format for the Arduino. Check out this page. https://github.com/hpssjellis/my-examples-for-the-arduino-portentaH7/tree/master/m09-Tensoflow/tfjs-convert-to-arduino-header
my10-DAC-to-ADC.ino Testing the DAC pin at A6 as it sends from 0.0 to 1.0 to both A0 for analogRead (from 0 to 1023) and D6 for digitalRead (from 0 to 1). DAC To ADC video here
my11-servo.ino Basic servo functionality. Will need Servo.h greater than 0.0.2 or make the changes stated here on the Arduino forum.
my12-serial1-crash.ino. The portenta sends crash information through the Serial1 RX and TX pins. This program allows you to load a serial1 monitoring program on another 3.3V arduino so that crash info can go from that arduino through USB to your computer. (Note: must use protective resistors if using an older 5V arduino). The easier approach is to connect a TTL USB cable to Gnd, RX and TX but I don't have one of those cables.
my13_uart_m4_m7_print.ino Similar to the crash report that uses another arduino to catch the serial1 UART TX and TR and GND print output. This program allows UART print from either the M7 or M4 cores. Great for debugging the M4 core. Uses _UART1_.println("Hi");
which on the M7 is the same as Serial1.println("Hi"); and on the M4 core is Serial.println("hi"); The program also tests for Portenta or not and programs for each of 2 boards 3 cores.
my14_8x8_thermal_Array.ino Finally starting to make cool things. This $52 USD Thermal 8x8 array can sense who has a temperature. The program flashes the onboard LED when it senses a temperaturre change, but if the highest temperature is above a set threshold (I used 39 degrees celcius), it flashes continuously for about 20 seconds. The serial monitor is not needed but gives average array temperature and highest recorded temperature. Prints about 3 times until it settles down again. Uses the AMG8831 sensor at AMG8833 IR 88 Thermal Imager Array Temperature Sensor Module 8x8 Infrared Camera Sensor that is a generic search I used this one
my15-TRACE32.ino Presently testing the TRACE32 debugger by Lauterbach.com-download_demo.html . And the Lauterbach-license-request Video part2 here, as Part1 is deprecated if you have the new ASM/system-settings.cmm file The other my15 sketches were early attempts and will probably end up in the old folder. Note: As of Jan 2020, the inner M4 core does not work yet with TRACE32. Arduino needs to make some changes to the software.
my16-TRACE32-with-assembly-language.ino. The new version of Trace32 is ready Jan 11th, 2021. Video available soon, this file is the same as my15, just with some inline assembly code to show how to do some assembly directly in your Arduino code if needed. (Probably a really good idea to stay very far away from any assembly language.) New Part 3 TRACE32 video here
my17-ThreadedTimer.ino submitted by Waleed El-Badry example of using potentially parallel timers using the ThreadedTimer library by Auden at https://github.com/Aduen/ThreadedTimer Simply download the zipped library and add the library to the Arduino library add zipped file. " A single ThreadedTimer runs in its own Thread and multiple Threaded Timers can run parallel without delaying each other."
my18-mbed-thread.ino My version of mbed threading. Good stuff here.
my19-ethernet-webserver.ino Finally Ethernet working on both Linux and Windows. This should work for both the Etherrnet Vision Shield and the Breakout board.
my20-aysnc-web-server.ino Cool async webserver by @khoih-prog edited by me. Uses his official arduino library Portenta_H7_AsyncWebServer
Lots more info in this pdf file: https://content.arduino.cc/assets/Pinout-PortentaH7_latest.pdf
.
https://github.com/trimchess/portenta_basics
https://www.arduino.cc/pro/tutorials/portenta-h7
The battery connector https://www.digikey.com/product-detail/en/jst-sales-america-inc/BM03B-ACHSS-GAN-TF-LF-SN/455-2203-1-ND/1647795
The STM32H747 Datasheet https://www.st.com/resource/en/datasheet/stm32h747xi.pdf