From 539fc0392157255d9f07b68d721a06a64355e681 Mon Sep 17 00:00:00 2001 From: Rubin Gerritsen Date: Mon, 9 Sep 2024 13:42:01 +0200 Subject: [PATCH] samples: radio_notification_callback: Fix building empty app core Fixes building for 53 network core after 9e8d1713a8b12cc0c81356cc18bb0d00ebe2888a. SOC_COMPATIBLE_NRF5340_CPUNET was not being set in a sysbuild context. Using SOC_SERIES_NRF53X instead. Signed-off-by: Rubin Gerritsen --- samples/bluetooth/radio_notification_cb/Kconfig.sysbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/bluetooth/radio_notification_cb/Kconfig.sysbuild b/samples/bluetooth/radio_notification_cb/Kconfig.sysbuild index 1496b61eac1c..a1f6b36dcb2f 100644 --- a/samples/bluetooth/radio_notification_cb/Kconfig.sysbuild +++ b/samples/bluetooth/radio_notification_cb/Kconfig.sysbuild @@ -5,6 +5,6 @@ # config NRF_DEFAULT_EMPTY - default y if SOC_COMPATIBLE_NRF5340_CPUNET + default y if SOC_SERIES_NRF53X source "share/sysbuild/Kconfig"