boards/st/stm32l562e_dk/doc/index.rst
.. zephyr:board:: stm32l562e_dk
Overview
The STM32L562E-DK Discovery kit is designed as a complete demonstration and development platform for STMicroelectronics Arm® Cortex®-M33 core-based STM32L562QEI6QU microcontroller with TrustZone®. Here are some highlights of the STM32L562E-DK Discovery board:
STM32L562QEI6QU microcontroller featuring 512 Kbytes of Flash memory and 256 Kbytes of SRAM in BGA132 package
1.54" 240 x 240 pixel-262K color TFT LCD module with parallel interface and touch-control panel
USB Type-C® Sink device FS
On-board energy meter: 300 nA to 150 mA measurement range with a dedicated USB interface
SAI Audio CODEC
MEMS digital microphones
512-Mbit Octal-SPI Flash memory
Bluetooth® V4.1 Low Energy module
iNEMO 3D accelerometer and 3D gyroscope
Board connectors
Flexible power-supply options
On-board STLINK-V3E debugger/programmer with USB re-enumeration capability:
2 user LEDs
User and reset push-buttons
More information about the board can be found at the STM32L562E-DK Discovery website_.
Hardware
The STM32L562xx devices are an ultra-low-power microcontrollers family (STM32L5 Series) based on the high-performance Arm® Cortex®-M33 32-bit RISC core. They operate at a frequency of up to 110 MHz.
Ultra-low-power with FlexPowerControl (down to 108 nA Standby mode and 62 uA/MHz run mode)
Core: ARM® 32-bit Cortex®-M33 CPU with TrustZone® and FPU.
Performance benchmark:
Security
Clock management:
Power management
RTC with HW calendar, alarms and calibration
Up to 114 fast I/Os, most 5 V-tolerant, up to 14 I/Os with independent supply down to 1.08 V
Up to 22 capacitive sensing channels: support touchkey, linear and rotary touch sensors
Up to 16 timers and 2 watchdogs
Memories
Rich analog peripherals (independent supply)
19x communication interfaces
CRC calculation unit
Development support: serial wire debug (SWD), JTAG, Embedded Trace Macrocell™
More information about STM32L562QE can be found here:
STM32L562QE on www.st.com_STM32L562 reference manual_.. zephyr:board-supported-hw::
The STM32L562e is an SoC with Cortex-M33 architecture. Zephyr provides support for building for both Secure and Non-Secure firmware.
The BOARD options are summarized below:
+------------------------------+-------------------------------------------+ | BOARD | Description | +==============================+===========================================+ | stm32l562e_dk | For building Trust Zone Disabled firmware | +------------------------------+-------------------------------------------+ | stm32l562e_dk/stm32l562xx/ns | For building Non-Secure firmware | +------------------------------+-------------------------------------------+
Here are the instructions to build Zephyr with a non-secure configuration,
using :zephyr:code-sample:tfm_ipc sample:
.. code-block:: bash
$ west build -b stm32l562e_dk/stm32l562xx/ns samples/tfm_integration/tfm_ipc/
Once done, before flashing, you need to first run a generated script that will set platform option bytes config and erase platform (among others, option bit TZEN will be set).
.. code-block:: bash
$ ./build/tfm/api_ns/regression.sh
$ west flash
Please note that, after having run a TFM sample on the board, you will need to
run ./build/tfm/api_ns/regression.sh once more to clean up the board from secure
options and get back the platform back to a "normal" state and be able to run
usual, non-TFM, binaries.
Also note that, even then, TZEN will remain set, and you will need to use
STM32CubeProgrammer_ to disable it fully, if required.
STM32L562E-DK Discovery Board has 8 GPIO controllers. These controllers are responsible for pin muxing, input/output, pull-up, etc.
For more details please refer to STM32L562E-DK Discovery board User Manual_.
STM32L562E-DK System Clock could be driven by internal or external oscillator, as well as main PLL clock. By default System clock is driven by PLL clock at 110MHz, driven by 4MHz medium speed internal oscillator.
STM32L562E-DK Discovery board has 6 U(S)ARTs. The Zephyr console output is assigned to USART1. Default settings are 115200 8N1.
The TFT LCD screen and touch panel are supported for the STM32L562E-DK Discovery board.
They can be tested using :zephyr:code-sample:lvgl sample:
.. zephyr-app-commands:: :zephyr-app: samples/subsys/display/lvgl :board: stm32l562e_dk :goals: build
Programming and Debugging
.. zephyr:board-supported-runners::
STM32L562E-DK Discovery board includes an ST-LINK/V3E embedded debug tool interface.
Applications for the stm32l562e_dk board configuration can be built and
flashed in the usual way (see :ref:build_an_application and
:ref:application_run for more details).
The board is configured to be flashed using west STM32CubeProgrammer_ runner,
so its :ref:installation <stm32cubeprog-flash-host-tools> is required.
Alternatively, OpenOCD can also be used to flash the board using
the --runner (or -r) option:
.. code-block:: console
$ west flash --runner openocd
Support can also be enabled for pyOCD by adding "pack" support with the following pyOCD commands:
.. code-block:: console
$ pyocd pack --update $ pyocd pack --install stm32l562qe
Connect the STM32L562E-DK Discovery to your host computer using the USB port.
Then build and flash an application. Here is an example for the
:zephyr:code-sample:hello_world application.
Run a serial host program to connect with your Nucleo board:
.. code-block:: console
$ minicom -D /dev/ttyACM0
Then build and flash the application.
.. zephyr-app-commands:: :zephyr-app: samples/hello_world :board: stm32l562e_dk :goals: build flash
You should see the following message on the console:
.. code-block:: console
Hello World! stm32l562e_dk
You can debug an application in the usual way. Here is an example for the
:zephyr:code-sample:hello_world application.
.. zephyr-app-commands:: :zephyr-app: samples/hello_world :board: stm32l562e_dk :maybe-skip-config: :goals: debug
.. _STM32L562E-DK Discovery website: https://www.st.com/en/evaluation-tools/stm32l562e-dk.html
.. _STM32L562E-DK Discovery board User Manual: https://www.st.com/resource/en/user_manual/dm00635554.pdf
.. _STM32L562QE on www.st.com: https://www.st.com/en/microcontrollers/stm32l562qe.html
.. _STM32L562 reference manual: https://www.st.com/resource/en/reference_manual/DM00346336.pdf
.. _STM32CubeProgrammer: https://www.st.com/en/development-tools/stm32cubeprog.html