tests: drivers: flash: Add MAX32662EVKIT board overlay file
Enable flash driver test for MAX32662EVKIT board. Signed-off-by: Furkan Akkiz <hasanfurkan.akkiz@analog.com>
This commit is contained in:
parent
539a7a18d6
commit
b2b8957d80
|
@ -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(192)>;
|
||||
read-only;
|
||||
};
|
||||
|
||||
storage_partition: partition@30000 {
|
||||
label = "storage";
|
||||
reg = <0x30000 DT_SIZE_K(64)>;
|
||||
};
|
||||
};
|
||||
};
|
Loading…
Reference in New Issue