boards/arduino/opta/doc/index.rst
.. zephyr:board:: arduino_opta
Overview
The Arduino™ Opta® is a secure micro Programmable Logic Controller (PLC) with Industrial Internet of Things (IoT) capabilities.
Developed in partnership with Finder®, this device supports both the Arduino programming language and standard IEC-61131-3 PLC programming languages, such as Ladder Diagram (LD), Sequential Function Chart (SFC), Function Block Diagram (FBD), Structured Text (ST), and Instruction List (IL), making it an ideal device for automation engineers.
For Zephyr RTOS, both cores are supported. It is also possible to run only on the M4 making the M7 run the PLC tasks while the M4 core under Zephyr acts as a coprocessor.
Additionally, the device features:
More information about the board can be found at the ARDUINO-OPTA website_.
More information about STM32H747XIH6 can be found here:
STM32H747XI on www.st.com_STM32H747xx reference manual_STM32H747xx datasheet_.. zephyr:board-supported-hw::
Both the M7 and M4 cores have access to the 9 GPIO controllers. These controllers are responsible for pin muxing, input/output, pull-up, etc.
For more details please refer to ARDUINO-OPTA website_.
The STM32H747I System Clock can be driven by an internal or external oscillator, as well as by the main PLL clock. By default, the CPU2 (Cortex-M4) System clock is driven at 240MHz. PLL clock is fed by a 25MHz high speed external clock. The M7 clock is driven at 400MHz.
External flash (16MB on QSPI) access can be enabled by the CONFIG_FLASH
option. The default partition table tracks the one used by the latest Arduino
IoT Cloud library. If you have any issues, re-run the QSPIFormat.ino
sketch to update the Flash contents.
The dual core nature of STM32H747 SoC requires sharing HW resources between the two cores. This is done in 3 ways:
Programming and Debugging
.. zephyr:board-supported-runners::
Applications for the arduino_opta use the regular Zephyr build commands.
See :ref:build_an_application for more information about application builds.
Flashing operation will depend on the target to be flashed and the SoC option bytes configuration. The OPTA has a DFU capable bootloader which can be accessed by connecting the device to the USB, and then pressing the RESET button shortly twice, the RESET-LED on the board will fade indicating the board is in bootloader mode.
By default:
Zephyr flash configuration has been set to be compatible with the "Flash split: 1.5MB M7 + 0.5MB M4" option in the Arduino IDE. The flash is partitioned as follows:
First, connect the device to your host computer using the USB port to prepare it for flashing. Then build and flash your application.
Here is an example for the :zephyr:code-sample:blinky application on M7 core.
.. zephyr-app-commands:: :zephyr-app: samples/basic/blinky :board: arduino_opta/stm32h747xx/m7 :goals: build flash
First, connect the device to your host computer using the USB port to prepare it for flashing. Then build and flash your application.
Here is an example for the :zephyr:code-sample:blinky application on M4 core.
.. zephyr-app-commands:: :zephyr-app: samples/basic/blinky :board: arduino_opta/stm32h747xx/m4 :goals: build flash
If you also flashed an application to M7 the M4 processor is started at boot. If not you will need to start the processor from an Arduino sketch.
Make sure the option bytes are set to prevent the M4 from auto-starting, and that the M7 side starts the M4 at the correct Flash address.
This can be done by selecting in the Arduino IDE's "Tools" / "Flash Split" menu the "1.5MB M7 + 0.5MB M4" option, and loading a sketch that contains at least the following code:
.. code-block:: cpp
#include <RPC.h>
void setup() {
RPC.begin();
}
void loop() { }
The debug port does not have an easy access but it is possible to open the case and solder a standard 10-pin SWD connector to the board. After that both flashing and debugging are available via ST-LINK (M7 core only).
.. _ARDUINO-OPTA website: https://docs.arduino.cc/hardware/opta
.. _STM32H747XI on www.st.com: https://www.st.com/content/st_com/en/products/microcontrollers-microprocessors/stm32-32-bit-arm-cortex-mcus/stm32-high-performance-mcus/stm32h7-series/stm32h747-757/stm32h747xi.html
.. _STM32H747xx reference manual: https://www.st.com/resource/en/reference_manual/dm00176879.pdf
.. _STM32H747xx datasheet: https://www.st.com/resource/en/datasheet/stm32h747xi.pdf