diff options
| author | PTH | 2021-02-11 15:23:00 +0100 |
|---|---|---|
| committer | Damien George | 2021-02-17 10:38:00 +1100 |
| commit | 6c4a5d185d7e70c22c0f72fb1cd8add251600548 (patch) | |
| tree | 71bcd9973be2e8f7bf93fd54710283a41f75207b /ports/zephyr/boards/nucleo_h743zi.overlay | |
| parent | 56a36899bdb472d5c2003164079bedeba42fa24d (diff) | |
zephyr/boards: Add support for the nucleo_h743zi board.
Diffstat (limited to 'ports/zephyr/boards/nucleo_h743zi.overlay')
| -rw-r--r-- | ports/zephyr/boards/nucleo_h743zi.overlay | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ports/zephyr/boards/nucleo_h743zi.overlay b/ports/zephyr/boards/nucleo_h743zi.overlay new file mode 100644 index 000000000..f5e6d4f92 --- /dev/null +++ b/ports/zephyr/boards/nucleo_h743zi.overlay @@ -0,0 +1,23 @@ +/* + * Copyright (c) 2021 Thomas Popp + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* delete the already defined storage partition and create a new and bigger one */ +/delete-node/ &storage_partition; + +&flash0 { + partitions { + compatible = "fixed-partitions"; + #address-cells = <1>; + #size-cells = <1>; + + + /* storage slot: 1024 KB in Flash Memory Bank 2 */ + storage_partition: partition@100000 { + label = "storage"; + reg = <0x00100000 0x100000>; + }; + }; +}; |
