Enable following tests for MAX78002EVKIT: - tests/drivers/adc/adc_api - tests/drivers/counter/counter_basic_api - tests/drivers/dma/chan_blen_transfer - tests/drivers/dma/loop_transfer - tests/drivers/flash/common - tests/drivers/gpio/gpio_basic_api - tests/drivers/i2c/i2c_target_api - tests/drivers/pwm/pwm_api - tests/drivers/spi/spi_loopback - tests/drivers/w1/w1_api Signed-off-by: Furkan Akkiz <hasanfurkan.akkiz@analog.com>
23 lines
389 B
Text
23 lines
389 B
Text
/*
|
|
* 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_M(2)>;
|
|
read-only;
|
|
};
|
|
|
|
storage_partition: partition@200000 {
|
|
label = "storage";
|
|
reg = <0x200000 DT_SIZE_K(512)>;
|
|
};
|
|
};
|
|
};
|