Skip to content

Commit f4fa86f

Browse files
committed
fix the Kconfig
1 parent a96681d commit f4fa86f

File tree

2 files changed

+4
-27
lines changed

2 files changed

+4
-27
lines changed

Kconfig

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,6 @@ menu "softdevice support sample Config"
44
default y
55
endmenu
66

7-
config NRFX_CLOCK_ENABLED
8-
int
9-
default 1
10-
config NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY
11-
int
12-
default 7
13-
config NRFX_RTC_ENABLED
14-
int
15-
default 1
16-
config NRFX_RTC1_ENABLED
17-
int
18-
default 1
19-
config NRF_CLOCK_ENABLED
20-
int
21-
default 1
22-
config NRF_SDH_BLE_ENABLED
23-
int
24-
default 1
25-
config NRF_SDH_ENABLED
26-
int
27-
default 1
28-
config NRF_SDH_SOC_ENABLED
29-
int
30-
default 1
7+
318

329

Sconscript

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ if GetDepend(['BSP_USING_SOFTDEVICE']):
5757

5858
path += [cwd + '/integration/nrfx/legacy']
5959
CPPDEFINES = ['SOFTDEVICE_PRESENT', 'CONFIG_GPIO_AS_PINRESET']
60+
group = DefineGroup('SOFTDEVICE', SOFTDEVICE_SRC, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
6061
else:
6162
SOFTDEVICE_SRC = Split('''
6263
''')
63-
path = ['']
64-
CPPDEFINES = ['']
64+
group = DefineGroup('SOFTDEVICE', SOFTDEVICE_SRC, depend = [''])
65+
6566

66-
group = DefineGroup('SOFTDEVICE', SOFTDEVICE_SRC, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
6767

6868
Return('group')

0 commit comments

Comments
 (0)