boards/st/nucleo_l4a6zg/doc/index.rst
.. zephyr:board:: nucleo_l4a6zg
Overview
The Nucleo L4A6ZG board features an ARM Cortex-M4 based STM32L4A6ZG MCU with a wide range of connectivity support and configurations. Here are some highlights of the Nucleo L4A6ZG board:
STM32 microcontroller in QFP144 package
USB OTG FS with Micro-AB connector
Two types of extension resources:
On-board ST-LINK/V2-1 debugger/programmer with SWD connector
Flexible board power supply:
8 LEDs: user LEDs (LD1, LD2, LD3), communication LED (LD4), USB power fault(LD5), power LED (LD6), USB FS OTG (LD7, LD8)
2 push buttons: USER and RESET
More information about the board can be found at the Nucleo L4A6ZG website_.
Hardware
The STM32L4A6ZG SoC provides the following hardware capabilities:
Ultra-low-power with FlexPowerControl (down to 108 nA Standby mode and 91 uA/MHz run mode)
Core: ARM® 32-bit Cortex®-M4 CPU with FPU, frequency up to 80 MHz, 100DMIPS/1.25DMIPS/MHz (Dhrystone 2.1)
Clock Sources:
RTC with HW calendar, alarms and calibration
LCD 8 x 40 or 4 x 44 with step-up converter
Up to 24 capacitive sensing channels: support touchkey, linear and rotary touch sensors
16x timers:
Up to 136 fast I/Os, most 5 V-tolerant, up to 14 I/Os with independent supply down to 1.08 V
Memories
4x digital filters for sigma delta modulator
Rich analog peripherals (independent supply)
20x communication interfaces
14-channel DMA controller
True random number generator
CRC calculation unit, 96-bit unique ID
AES and HASH hardware accelerators
Development support: serial wire debug (SWD), JTAG, Embedded Trace Macrocell™
More information about STM32L4A6ZG can be found here:
STM32L4A6ZG on www.st.com_STM32L4A6 reference manual_.. zephyr:board-supported-hw::
Nucleo L4A6ZG Board has 8 GPIO controllers. These controllers are responsible for pin muxing, input/output, pull-up, etc.
For more details please refer to STM32 Nucleo-144 board User Manual_.
Nucleo L4A6ZG system clock could be driven by internal or external oscillator, as well as main PLL clock. By default, system clock is driven by PLL at 80MHz, which is driven by 16MHz high speed internal oscillator (HSI). High speed external oscillator (HSE) is not soldered on the board, so it cannot be used to drive the PLL.
Nucleo L4A6ZG board has 5 UARTs. The Zephyr console output is assigned to LPUART1, which is connected to the onboard ST-LINK/V2-1. Virtual COM port interface. Default settings are 115200 8N1.
Programming and Debugging
.. zephyr:board-supported-runners::
Nucleo L4A6ZG board includes an ST-LINK/V2-1 embedded debug tool interface.
Applications for the nucleo_l4a6zg 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 or JLink can also be used to flash the board using
the --runner (or -r) option:
.. code-block:: console
$ west flash --runner openocd $ west flash --runner jlink
Connect the Nucleo L4A6ZG to your host computer using the ST-LINK 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/ttyUSB0
Then build and flash the application.
.. zephyr-app-commands:: :zephyr-app: samples/hello_world :board: nucleo_l4a6zg :goals: build flash
You should see the following message on the console:
.. code-block:: console
Hello World! nucleo_l4a6zg
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: nucleo_l4a6zg :maybe-skip-config: :goals: debug
.. _Nucleo L4A6ZG website: https://www.st.com/en/evaluation-tools/nucleo-l4a6zg.html
.. _STM32 Nucleo-144 board User Manual: https://www.st.com/resource/en/user_manual/dm00368330.pdf
.. _STM32L4A6ZG on www.st.com: https://www.st.com/en/microcontrollers-microprocessors/stm32l4a6zg.html
.. _STM32L4A6 reference manual: https://www.st.com/resource/en/reference_manual/dm00083560.pdf
.. _STM32CubeProgrammer: https://www.st.com/en/development-tools/stm32cubeprog.html