diff --git a/samples/suit/smp_transfer/boards/nrf54h20dk_nrf54h20_cpuapp.overlay b/samples/suit/smp_transfer/boards/nrf54h20dk_nrf54h20_cpuapp.overlay index 7d27232b54ab..a7438a99ffa6 100644 --- a/samples/suit/smp_transfer/boards/nrf54h20dk_nrf54h20_cpuapp.overlay +++ b/samples/suit/smp_transfer/boards/nrf54h20dk_nrf54h20_cpuapp.overlay @@ -5,3 +5,10 @@ */ #include "nrf54h20dk_nrf54h20_cpuapp_common.dtsi" + + +&gpiote130 { + status = "okay"; + owned-channels = < 0x0 0x1 0x2 0x3 0x4 0x5 0x6 >; + //interrupts = <104 NRF_DEFAULT_IRQ_PRIORITY>; +}; diff --git a/samples/suit/smp_transfer/sysbuild/hci_ipc.conf b/samples/suit/smp_transfer/sysbuild/hci_ipc.conf index 2528a1a2679c..7a5ecb44613e 100644 --- a/samples/suit/smp_transfer/sysbuild/hci_ipc.conf +++ b/samples/suit/smp_transfer/sysbuild/hci_ipc.conf @@ -12,3 +12,10 @@ CONFIG_BT_CTLR_DATA_LENGTH_MAX=251 CONFIG_LOG=n CONFIG_LOG_PRINTK=n CONFIG_UART_CONSOLE=n + +CONFIG_NRF_REGTOOL_VERBOSITY=1 + +# CONFIG_DEBUG_LED_ENABLED=y +CONFIG_GPIO=y + +#CONFIG_IPC_SERVICE_ICMSG_BOND_NOTIFY_REPEAT_TO_MS=100 diff --git a/samples/suit/smp_transfer/sysbuild/hci_ipc.overlay b/samples/suit/smp_transfer/sysbuild/hci_ipc.overlay index 5d0abbea4925..08ed6671ffb5 100644 --- a/samples/suit/smp_transfer/sysbuild/hci_ipc.overlay +++ b/samples/suit/smp_transfer/sysbuild/hci_ipc.overlay @@ -13,3 +13,62 @@ &cpurad_rx_partitions { status = "okay"; }; + +/ { + aliases { + led0 = &led0; + led1 = &led1; + led2 = &led2; + led3 = &led3; + led4 = &led4; + led5 = &led5; + }; + + leds { + compatible = "gpio-leds"; + + led0: led_0 { + gpios = <&gpio2 0 GPIO_ACTIVE_HIGH>; + label = "Green LED 0"; + }; + + led1: led_1 { + gpios = <&gpio2 1 GPIO_ACTIVE_HIGH>; + label = "Green LED 1"; + }; + + led2: led_2 { + gpios = <&gpio2 2 GPIO_ACTIVE_HIGH>; + label = "Green LED 2"; + }; + + led3: led_3 { + gpios = <&gpio2 3 GPIO_ACTIVE_HIGH>; + label = "Green LED 3"; + }; + + led4: led_4 { + gpios = <&gpio2 0 GPIO_ACTIVE_HIGH>; + label = "Green LED 4"; + }; + + led5: led_5 { + gpios = <&gpio7 1 GPIO_ACTIVE_HIGH>; + label = "Green LED 5"; + }; + }; +}; + +&gpiote130 { + status = "okay"; + owned-channels = <7>; + //interrupts = <104 NRF_DEFAULT_IRQ_PRIORITY>; +}; + +&gpio2 { + status = "okay"; +}; + +&gpio7 { + status = "okay"; +};