Commit d53f324c authored by Sara Touqan's avatar Sara Touqan Committed by Chris Friedt
Browse files

tests: sdio: Add write test to SDIO subsystem



This commit expands the SDIO subsystem test
suite by adding support for write test.
Also this commit adds needed conf/overlay
files for arduino portenta h7, nicla vision
and giga r1 for wifi_nm tests

Signed-off-by: default avatarSara Touqan <zephyr@exalt.ps>
parent 24caf433
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -12,3 +12,7 @@ tests:
    platform_exclude:
      - rd_rw612_bga/rw612/ethernet # Requires binary blobs to build
      - frdm_rw612 # Requires binary blobs to build
      - arduino_giga_r1/stm32h747xx/m7 # Requires binary blobs to build
      - arduino_nicla_vision/stm32h747xx/m7 # Requires binary blobs to build
      - arduino_portenta_h7/stm32h747xx/m7 # Requires binary blobs to build
      - arduino_portenta_h7@4.10.0/stm32h747xx/m7 # Requires binary blobs to build
+4 −0
Original line number Diff line number Diff line
# Copyright (c) 2025 EXALT Technologies.
# SPDX-License-Identifier: Apache-2.0

CONFIG_HEAP_MEM_POOL_SIZE=24576
+9 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2025 EXALT Technologies.
 *
 * SPDX-License-Identifier: Apache-2.0
 */

&wifi {
	status = "disabled";
};
+4 −0
Original line number Diff line number Diff line
# Copyright (c) 2025 EXALT Technologies.
# SPDX-License-Identifier: Apache-2.0

CONFIG_HEAP_MEM_POOL_SIZE=24576
+9 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2025 EXALT Technologies.
 *
 * SPDX-License-Identifier: Apache-2.0
 */

&wifi {
	status = "disabled";
};
Loading