File tree 3 files changed +25
-1
lines changed
doc/nrf/releases_and_maturity/releases
3 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,14 @@ Zigbee
171
171
172
172
|no_changes_yet_note |
173
173
174
+ Gazell
175
+ ------
176
+
177
+ * Added:
178
+
179
+ * :kconfig:option: `CONFIG_GAZELL_PAIRING_USER_CONFIG_ENABLE ` and :kconfig:option: `CONFIG_GAZELL_PAIRING_USER_CONFIG_FILE `.
180
+ The options allow to use user-specific file as Gazell pairing configuration header to override the pairing configuration.
181
+
174
182
Enhanced ShockBurst (ESB)
175
183
-------------------------
176
184
Original file line number Diff line number Diff line change 15
15
#include <stdint.h>
16
16
#include <stdbool.h>
17
17
#include <nrf_gzll.h>
18
+ #if defined(CONFIG_GAZELL_PAIRING_USER_CONFIG_ENABLE )
19
+ #include CONFIG_GAZELL_PAIRING_USER_CONFIG_FILE
20
+ #else
18
21
#include "gzp_config.h"
22
+ #endif /* CONFIG_GAZELL_PAIRING_USER_CONFIG_ENABLE */
19
23
20
24
#ifdef __cplusplus
21
25
extern "C" {
Original file line number Diff line number Diff line change @@ -34,7 +34,19 @@ config GAZELL_PAIRING_HOST
34
34
bool "Host"
35
35
depends on ENTROPY_GENERATOR
36
36
37
- endchoice
37
+ endchoice # GAZELL_PAIRING_ROLE
38
+
39
+ config GAZELL_PAIRING_USER_CONFIG_ENABLE
40
+ bool "Use application-specific Gazell Pairing configuration file"
41
+
42
+ if GAZELL_PAIRING_USER_CONFIG_ENABLE
43
+ config GAZELL_PAIRING_USER_CONFIG_FILE
44
+ string "Gazell Pairing configuration file name"
45
+ default "gzp_user_config.h"
46
+ help
47
+ Modify the file name to use an application-specific Gazell Pairing configuration file.
48
+
49
+ endif # GAZELL_PAIRING_USER_CONFIG_ENABLE
38
50
39
51
if GAZELL_PAIRING_DEVICE
40
52
You can’t perform that action at this time.
0 commit comments