zephyr/boards: Add support for the nucleo_h743zi board.

pull/6907/head
PTH 2021-02-11 15:23:00 +01:00 zatwierdzone przez Damien George
rodzic 56a36899bd
commit 6c4a5d185d
2 zmienionych plików z 30 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,7 @@
# disable console subsys to get REPL working
CONFIG_CONSOLE_SUBSYS=n
# flash config
CONFIG_FLASH=y
CONFIG_FLASH_MAP=y
CONFIG_FLASH_PAGE_LAYOUT=y

Wyświetl plik

@ -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>;
};
};
};