Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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>;
};
7 changes: 7 additions & 0 deletions samples/suit/smp_transfer/sysbuild/hci_ipc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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
59 changes: 59 additions & 0 deletions samples/suit/smp_transfer/sysbuild/hci_ipc.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -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";
};
Loading