tests: drivers: flash: Add MAX32655 boards overlay file
Enable flash test for MAX32655 boards. Signed-off-by: Sadik Ozer <sadik.ozer@analog.com>
This commit is contained in:
parent
f58a1993bd
commit
539a7a18d6
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Copyright (c) 2024 Analog Devices, Inc.
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
&flash0 {
|
||||
partitions {
|
||||
compatible = "fixed-partitions";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
||||
code_partition: partition@0 {
|
||||
reg = <0x0 DT_SIZE_K(384)>;
|
||||
read-only;
|
||||
};
|
||||
|
||||
storage_partition: partition@60000 {
|
||||
label = "storage";
|
||||
reg = <0x60000 DT_SIZE_K(128)>;
|
||||
};
|
||||
};
|
||||
};
|
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Copyright (c) 2024 Analog Devices, Inc.
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
&flash0 {
|
||||
partitions {
|
||||
compatible = "fixed-partitions";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
||||
code_partition: partition@0 {
|
||||
reg = <0x0 DT_SIZE_K(384)>;
|
||||
read-only;
|
||||
};
|
||||
|
||||
storage_partition: partition@60000 {
|
||||
label = "storage";
|
||||
reg = <0x60000 DT_SIZE_K(128)>;
|
||||
};
|
||||
};
|
||||
};
|
Loading…
Reference in New Issue