You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -33,10 +31,53 @@ STM32H743ZI devices are based on the high-performance Arm Cortex-M7 32-bit RISC
33
31
- SRAM3 : 32 KB (0x8000) @0x3004 0000
34
32
- SRAM4 : 64 KB (0x10000) @0x3800 0000
35
33
34
+
### NUCLEO_H743ZI
35
+
36
+
Note that NUCLEO_H743ZI is deprecated. Please update your board to NUCLEO_H743ZI2:
37
+
- new MCU chip revision
38
+
- new ST Link version
39
+
40
+
**How to use NUCLEO_H743ZI with mbed-os-6:**
41
+
42
+
PeripheralPins.c and PinNames.h are available in mbed-os repo,
43
+
so you just have to create a custom_targets.json file with:
36
44
37
-
# DISCO_H747I
45
+
```
46
+
{
47
+
"NUCLEO_H743ZI": {
48
+
"inherits": [
49
+
"MCU_STM32H743xI"
50
+
],
51
+
"config": {
52
+
"d11_configuration": {
53
+
"help": "Value: PB_5 for the default board configuration, PA_7 in case of solder bridge update (SB33 on/ SB35 off)",
54
+
"value": "PB_5",
55
+
"macro_name": "STM32_D11_SPI_ETHERNET_PIN"
56
+
},
57
+
"hse_value": {
58
+
"value": "8000000",
59
+
"macro_name": "HSE_VALUE"
60
+
}
61
+
},
62
+
"device_has_add": [
63
+
"EMAC"
64
+
],
65
+
"overrides": {
66
+
"network-default-interface-type": "ETHERNET"
67
+
},
68
+
"supported_form_factors": [
69
+
"ARDUINO"
70
+
],
71
+
"device_name": "STM32H743ZI"
72
+
}
73
+
}
74
+
```
38
75
39
-
## Overview
76
+
# Dual core STM32
77
+
78
+
## STM32H747xx
79
+
80
+
### DISCO_H747I
40
81
41
82
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).
42
83
@@ -58,6 +99,45 @@ The STM32H7x7 lines combine the performance of the Cortex-M7 (with double-precis
58
99
- SRAM3 : 32 KB (0x8000) @0x3004 0000 - shared
59
100
- SRAM4 : 64 KB (0x10000) @0x3800 0000 - shared
60
101
102
+
103
+
**WARNING**: Ethernet connector is not enabled by default on this board
104
+
105
+
More information in the wiki page : [Ethernet HW Patch](https://os.mbed.com/teams/ST/wiki/DISCO_H747I-modifications-for-Ethernet)
0 commit comments