zephyr/samples/subsys/usb
Gerson Fernando Budke 9e08560f08 samples: usb: dfu: Exclude Atmel SAM
The dfu sample filter seems not to work. It should select only boards
when slot0_partition and slot1_partition are define.

filter:
    dt_label_with_parent_compat_enabled("slot0_partition",
					"fixed-partitions")
and dt_label_with_parent_compat_enabled("slot1_partition",
					"fixed-partitions")
and dt_chosen_enabled("zephyr,flash-controller")
and CONFIG_FLASH_HAS_DRIVER_ENABLED

This means that sam4l_ek, same54_xpro and samr21_xpro should never be
selected because the final devicetree is defined without those
partitions. See below fragment from same54_xpro:

nvmctrl: nvmctrl@41004000 {
	compatible = "atmel,sam0-nvmctrl";
	reg = < 0x41004000 0x22 >;
	interrupts = < 0x1d 0x0 >, < 0x1e 0x0 >;
	#address-cells = < 0x1 >;
	#size-cells = < 0x1 >;
	lock-regions = < 0x20 >;
	flash0: flash@0 {
		compatible = "soc-nv-flash";
		write-block-size = < 0x8 >;
		reg = < 0x0 0x100000 >;
		partitions {
			compatible = "fixed-partitions";
			#address-cells = < 0x1 >;
			#size-cells = < 0x1 >;
			storage_partition: partition@fc000 {
				label = "storage";
				reg = < 0xfc000 0x4000 >;
			};
		};
	};
};

This excludes same54_xpro and samr21_xpro to avoid ci issues until ci
filter is fixed.

Signed-off-by: Gerson Fernando Budke <nandojve@gmail.com>
2025-01-24 13:15:57 +01:00
..
audio usb: device: fix unaligned memory access in Audio class 2024-11-26 15:44:45 -05:00
cdc_acm usb: device_next: cdc_acm: allow setting the interface description 2025-01-24 01:14:28 +01:00
common samples: usb: add samples function to setup USB device only 2024-11-19 09:53:29 -05:00
console
dfu samples: usb: dfu: Exclude Atmel SAM 2025-01-24 13:15:57 +01:00
hid-keyboard boards: mimxrt1060_evk: Convert to variants 2024-12-20 22:59:59 +01:00
hid-mouse boards: nxp: add RT1060 EVKC support 2025-01-21 19:27:39 +01:00
inf
mass boards: mimxrt1060_evk: Convert to variants 2024-12-20 22:59:59 +01:00
shell boards: mimxrt1060_evk: Convert to variants 2024-12-20 22:59:59 +01:00
testusb
uac2_explicit_feedback samples, tests: remove usage of space-separated lists 2024-12-04 14:14:53 -05:00
uac2_implicit_feedback samples, tests: remove usage of space-separated lists 2024-12-04 14:14:53 -05:00
webusb
webusb-next boards: mimxrt1060_evk: Convert to variants 2024-12-20 22:59:59 +01:00
usb.rst doc: samples: Adopt code-sample-category across tree 2024-09-23 12:00:00 +02:00