mbed-os/targets/TARGET_STM/TARGET_STM32H7
Dmitriy Isaev 8597f6ae12 Removed excess space simbol. Also runtime config check changed to compile time check. 2020-09-21 20:17:45 +03:00
..
STM32Cube_FW Update astyleignore and source code comment 2020-07-27 10:04:01 -07:00
TARGET_STM32H743xI Removed excess space simbol. Also runtime config check changed to compile time check. 2020-09-21 20:17:45 +03:00
TARGET_STM32H745xI stack: armc: Workaround config passing bug 2020-09-10 10:08:38 +01:00
TARGET_STM32H747xI stack: armc: Workaround config passing bug 2020-09-10 10:08:38 +01:00
PeripheralNames.h STM32H7 USB pins addition 2019-10-21 17:11:50 +02:00
README.md DISCO_H747I_CM4 is supporting now hex format 2020-05-25 11:34:40 +02:00
analogin_device.c STM32H7 ADC: clock selection lost after deepsleep 2020-09-08 11:40:02 +02:00
analogout_device.c Add HAL API for analog out pinmap 2019-02-08 09:10:05 -06:00
cmsis.h STM32: common cmsis.h and device.h 2019-05-27 16:27:41 +02:00
flash_api.c TARGET_STM: Remove timeout on HSEM. 2019-11-27 14:25:43 +01:00
gpio_irq_device.c NUCLEO_H743ZI: add initial SDK 2019-01-04 10:03:36 +01:00
gpio_irq_device.h NUCLEO_H743ZI: add initial SDK 2019-01-04 10:03:36 +01:00
i2c_device.h STM32: replace missing #ifdef DEVICE_xxx 2019-01-10 11:02:52 +01:00
objects.h STM32H7: enable QSPI 2020-03-23 18:46:26 +01:00
pin_device.h TARGET_STM: Remove timeout on HSEM. 2019-11-27 14:25:43 +01:00
pwmout_device.c STM32H7 correct PWMOUT 2020-01-21 16:03:17 +01:00
pwmout_device.h __cplusplus guard fixed pwmout_device.h for STM32 families 2019-08-09 09:51:39 +02:00
serial_device.c STM32: Fix the UART RX & TX data reg bitmasks 2020-02-07 16:23:50 +00:00
spi_api.c STM32: astyle check 2019-01-10 10:22:21 +01:00
spi_device.h NUCLEO_H743ZI: add initial SDK 2019-01-04 10:03:36 +01:00
us_ticker_data.h DISCO_H747I Dualcore support 2019-10-14 18:02:57 +02:00

README.md

STM32H7 family

st.com STM32H7 family page

GitHub STM32CubeH7 FW

NUCLEO_H743ZI / NUCLEO_H743ZI2

Note that NUCLEO_H743ZI is deprecated. Please update your board to NUCLEO_H743ZI2:

  • new MCU chip revision
  • new ST Link version

STM32H743ZI devices are based on the high-performance Arm Cortex-M7 32-bit RISC core operating at up to 480 MHz.

st.com STM32H743ZI MCU page

st.com NUCLEO page

mbed.com Target page

  • Total FLASH is 2 MB (0x200000)

    • 2x8 sectors of 128 KB
    • Flash memory bank 1 @ 0x0800 0000
    • Flash memory bank 2 @ 0x0810 0000
  • RAM: 1 MB

    • DTCM : 128 KB (0x20000) @0x2000 0000
    • SRAM : 512 KB (0x80000) @0x2400 0000
    • SRAM1 : 128 KB (0x20000) @0x3000 0000
    • SRAM2 : 128 KB (0x20000) @0x3002 0000
    • SRAM3 : 32 KB (0x8000) @0x3004 0000
    • SRAM4 : 64 KB (0x10000) @0x3800 0000

DISCO_H747I

Overview

The STM32H7x7 lines combine the performance of the Cortex-M7 (with double-precision floating point unit) running up to 480 MHz and the Cortex-M4 core (with single-precision floating point unit).

st.com STM32H747ZI MCU page

st.com board page

mbed.com Target page

  • Total FLASH is 2 MB (0x200000)

    • Flash memory bank 1 @ 0x0800 0000: 8 sectors of 128 KB => 1MB
    • Flash memory bank 2 @ 0x0810 0000: 8 sectors of 128 KB => 1MB
  • RAM: 1 MB

    • DTCM : 128 KB (0x20000) @0x2000 0000 - only CM7 side
    • SRAM : 512 KB (0x80000) @0x2400 0000 - shared
    • SRAM1 : 128 KB (0x20000) @0x3000 0000 - shared
    • SRAM2 : 128 KB (0x20000) @0x3002 0000 - shared
    • SRAM3 : 32 KB (0x8000) @0x3004 0000 - shared
    • SRAM4 : 64 KB (0x10000) @0x3800 0000 - shared

Dual mode configuration

Configuration can be checked/changed with STM32CubeProgrammer software in the Option bytes (OB) panel.

https://www.st.com/en/development-tools/stm32cubeprog.html

Default configuration is booting both CM7 and CM4:

  • CM7 at 0x0800 0000
  • CM4 at 0x0810 0000

Note that Drag and Drop feature for binary application (.bin files) is flashing at 0x0800 0000

IP HW usage warning

All resources (GPIO, UART, SPI, ...) can be used by both cores.

It is up to application to choose which instance is used by which core.

For GPIO, HW semaphore have been implemented which allows applications to use same GPIO port in both sides (CM4 can use PA_1, and CM7 PA_2).

NB : Virtual Com Port is using the same UART pins in CM4 and CM7.

It is not recommended to enable printf from both cores without any protection mechanism.

System clock configuration

Clock configuration is shared between both cores.

During boot procedure:

  • M7 core is managing clock tree settings, and then wake up M4
  • M4 is waiting for wake up from M7

When exiting Deep Sleep mode, first core (either M4 or M7) that woke up, is setting back this clock configuration.

Make application on M7 side

  • Flash memory bank 1 is used
  • DTCM and SRAM are used
  • SRAM3 is used for Ethernet support

As explained in the Dual mode configuration above part, you can drag and drop applications.

For application compilation, you can use DISCO_H747I or DISCO_H747I_CM7 target name.

For MBED tests execution, you have to use DISCO_H747I target name (mbed detect name).

Make application on M4 side

  • Flash memory bank 2 is used
  • SRAM1, SRAM1 and SRAM3 is used (with @0x1000 0000 alias)

For application compilation, you have to use DISCO_H747I_CM4 target name.

For flashing, method is depending on the format:

  • hexadecimal files: use drag and drop
  • binary files: use STM32CubeProgrammer software

hexa drag and drop

Please check the ST Link FW version you have:

$ mbedls
| platform_name | platform_name_unique | mount_point | serial_port | target_id                | daplink_version |
|---------------|----------------------|-------------|-------------|--------------------------|-----------------|
| DISCO_H747I   | DISCO_H747I[0]       | D:          | COM13       | 081402210D03E72132477E08 | V3J7M2          |

Minimum version is V3J7M2 (https://www.st.com/en/development-tools/stsw-link007.html)

Configuration to add in mbed-os json configuration:

        "OUTPUT_EXT": "hex",

binary flashing

STM32CubeProgrammer software is available:

https://www.st.com/en/development-tools/stm32cubeprog.html

Here is command lines for flashing (but you can use graphical tool):

FLASHPATH="C:\Program Files (x86)\STMicroelectronics\STM32Cube\STM32CubeProgrammer\bin"
export PATH=$FLASHPATH:$PATH
STM32_Programmer_CLI -c port=SWD mode=UR -w BUILD/DISCO_H747I_CM4/ARM/mbed-os.bin 0x8100000

Ethernet limitation

WARNING: Ethernet connector is not enabled by default

More information in the wiki page : Ethernet HW Patch