1 /*
2  * Copyright (c) 2024 - 2025, Nordic Semiconductor ASA
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright notice, this
11  *    list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the copyright holder nor the names of its
18  *    contributors may be used to endorse or promote products derived from this
19  *    software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef NRFX_CONFIG_NRF9230_ENGB_APPLICATION_H__
35 #define NRFX_CONFIG_NRF9230_ENGB_APPLICATION_H__
36 
37 #ifndef NRFX_CONFIG_H__
38 #error "This file should not be included directly. Include nrfx_config.h instead."
39 #endif
40 
41 
42 /**
43  * @brief NRFX_DEFAULT_IRQ_PRIORITY
44  *
45  * Integer value. Minimum: 0. Maximum: 7.
46  */
47 #ifndef NRFX_DEFAULT_IRQ_PRIORITY
48 #define NRFX_DEFAULT_IRQ_PRIORITY 7
49 #endif
50 
51 /**
52  * @brief NRFX_BELLBOARD_ENABLED
53  *
54  * Boolean. Accepted values: 0 and 1.
55  */
56 #ifndef NRFX_BELLBOARD_ENABLED
57 #define NRFX_BELLBOARD_ENABLED 0
58 #endif
59 
60 /**
61  * @brief NRFX_BELLBOARD_DEFAULT_CONFIG_IRQ_PRIORITY
62  *
63  * Integer value. Minimum: 0. Maximum: 7.
64  */
65 #ifndef NRFX_BELLBOARD_DEFAULT_CONFIG_IRQ_PRIORITY
66 #define NRFX_BELLBOARD_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
67 #endif
68 
69 /**
70  * @brief NRFX_BELLBOARD0_ENABLED
71  *
72  * Boolean. Accepted values: 0 and 1.
73  */
74 #ifndef NRFX_BELLBOARD0_ENABLED
75 #define NRFX_BELLBOARD0_ENABLED 0
76 #endif
77 
78 /**
79  * @brief NRFX_BELLBOARD1_ENABLED
80  *
81  * Boolean. Accepted values: 0 and 1.
82  */
83 #ifndef NRFX_BELLBOARD1_ENABLED
84 #define NRFX_BELLBOARD1_ENABLED 0
85 #endif
86 
87 /**
88  * @brief NRFX_BELLBOARD2_ENABLED
89  *
90  * Boolean. Accepted values: 0 and 1.
91  */
92 #ifndef NRFX_BELLBOARD2_ENABLED
93 #define NRFX_BELLBOARD2_ENABLED 0
94 #endif
95 
96 /**
97  * @brief NRFX_BELLBOARD3_ENABLED
98  *
99  * Boolean. Accepted values: 0 and 1.
100  */
101 #ifndef NRFX_BELLBOARD3_ENABLED
102 #define NRFX_BELLBOARD3_ENABLED 0
103 #endif
104 
105 /**
106  * @brief NRFX_COMP_ENABLED
107  *
108  * Boolean. Accepted values: 0 and 1.
109  */
110 #ifndef NRFX_COMP_ENABLED
111 #define NRFX_COMP_ENABLED 0
112 #endif
113 
114 /**
115  * @brief NRFX_COMP_DEFAULT_CONFIG_IRQ_PRIORITY
116  *
117  * Integer value. Minimum: 0. Maximum: 7.
118  */
119 #ifndef NRFX_COMP_DEFAULT_CONFIG_IRQ_PRIORITY
120 #define NRFX_COMP_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
121 #endif
122 
123 /**
124  * @brief NRFX_COMP_CONFIG_LOG_ENABLED
125  *
126  * Boolean. Accepted values: 0 and 1.
127  */
128 #ifndef NRFX_COMP_CONFIG_LOG_ENABLED
129 #define NRFX_COMP_CONFIG_LOG_ENABLED 0
130 #endif
131 
132 /**
133  * @brief NRFX_COMP_CONFIG_LOG_LEVEL
134  *
135  * Integer value.
136  * Supported values:
137  * - Off     = 0
138  * - Error   = 1
139  * - Warning = 2
140  * - Info    = 3
141  * - Debug   = 4
142  */
143 #ifndef NRFX_COMP_CONFIG_LOG_LEVEL
144 #define NRFX_COMP_CONFIG_LOG_LEVEL 3
145 #endif
146 
147 /**
148  * @brief NRFX_DPPI_ENABLED
149  *
150  * Boolean. Accepted values: 0 and 1.
151  */
152 #ifndef NRFX_DPPI_ENABLED
153 #define NRFX_DPPI_ENABLED 0
154 #endif
155 
156 /**
157  * @brief NRFX_DPPI_CONFIG_LOG_ENABLED
158  *
159  * Boolean. Accepted values: 0 and 1.
160  */
161 #ifndef NRFX_DPPI_CONFIG_LOG_ENABLED
162 #define NRFX_DPPI_CONFIG_LOG_ENABLED 0
163 #endif
164 
165 /**
166  * @brief NRFX_DPPI_CONFIG_LOG_LEVEL
167  *
168  * Integer value.
169  * Supported values:
170  * - Off     = 0
171  * - Error   = 1
172  * - Warning = 2
173  * - Info    = 3
174  * - Debug   = 4
175  */
176 #ifndef NRFX_DPPI_CONFIG_LOG_LEVEL
177 #define NRFX_DPPI_CONFIG_LOG_LEVEL 3
178 #endif
179 
180 /**
181  * @brief NRFX_DPPI120_CONFIG_OWNED_CHANNELS_MASK
182  */
183 #ifndef NRFX_DPPI120_CONFIG_OWNED_CHANNELS_MASK
184 #define NRFX_DPPI120_CONFIG_OWNED_CHANNELS_MASK 0x000000ff
185 #endif
186 
187 /**
188  * @brief NRFX_DPPI130_CONFIG_OWNED_CHANNELS_MASK
189  */
190 #ifndef NRFX_DPPI130_CONFIG_OWNED_CHANNELS_MASK
191 #define NRFX_DPPI130_CONFIG_OWNED_CHANNELS_MASK 0x000000ff
192 #endif
193 
194 /**
195  * @brief NRFX_DPPI131_CONFIG_OWNED_CHANNELS_MASK
196  */
197 #ifndef NRFX_DPPI131_CONFIG_OWNED_CHANNELS_MASK
198 #define NRFX_DPPI131_CONFIG_OWNED_CHANNELS_MASK 0x000000ff
199 #endif
200 
201 /**
202  * @brief NRFX_DPPI132_CONFIG_OWNED_CHANNELS_MASK
203  */
204 #ifndef NRFX_DPPI132_CONFIG_OWNED_CHANNELS_MASK
205 #define NRFX_DPPI132_CONFIG_OWNED_CHANNELS_MASK 0
206 #endif
207 
208 /**
209  * @brief NRFX_DPPI133_CONFIG_OWNED_CHANNELS_MASK
210  */
211 #ifndef NRFX_DPPI133_CONFIG_OWNED_CHANNELS_MASK
212 #define NRFX_DPPI133_CONFIG_OWNED_CHANNELS_MASK 0x000000ff
213 #endif
214 
215 /**
216  * @brief NRFX_DPPI134_CONFIG_OWNED_CHANNELS_MASK
217  */
218 #ifndef NRFX_DPPI134_CONFIG_OWNED_CHANNELS_MASK
219 #define NRFX_DPPI134_CONFIG_OWNED_CHANNELS_MASK 0x000000ff
220 #endif
221 
222 /**
223  * @brief NRFX_DPPI135_CONFIG_OWNED_CHANNELS_MASK
224  */
225 #ifndef NRFX_DPPI135_CONFIG_OWNED_CHANNELS_MASK
226 #define NRFX_DPPI135_CONFIG_OWNED_CHANNELS_MASK 0x000000ff
227 #endif
228 
229 /**
230  * @brief NRFX_DPPI136_CONFIG_OWNED_CHANNELS_MASK
231  */
232 #ifndef NRFX_DPPI136_CONFIG_OWNED_CHANNELS_MASK
233 #define NRFX_DPPI136_CONFIG_OWNED_CHANNELS_MASK 0x000000ff
234 #endif
235 
236 /**
237  * @brief NRFX_DPPI120_PUB_CONFIG_ALLOWED_CHANNELS_MASK
238  */
239 #ifndef NRFX_DPPI120_PUB_CONFIG_ALLOWED_CHANNELS_MASK
240 #define NRFX_DPPI120_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0x000000f0
241 #endif
242 
243 /**
244  * @brief NRFX_DPPI130_PUB_CONFIG_ALLOWED_CHANNELS_MASK
245  */
246 #ifndef NRFX_DPPI130_PUB_CONFIG_ALLOWED_CHANNELS_MASK
247 #define NRFX_DPPI130_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0x000000ff
248 #endif
249 
250 /**
251  * @brief NRFX_DPPI131_PUB_CONFIG_ALLOWED_CHANNELS_MASK
252  */
253 #ifndef NRFX_DPPI131_PUB_CONFIG_ALLOWED_CHANNELS_MASK
254 #define NRFX_DPPI131_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0
255 #endif
256 
257 /**
258  * @brief NRFX_DPPI132_PUB_CONFIG_ALLOWED_CHANNELS_MASK
259  */
260 #ifndef NRFX_DPPI132_PUB_CONFIG_ALLOWED_CHANNELS_MASK
261 #define NRFX_DPPI132_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0
262 #endif
263 
264 /**
265  * @brief NRFX_DPPI133_PUB_CONFIG_ALLOWED_CHANNELS_MASK
266  */
267 #ifndef NRFX_DPPI133_PUB_CONFIG_ALLOWED_CHANNELS_MASK
268 #define NRFX_DPPI133_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0x0000001e
269 #endif
270 
271 /**
272  * @brief NRFX_DPPI134_PUB_CONFIG_ALLOWED_CHANNELS_MASK
273  */
274 #ifndef NRFX_DPPI134_PUB_CONFIG_ALLOWED_CHANNELS_MASK
275 #define NRFX_DPPI134_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0x00000020
276 #endif
277 
278 /**
279  * @brief NRFX_DPPI135_PUB_CONFIG_ALLOWED_CHANNELS_MASK
280  */
281 #ifndef NRFX_DPPI135_PUB_CONFIG_ALLOWED_CHANNELS_MASK
282 #define NRFX_DPPI135_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0x00000040
283 #endif
284 
285 /**
286  * @brief NRFX_DPPI136_PUB_CONFIG_ALLOWED_CHANNELS_MASK
287  */
288 #ifndef NRFX_DPPI136_PUB_CONFIG_ALLOWED_CHANNELS_MASK
289 #define NRFX_DPPI136_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0x00000081
290 #endif
291 
292 /**
293  * @brief NRFX_DPPI120_SUB_CONFIG_ALLOWED_CHANNELS_MASK
294  */
295 #ifndef NRFX_DPPI120_SUB_CONFIG_ALLOWED_CHANNELS_MASK
296 #define NRFX_DPPI120_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0x0000000f
297 #endif
298 
299 /**
300  * @brief NRFX_DPPI130_SUB_CONFIG_ALLOWED_CHANNELS_MASK
301  */
302 #ifndef NRFX_DPPI130_SUB_CONFIG_ALLOWED_CHANNELS_MASK
303 #define NRFX_DPPI130_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0x000000ff
304 #endif
305 
306 /**
307  * @brief NRFX_DPPI131_SUB_CONFIG_ALLOWED_CHANNELS_MASK
308  */
309 #ifndef NRFX_DPPI131_SUB_CONFIG_ALLOWED_CHANNELS_MASK
310 #define NRFX_DPPI131_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0x000000ff
311 #endif
312 
313 /**
314  * @brief NRFX_DPPI132_SUB_CONFIG_ALLOWED_CHANNELS_MASK
315  */
316 #ifndef NRFX_DPPI132_SUB_CONFIG_ALLOWED_CHANNELS_MASK
317 #define NRFX_DPPI132_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0
318 #endif
319 
320 /**
321  * @brief NRFX_DPPI133_SUB_CONFIG_ALLOWED_CHANNELS_MASK
322  */
323 #ifndef NRFX_DPPI133_SUB_CONFIG_ALLOWED_CHANNELS_MASK
324 #define NRFX_DPPI133_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0x000000e1
325 #endif
326 
327 /**
328  * @brief NRFX_DPPI134_SUB_CONFIG_ALLOWED_CHANNELS_MASK
329  */
330 #ifndef NRFX_DPPI134_SUB_CONFIG_ALLOWED_CHANNELS_MASK
331 #define NRFX_DPPI134_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0x000000df
332 #endif
333 
334 /**
335  * @brief NRFX_DPPI135_SUB_CONFIG_ALLOWED_CHANNELS_MASK
336  */
337 #ifndef NRFX_DPPI135_SUB_CONFIG_ALLOWED_CHANNELS_MASK
338 #define NRFX_DPPI135_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0x000000bf
339 #endif
340 
341 /**
342  * @brief NRFX_DPPI136_SUB_CONFIG_ALLOWED_CHANNELS_MASK
343  */
344 #ifndef NRFX_DPPI136_SUB_CONFIG_ALLOWED_CHANNELS_MASK
345 #define NRFX_DPPI136_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0x0000007e
346 #endif
347 
348 /**
349  * @brief NRFX_DPPI120_ENABLED
350  *
351  * Boolean. Accepted values: 0 and 1.
352  */
353 #ifndef NRFX_DPPI120_ENABLED
354 #define NRFX_DPPI120_ENABLED 0
355 #endif
356 
357 /**
358  * @brief NRFX_DPPI130_ENABLED
359  *
360  * Boolean. Accepted values: 0 and 1.
361  */
362 #ifndef NRFX_DPPI130_ENABLED
363 #define NRFX_DPPI130_ENABLED 0
364 #endif
365 
366 /**
367  * @brief NRFX_DPPI131_ENABLED
368  *
369  * Boolean. Accepted values: 0 and 1.
370  */
371 #ifndef NRFX_DPPI131_ENABLED
372 #define NRFX_DPPI131_ENABLED 0
373 #endif
374 
375 /**
376  * @brief NRFX_DPPI132_ENABLED
377  *
378  * Boolean. Accepted values: 0 and 1.
379  */
380 #ifndef NRFX_DPPI132_ENABLED
381 #define NRFX_DPPI132_ENABLED 0
382 #endif
383 
384 /**
385  * @brief NRFX_DPPI133_ENABLED
386  *
387  * Boolean. Accepted values: 0 and 1.
388  */
389 #ifndef NRFX_DPPI133_ENABLED
390 #define NRFX_DPPI133_ENABLED 0
391 #endif
392 
393 /**
394  * @brief NRFX_DPPI134_ENABLED
395  *
396  * Boolean. Accepted values: 0 and 1.
397  */
398 #ifndef NRFX_DPPI134_ENABLED
399 #define NRFX_DPPI134_ENABLED 0
400 #endif
401 
402 /**
403  * @brief NRFX_DPPI135_ENABLED
404  *
405  * Boolean. Accepted values: 0 and 1.
406  */
407 #ifndef NRFX_DPPI135_ENABLED
408 #define NRFX_DPPI135_ENABLED 0
409 #endif
410 
411 /**
412  * @brief NRFX_DPPI136_ENABLED
413  *
414  * Boolean. Accepted values: 0 and 1.
415  */
416 #ifndef NRFX_DPPI136_ENABLED
417 #define NRFX_DPPI136_ENABLED 0
418 #endif
419 
420 /**
421  * @brief NRFX_EGU_ENABLED
422  *
423  * Boolean. Accepted values: 0 and 1.
424  */
425 #ifndef NRFX_EGU_ENABLED
426 #define NRFX_EGU_ENABLED 0
427 #endif
428 
429 /**
430  * @brief NRFX_EGU_DEFAULT_CONFIG_IRQ_PRIORITY
431  *
432  * Integer value. Minimum: 0. Maximum: 7.
433  */
434 #ifndef NRFX_EGU_DEFAULT_CONFIG_IRQ_PRIORITY
435 #define NRFX_EGU_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
436 #endif
437 
438 /**
439  * @brief NRFX_EGU130_ENABLED
440  *
441  * Boolean. Accepted values: 0 and 1.
442  */
443 #ifndef NRFX_EGU130_ENABLED
444 #define NRFX_EGU130_ENABLED 0
445 #endif
446 
447 /**
448  * @brief NRFX_GPIOTE_ENABLED
449  *
450  * Boolean. Accepted values: 0 and 1.
451  */
452 #ifndef NRFX_GPIOTE_ENABLED
453 #define NRFX_GPIOTE_ENABLED 0
454 #endif
455 
456 /**
457  * @brief NRFX_GPIOTE_DEFAULT_CONFIG_IRQ_PRIORITY
458  *
459  * Integer value. Minimum: 0. Maximum: 7.
460  */
461 #ifndef NRFX_GPIOTE_DEFAULT_CONFIG_IRQ_PRIORITY
462 #define NRFX_GPIOTE_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
463 #endif
464 
465 /**
466  * @brief NRFX_GPIOTE_CONFIG_NUM_OF_EVT_HANDLERS
467  *
468  * Integer value. Minimum: 0. Maximum: 15.
469  */
470 #ifndef NRFX_GPIOTE_CONFIG_NUM_OF_EVT_HANDLERS
471 #define NRFX_GPIOTE_CONFIG_NUM_OF_EVT_HANDLERS 2
472 #endif
473 
474 /**
475  * @brief NRFX_GPIOTE_CONFIG_LOG_ENABLED
476  *
477  * Boolean. Accepted values: 0 and 1.
478  */
479 #ifndef NRFX_GPIOTE_CONFIG_LOG_ENABLED
480 #define NRFX_GPIOTE_CONFIG_LOG_ENABLED 0
481 #endif
482 
483 /**
484  * @brief NRFX_GPIOTE_CONFIG_LOG_LEVEL
485  *
486  * Integer value.
487  * Supported values:
488  * - Off     = 0
489  * - Error   = 1
490  * - Warning = 2
491  * - Info    = 3
492  * - Debug   = 4
493  */
494 #ifndef NRFX_GPIOTE_CONFIG_LOG_LEVEL
495 #define NRFX_GPIOTE_CONFIG_LOG_LEVEL 3
496 #endif
497 
498 /**
499  * @brief NRFX_GPIOTE130_ENABLED
500  *
501  * Boolean. Accepted values: 0 and 1.
502  */
503 #ifndef NRFX_GPIOTE130_ENABLED
504 #define NRFX_GPIOTE130_ENABLED 0
505 #endif
506 
507 /**
508  * @brief NRFX_GPIOTE131_ENABLED
509  *
510  * Boolean. Accepted values: 0 and 1.
511  */
512 #ifndef NRFX_GPIOTE131_ENABLED
513 #define NRFX_GPIOTE131_ENABLED 0
514 #endif
515 
516 /**
517  * @brief NRFX_GRTC_ENABLED
518  *
519  * Boolean. Accepted values: 0 and 1.
520  */
521 #ifndef NRFX_GRTC_ENABLED
522 #define NRFX_GRTC_ENABLED 0
523 #endif
524 
525 /**
526  * @brief NRFX_GRTC_CONFIG_AUTOEN
527  *
528  * Boolean. Accepted values: 0 and 1.
529  */
530 #ifndef NRFX_GRTC_CONFIG_AUTOEN
531 #define NRFX_GRTC_CONFIG_AUTOEN 1
532 #endif
533 
534 /**
535  * @brief NRFX_GRTC_CONFIG_AUTOSTART
536  *
537  * Boolean. Accepted values: 0 and 1.
538  */
539 #ifndef NRFX_GRTC_CONFIG_AUTOSTART
540 #define NRFX_GRTC_CONFIG_AUTOSTART 0
541 #endif
542 
543 /**
544  * @brief NRFX_GRTC_CONFIG_CLEAR_AT_INIT
545  *
546  * Boolean. Accepted values: 0 and 1.
547  */
548 #ifndef NRFX_GRTC_CONFIG_CLEAR_AT_INIT
549 #define NRFX_GRTC_CONFIG_CLEAR_AT_INIT 0
550 #endif
551 
552 /**
553  * @brief NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS
554  *
555  * Integer value.
556  */
557 #ifndef NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS
558 #define NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS 4
559 #endif
560 
561 /**
562  * @brief NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK
563  */
564 #ifndef NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK
565 #define NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK 0x000000f0
566 #endif
567 
568 /**
569  * @brief NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY
570  *
571  * Integer value. Minimum: 0. Maximum: 7.
572  */
573 #ifndef NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY
574 #define NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
575 #endif
576 
577 /**
578  * @brief NRFX_GRTC_CONFIG_LOG_ENABLED
579  *
580  * Boolean. Accepted values: 0 and 1.
581  */
582 #ifndef NRFX_GRTC_CONFIG_LOG_ENABLED
583 #define NRFX_GRTC_CONFIG_LOG_ENABLED 0
584 #endif
585 
586 /**
587  * @brief NRFX_GRTC_CONFIG_LOG_LEVEL
588  *
589  * Integer value.
590  * Supported values:
591  * - Off     = 0
592  * - Error   = 1
593  * - Warning = 2
594  * - Info    = 3
595  * - Debug   = 4
596  */
597 #ifndef NRFX_GRTC_CONFIG_LOG_LEVEL
598 #define NRFX_GRTC_CONFIG_LOG_LEVEL 3
599 #endif
600 
601 /**
602  * @brief NRFX_I2S_ENABLED
603  *
604  * Boolean. Accepted values: 0 and 1.
605  */
606 #ifndef NRFX_I2S_ENABLED
607 #define NRFX_I2S_ENABLED 0
608 #endif
609 
610 /**
611  * @brief NRFX_I2S_DEFAULT_CONFIG_IRQ_PRIORITY
612  *
613  * Integer value. Minimum: 0. Maximum: 7.
614  */
615 #ifndef NRFX_I2S_DEFAULT_CONFIG_IRQ_PRIORITY
616 #define NRFX_I2S_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
617 #endif
618 
619 /**
620  * @brief NRFX_I2S_CONFIG_LOG_ENABLED
621  *
622  * Boolean. Accepted values: 0 and 1.
623  */
624 #ifndef NRFX_I2S_CONFIG_LOG_ENABLED
625 #define NRFX_I2S_CONFIG_LOG_ENABLED 0
626 #endif
627 
628 /**
629  * @brief NRFX_I2S_CONFIG_LOG_LEVEL
630  *
631  * Integer value.
632  * Supported values:
633  * - Off     = 0
634  * - Error   = 1
635  * - Warning = 2
636  * - Info    = 3
637  * - Debug   = 4
638  */
639 #ifndef NRFX_I2S_CONFIG_LOG_LEVEL
640 #define NRFX_I2S_CONFIG_LOG_LEVEL 3
641 #endif
642 
643 /**
644  * @brief NRFX_I2S130_ENABLED
645  *
646  * Boolean. Accepted values: 0 and 1.
647  */
648 #ifndef NRFX_I2S130_ENABLED
649 #define NRFX_I2S130_ENABLED 0
650 #endif
651 
652 /**
653  * @brief NRFX_I2S131_ENABLED
654  *
655  * Boolean. Accepted values: 0 and 1.
656  */
657 #ifndef NRFX_I2S131_ENABLED
658 #define NRFX_I2S131_ENABLED 0
659 #endif
660 
661 /**
662  * @brief NRFX_IPCT_CONFIG_OWNED_CHANNELS_MASK
663  */
664 #ifndef NRFX_IPCT_CONFIG_OWNED_CHANNELS_MASK
665 #define NRFX_IPCT_CONFIG_OWNED_CHANNELS_MASK 0x0000000f
666 #endif
667 
668 /**
669  * @brief NRFX_IPCT_PUB_CONFIG_ALLOWED_CHANNELS_MASK
670  */
671 #ifndef NRFX_IPCT_PUB_CONFIG_ALLOWED_CHANNELS_MASK
672 #define NRFX_IPCT_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0x00000003
673 #endif
674 
675 /**
676  * @brief NRFX_IPCT_SUB_CONFIG_ALLOWED_CHANNELS_MASK
677  */
678 #ifndef NRFX_IPCT_SUB_CONFIG_ALLOWED_CHANNELS_MASK
679 #define NRFX_IPCT_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0x0000000c
680 #endif
681 
682 /**
683  * @brief NRFX_IPCT120_CONFIG_OWNED_CHANNELS_MASK
684  */
685 #ifndef NRFX_IPCT120_CONFIG_OWNED_CHANNELS_MASK
686 #define NRFX_IPCT120_CONFIG_OWNED_CHANNELS_MASK 0
687 #endif
688 
689 /**
690  * @brief NRFX_IPCT130_CONFIG_OWNED_CHANNELS_MASK
691  */
692 #ifndef NRFX_IPCT130_CONFIG_OWNED_CHANNELS_MASK
693 #define NRFX_IPCT130_CONFIG_OWNED_CHANNELS_MASK 0x0000000f
694 #endif
695 
696 /**
697  * @brief NRFX_IPCT120_PUB_CONFIG_ALLOWED_CHANNELS_MASK
698  */
699 #ifndef NRFX_IPCT120_PUB_CONFIG_ALLOWED_CHANNELS_MASK
700 #define NRFX_IPCT120_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0
701 #endif
702 
703 /**
704  * @brief NRFX_IPCT130_PUB_CONFIG_ALLOWED_CHANNELS_MASK
705  */
706 #ifndef NRFX_IPCT130_PUB_CONFIG_ALLOWED_CHANNELS_MASK
707 #define NRFX_IPCT130_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0x0000000c
708 #endif
709 
710 /**
711  * @brief NRFX_IPCT120_SUB_CONFIG_ALLOWED_CHANNELS_MASK
712  */
713 #ifndef NRFX_IPCT120_SUB_CONFIG_ALLOWED_CHANNELS_MASK
714 #define NRFX_IPCT120_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0
715 #endif
716 
717 /**
718  * @brief NRFX_IPCT130_SUB_CONFIG_ALLOWED_CHANNELS_MASK
719  */
720 #ifndef NRFX_IPCT130_SUB_CONFIG_ALLOWED_CHANNELS_MASK
721 #define NRFX_IPCT130_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0x00000003
722 #endif
723 
724 /**
725  * @brief NRFX_LPCOMP_ENABLED
726  *
727  * Boolean. Accepted values: 0 and 1.
728  */
729 #ifndef NRFX_LPCOMP_ENABLED
730 #define NRFX_LPCOMP_ENABLED 0
731 #endif
732 
733 /**
734  * @brief NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY
735  *
736  * Integer value. Minimum: 0. Maximum: 7.
737  */
738 #ifndef NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY
739 #define NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
740 #endif
741 
742 /**
743  * @brief NRFX_LPCOMP_CONFIG_LOG_ENABLED
744  *
745  * Boolean. Accepted values: 0 and 1.
746  */
747 #ifndef NRFX_LPCOMP_CONFIG_LOG_ENABLED
748 #define NRFX_LPCOMP_CONFIG_LOG_ENABLED 0
749 #endif
750 
751 /**
752  * @brief NRFX_LPCOMP_CONFIG_LOG_LEVEL
753  *
754  * Integer value.
755  * Supported values:
756  * - Off     = 0
757  * - Error   = 1
758  * - Warning = 2
759  * - Info    = 3
760  * - Debug   = 4
761  */
762 #ifndef NRFX_LPCOMP_CONFIG_LOG_LEVEL
763 #define NRFX_LPCOMP_CONFIG_LOG_LEVEL 3
764 #endif
765 
766 /**
767  * @brief NRFX_MVDMA_ENABLED
768  *
769  * Boolean. Accepted values: 0 and 1.
770  */
771 #ifndef NRFX_MVDMA_ENABLED
772 #define NRFX_MVDMA_ENABLED 0
773 #endif
774 
775 /**
776  * @brief NRFX_MVDMA120_ENABLED
777  *
778  * Boolean. Accepted values: 0 and 1.
779  */
780 #ifndef NRFX_MVDMA120_ENABLED
781 #define NRFX_MVDMA120_ENABLED 0
782 #endif
783 
784 /**
785  * @brief NRFX_MVDMA121_ENABLED
786  *
787  * Boolean. Accepted values: 0 and 1.
788  */
789 #ifndef NRFX_MVDMA121_ENABLED
790 #define NRFX_MVDMA121_ENABLED 0
791 #endif
792 
793 /**
794  * @brief NRFX_PDM_ENABLED
795  *
796  * Boolean. Accepted values: 0 and 1.
797  */
798 #ifndef NRFX_PDM_ENABLED
799 #define NRFX_PDM_ENABLED 0
800 #endif
801 
802 /**
803  * @brief NRFX_PDM_DEFAULT_CONFIG_IRQ_PRIORITY
804  *
805  * Integer value. Minimum: 0. Maximum: 7.
806  */
807 #ifndef NRFX_PDM_DEFAULT_CONFIG_IRQ_PRIORITY
808 #define NRFX_PDM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
809 #endif
810 
811 /**
812  * @brief NRFX_PDM_CONFIG_LOG_ENABLED
813  *
814  * Boolean. Accepted values: 0 and 1.
815  */
816 #ifndef NRFX_PDM_CONFIG_LOG_ENABLED
817 #define NRFX_PDM_CONFIG_LOG_ENABLED 0
818 #endif
819 
820 /**
821  * @brief NRFX_PDM_CONFIG_LOG_LEVEL
822  *
823  * Integer value.
824  * Supported values:
825  * - Off     = 0
826  * - Error   = 1
827  * - Warning = 2
828  * - Info    = 3
829  * - Debug   = 4
830  */
831 #ifndef NRFX_PDM_CONFIG_LOG_LEVEL
832 #define NRFX_PDM_CONFIG_LOG_LEVEL 3
833 #endif
834 
835 /**
836  * @brief NRFX_PRS_ENABLED
837  *
838  * Boolean. Accepted values: 0 and 1.
839  */
840 #ifndef NRFX_PRS_ENABLED
841 #define NRFX_PRS_ENABLED 0
842 #endif
843 
844 /**
845  * @brief NRFX_PRS_CONFIG_LOG_ENABLED
846  *
847  * Boolean. Accepted values: 0 and 1.
848  */
849 #ifndef NRFX_PRS_CONFIG_LOG_ENABLED
850 #define NRFX_PRS_CONFIG_LOG_ENABLED 0
851 #endif
852 
853 /**
854  * @brief NRFX_PRS_CONFIG_LOG_LEVEL
855  *
856  * Integer value.
857  * Supported values:
858  * - Off     = 0
859  * - Error   = 1
860  * - Warning = 2
861  * - Info    = 3
862  * - Debug   = 4
863  */
864 #ifndef NRFX_PRS_CONFIG_LOG_LEVEL
865 #define NRFX_PRS_CONFIG_LOG_LEVEL 3
866 #endif
867 
868 /**
869  * @brief NRFX_PRS_BOX_0_ENABLED
870  *
871  * Boolean. Accepted values: 0 and 1.
872  */
873 #ifndef NRFX_PRS_BOX_0_ENABLED
874 #define NRFX_PRS_BOX_0_ENABLED 0
875 #endif
876 
877 /**
878  * @brief NRFX_PRS_BOX_1_ENABLED
879  *
880  * Boolean. Accepted values: 0 and 1.
881  */
882 #ifndef NRFX_PRS_BOX_1_ENABLED
883 #define NRFX_PRS_BOX_1_ENABLED 0
884 #endif
885 
886 /**
887  * @brief NRFX_PRS_BOX_2_ENABLED
888  *
889  * Boolean. Accepted values: 0 and 1.
890  */
891 #ifndef NRFX_PRS_BOX_2_ENABLED
892 #define NRFX_PRS_BOX_2_ENABLED 0
893 #endif
894 
895 /**
896  * @brief NRFX_PRS_BOX_3_ENABLED
897  *
898  * Boolean. Accepted values: 0 and 1.
899  */
900 #ifndef NRFX_PRS_BOX_3_ENABLED
901 #define NRFX_PRS_BOX_3_ENABLED 0
902 #endif
903 
904 /**
905  * @brief NRFX_PRS_BOX_4_ENABLED
906  *
907  * Boolean. Accepted values: 0 and 1.
908  */
909 #ifndef NRFX_PRS_BOX_4_ENABLED
910 #define NRFX_PRS_BOX_4_ENABLED 0
911 #endif
912 
913 /**
914  * @brief NRFX_PRS_BOX_5_ENABLED
915  *
916  * Boolean. Accepted values: 0 and 1.
917  */
918 #ifndef NRFX_PRS_BOX_5_ENABLED
919 #define NRFX_PRS_BOX_5_ENABLED 0
920 #endif
921 
922 /**
923  * @brief NRFX_PRS_BOX_6_ENABLED
924  *
925  * Boolean. Accepted values: 0 and 1.
926  */
927 #ifndef NRFX_PRS_BOX_6_ENABLED
928 #define NRFX_PRS_BOX_6_ENABLED 0
929 #endif
930 
931 /**
932  * @brief NRFX_PRS_BOX_7_ENABLED
933  *
934  * Boolean. Accepted values: 0 and 1.
935  */
936 #ifndef NRFX_PRS_BOX_7_ENABLED
937 #define NRFX_PRS_BOX_7_ENABLED 0
938 #endif
939 
940 /**
941  * @brief NRFX_PRS_BOX_8_ENABLED
942  *
943  * Boolean. Accepted values: 0 and 1.
944  */
945 #ifndef NRFX_PRS_BOX_8_ENABLED
946 #define NRFX_PRS_BOX_8_ENABLED 0
947 #endif
948 
949 /**
950  * @brief NRFX_PRS_BOX_9_ENABLED
951  *
952  * Boolean. Accepted values: 0 and 1.
953  */
954 #ifndef NRFX_PRS_BOX_9_ENABLED
955 #define NRFX_PRS_BOX_9_ENABLED 0
956 #endif
957 
958 /**
959  * @brief NRFX_PWM_ENABLED
960  *
961  * Boolean. Accepted values: 0 and 1.
962  */
963 #ifndef NRFX_PWM_ENABLED
964 #define NRFX_PWM_ENABLED 0
965 #endif
966 
967 /**
968  * @brief NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY
969  *
970  * Integer value. Minimum: 0. Maximum: 7.
971  */
972 #ifndef NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY
973 #define NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
974 #endif
975 
976 /**
977  * @brief NRFX_PWM_CONFIG_LOG_ENABLED
978  *
979  * Boolean. Accepted values: 0 and 1.
980  */
981 #ifndef NRFX_PWM_CONFIG_LOG_ENABLED
982 #define NRFX_PWM_CONFIG_LOG_ENABLED 0
983 #endif
984 
985 /**
986  * @brief NRFX_PWM_CONFIG_LOG_LEVEL
987  *
988  * Integer value.
989  * Supported values:
990  * - Off     = 0
991  * - Error   = 1
992  * - Warning = 2
993  * - Info    = 3
994  * - Debug   = 4
995  */
996 #ifndef NRFX_PWM_CONFIG_LOG_LEVEL
997 #define NRFX_PWM_CONFIG_LOG_LEVEL 3
998 #endif
999 
1000 /**
1001  * @brief NRFX_PWM120_ENABLED
1002  *
1003  * Boolean. Accepted values: 0 and 1.
1004  */
1005 #ifndef NRFX_PWM120_ENABLED
1006 #define NRFX_PWM120_ENABLED 0
1007 #endif
1008 
1009 /**
1010  * @brief NRFX_PWM130_ENABLED
1011  *
1012  * Boolean. Accepted values: 0 and 1.
1013  */
1014 #ifndef NRFX_PWM130_ENABLED
1015 #define NRFX_PWM130_ENABLED 0
1016 #endif
1017 
1018 /**
1019  * @brief NRFX_PWM131_ENABLED
1020  *
1021  * Boolean. Accepted values: 0 and 1.
1022  */
1023 #ifndef NRFX_PWM131_ENABLED
1024 #define NRFX_PWM131_ENABLED 0
1025 #endif
1026 
1027 /**
1028  * @brief NRFX_PWM132_ENABLED
1029  *
1030  * Boolean. Accepted values: 0 and 1.
1031  */
1032 #ifndef NRFX_PWM132_ENABLED
1033 #define NRFX_PWM132_ENABLED 0
1034 #endif
1035 
1036 /**
1037  * @brief NRFX_PWM133_ENABLED
1038  *
1039  * Boolean. Accepted values: 0 and 1.
1040  */
1041 #ifndef NRFX_PWM133_ENABLED
1042 #define NRFX_PWM133_ENABLED 0
1043 #endif
1044 
1045 /**
1046  * @brief NRFX_QDEC_ENABLED
1047  *
1048  * Boolean. Accepted values: 0 and 1.
1049  */
1050 #ifndef NRFX_QDEC_ENABLED
1051 #define NRFX_QDEC_ENABLED 0
1052 #endif
1053 
1054 /**
1055  * @brief NRFX_QDEC_DEFAULT_CONFIG_IRQ_PRIORITY
1056  *
1057  * Integer value. Minimum: 0. Maximum: 7.
1058  */
1059 #ifndef NRFX_QDEC_DEFAULT_CONFIG_IRQ_PRIORITY
1060 #define NRFX_QDEC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1061 #endif
1062 
1063 /**
1064  * @brief NRFX_QDEC_CONFIG_LOG_ENABLED
1065  *
1066  * Boolean. Accepted values: 0 and 1.
1067  */
1068 #ifndef NRFX_QDEC_CONFIG_LOG_ENABLED
1069 #define NRFX_QDEC_CONFIG_LOG_ENABLED 0
1070 #endif
1071 
1072 /**
1073  * @brief NRFX_QDEC_CONFIG_LOG_LEVEL
1074  *
1075  * Integer value.
1076  * Supported values:
1077  * - Off     = 0
1078  * - Error   = 1
1079  * - Warning = 2
1080  * - Info    = 3
1081  * - Debug   = 4
1082  */
1083 #ifndef NRFX_QDEC_CONFIG_LOG_LEVEL
1084 #define NRFX_QDEC_CONFIG_LOG_LEVEL 3
1085 #endif
1086 
1087 /**
1088  * @brief NRFX_QDEC130_ENABLED
1089  *
1090  * Boolean. Accepted values: 0 and 1.
1091  */
1092 #ifndef NRFX_QDEC130_ENABLED
1093 #define NRFX_QDEC130_ENABLED 0
1094 #endif
1095 
1096 /**
1097  * @brief NRFX_QDEC131_ENABLED
1098  *
1099  * Boolean. Accepted values: 0 and 1.
1100  */
1101 #ifndef NRFX_QDEC131_ENABLED
1102 #define NRFX_QDEC131_ENABLED 0
1103 #endif
1104 
1105 /**
1106  * @brief NRFX_RTC_ENABLED
1107  *
1108  * Boolean. Accepted values: 0 and 1.
1109  */
1110 #ifndef NRFX_RTC_ENABLED
1111 #define NRFX_RTC_ENABLED 0
1112 #endif
1113 
1114 /**
1115  * @brief NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY
1116  *
1117  * Integer value. Minimum: 0. Maximum: 7.
1118  */
1119 #ifndef NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY
1120 #define NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1121 #endif
1122 
1123 /**
1124  * @brief NRFX_RTC_CONFIG_LOG_ENABLED
1125  *
1126  * Boolean. Accepted values: 0 and 1.
1127  */
1128 #ifndef NRFX_RTC_CONFIG_LOG_ENABLED
1129 #define NRFX_RTC_CONFIG_LOG_ENABLED 0
1130 #endif
1131 
1132 /**
1133  * @brief NRFX_RTC_CONFIG_LOG_LEVEL
1134  *
1135  * Integer value.
1136  * Supported values:
1137  * - Off     = 0
1138  * - Error   = 1
1139  * - Warning = 2
1140  * - Info    = 3
1141  * - Debug   = 4
1142  */
1143 #ifndef NRFX_RTC_CONFIG_LOG_LEVEL
1144 #define NRFX_RTC_CONFIG_LOG_LEVEL 3
1145 #endif
1146 
1147 /**
1148  * @brief NRFX_RTC130_ENABLED
1149  *
1150  * Boolean. Accepted values: 0 and 1.
1151  */
1152 #ifndef NRFX_RTC130_ENABLED
1153 #define NRFX_RTC130_ENABLED 0
1154 #endif
1155 
1156 /**
1157  * @brief NRFX_RTC131_ENABLED
1158  *
1159  * Boolean. Accepted values: 0 and 1.
1160  */
1161 #ifndef NRFX_RTC131_ENABLED
1162 #define NRFX_RTC131_ENABLED 0
1163 #endif
1164 
1165 /**
1166  * @brief NRFX_SAADC_ENABLED
1167  *
1168  * Boolean. Accepted values: 0 and 1.
1169  */
1170 #ifndef NRFX_SAADC_ENABLED
1171 #define NRFX_SAADC_ENABLED 0
1172 #endif
1173 
1174 /**
1175  * @brief NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY
1176  *
1177  * Integer value. Minimum: 0. Maximum: 7.
1178  */
1179 #ifndef NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY
1180 #define NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1181 #endif
1182 
1183 /**
1184  * @brief NRFX_SAADC_CONFIG_LOG_ENABLED
1185  *
1186  * Boolean. Accepted values: 0 and 1.
1187  */
1188 #ifndef NRFX_SAADC_CONFIG_LOG_ENABLED
1189 #define NRFX_SAADC_CONFIG_LOG_ENABLED 0
1190 #endif
1191 
1192 /**
1193  * @brief NRFX_SAADC_CONFIG_LOG_LEVEL
1194  *
1195  * Integer value.
1196  * Supported values:
1197  * - Off     = 0
1198  * - Error   = 1
1199  * - Warning = 2
1200  * - Info    = 3
1201  * - Debug   = 4
1202  */
1203 #ifndef NRFX_SAADC_CONFIG_LOG_LEVEL
1204 #define NRFX_SAADC_CONFIG_LOG_LEVEL 3
1205 #endif
1206 
1207 /**
1208  * @brief NRFX_SPIM_ENABLED
1209  *
1210  * Boolean. Accepted values: 0 and 1.
1211  */
1212 #ifndef NRFX_SPIM_ENABLED
1213 #define NRFX_SPIM_ENABLED 0
1214 #endif
1215 
1216 /**
1217  * @brief NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY
1218  *
1219  * Integer value. Minimum: 0. Maximum: 7.
1220  */
1221 #ifndef NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY
1222 #define NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1223 #endif
1224 
1225 /**
1226  * @brief NRFX_SPIM_CONFIG_LOG_ENABLED
1227  *
1228  * Boolean. Accepted values: 0 and 1.
1229  */
1230 #ifndef NRFX_SPIM_CONFIG_LOG_ENABLED
1231 #define NRFX_SPIM_CONFIG_LOG_ENABLED 0
1232 #endif
1233 
1234 /**
1235  * @brief NRFX_SPIM_CONFIG_LOG_LEVEL
1236  *
1237  * Integer value.
1238  * Supported values:
1239  * - Off     = 0
1240  * - Error   = 1
1241  * - Warning = 2
1242  * - Info    = 3
1243  * - Debug   = 4
1244  */
1245 #ifndef NRFX_SPIM_CONFIG_LOG_LEVEL
1246 #define NRFX_SPIM_CONFIG_LOG_LEVEL 3
1247 #endif
1248 
1249 /**
1250  * @brief NRFX_SPIM120_ENABLED
1251  *
1252  * Boolean. Accepted values: 0 and 1.
1253  */
1254 #ifndef NRFX_SPIM120_ENABLED
1255 #define NRFX_SPIM120_ENABLED 0
1256 #endif
1257 
1258 /**
1259  * @brief NRFX_SPIM121_ENABLED
1260  *
1261  * Boolean. Accepted values: 0 and 1.
1262  */
1263 #ifndef NRFX_SPIM121_ENABLED
1264 #define NRFX_SPIM121_ENABLED 0
1265 #endif
1266 
1267 /**
1268  * @brief NRFX_SPIM130_ENABLED
1269  *
1270  * Boolean. Accepted values: 0 and 1.
1271  */
1272 #ifndef NRFX_SPIM130_ENABLED
1273 #define NRFX_SPIM130_ENABLED 0
1274 #endif
1275 
1276 /**
1277  * @brief NRFX_SPIM131_ENABLED
1278  *
1279  * Boolean. Accepted values: 0 and 1.
1280  */
1281 #ifndef NRFX_SPIM131_ENABLED
1282 #define NRFX_SPIM131_ENABLED 0
1283 #endif
1284 
1285 /**
1286  * @brief NRFX_SPIM132_ENABLED
1287  *
1288  * Boolean. Accepted values: 0 and 1.
1289  */
1290 #ifndef NRFX_SPIM132_ENABLED
1291 #define NRFX_SPIM132_ENABLED 0
1292 #endif
1293 
1294 /**
1295  * @brief NRFX_SPIM133_ENABLED
1296  *
1297  * Boolean. Accepted values: 0 and 1.
1298  */
1299 #ifndef NRFX_SPIM133_ENABLED
1300 #define NRFX_SPIM133_ENABLED 0
1301 #endif
1302 
1303 /**
1304  * @brief NRFX_SPIM134_ENABLED
1305  *
1306  * Boolean. Accepted values: 0 and 1.
1307  */
1308 #ifndef NRFX_SPIM134_ENABLED
1309 #define NRFX_SPIM134_ENABLED 0
1310 #endif
1311 
1312 /**
1313  * @brief NRFX_SPIM135_ENABLED
1314  *
1315  * Boolean. Accepted values: 0 and 1.
1316  */
1317 #ifndef NRFX_SPIM135_ENABLED
1318 #define NRFX_SPIM135_ENABLED 0
1319 #endif
1320 
1321 /**
1322  * @brief NRFX_SPIM136_ENABLED
1323  *
1324  * Boolean. Accepted values: 0 and 1.
1325  */
1326 #ifndef NRFX_SPIM136_ENABLED
1327 #define NRFX_SPIM136_ENABLED 0
1328 #endif
1329 
1330 /**
1331  * @brief NRFX_SPIM137_ENABLED
1332  *
1333  * Boolean. Accepted values: 0 and 1.
1334  */
1335 #ifndef NRFX_SPIM137_ENABLED
1336 #define NRFX_SPIM137_ENABLED 0
1337 #endif
1338 
1339 /**
1340  * @brief NRFX_SPIS_ENABLED
1341  *
1342  * Boolean. Accepted values: 0 and 1.
1343  */
1344 #ifndef NRFX_SPIS_ENABLED
1345 #define NRFX_SPIS_ENABLED 0
1346 #endif
1347 
1348 /**
1349  * @brief NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY
1350  *
1351  * Integer value. Minimum: 0. Maximum: 7.
1352  */
1353 #ifndef NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY
1354 #define NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1355 #endif
1356 
1357 /**
1358  * @brief NRFX_SPIS_CONFIG_LOG_ENABLED
1359  *
1360  * Boolean. Accepted values: 0 and 1.
1361  */
1362 #ifndef NRFX_SPIS_CONFIG_LOG_ENABLED
1363 #define NRFX_SPIS_CONFIG_LOG_ENABLED 0
1364 #endif
1365 
1366 /**
1367  * @brief NRFX_SPIS_CONFIG_LOG_LEVEL
1368  *
1369  * Integer value.
1370  * Supported values:
1371  * - Off     = 0
1372  * - Error   = 1
1373  * - Warning = 2
1374  * - Info    = 3
1375  * - Debug   = 4
1376  */
1377 #ifndef NRFX_SPIS_CONFIG_LOG_LEVEL
1378 #define NRFX_SPIS_CONFIG_LOG_LEVEL 3
1379 #endif
1380 
1381 /**
1382  * @brief NRFX_SPIS120_ENABLED
1383  *
1384  * Boolean. Accepted values: 0 and 1.
1385  */
1386 #ifndef NRFX_SPIS120_ENABLED
1387 #define NRFX_SPIS120_ENABLED 0
1388 #endif
1389 
1390 /**
1391  * @brief NRFX_SPIS130_ENABLED
1392  *
1393  * Boolean. Accepted values: 0 and 1.
1394  */
1395 #ifndef NRFX_SPIS130_ENABLED
1396 #define NRFX_SPIS130_ENABLED 0
1397 #endif
1398 
1399 /**
1400  * @brief NRFX_SPIS131_ENABLED
1401  *
1402  * Boolean. Accepted values: 0 and 1.
1403  */
1404 #ifndef NRFX_SPIS131_ENABLED
1405 #define NRFX_SPIS131_ENABLED 0
1406 #endif
1407 
1408 /**
1409  * @brief NRFX_SPIS132_ENABLED
1410  *
1411  * Boolean. Accepted values: 0 and 1.
1412  */
1413 #ifndef NRFX_SPIS132_ENABLED
1414 #define NRFX_SPIS132_ENABLED 0
1415 #endif
1416 
1417 /**
1418  * @brief NRFX_SPIS133_ENABLED
1419  *
1420  * Boolean. Accepted values: 0 and 1.
1421  */
1422 #ifndef NRFX_SPIS133_ENABLED
1423 #define NRFX_SPIS133_ENABLED 0
1424 #endif
1425 
1426 /**
1427  * @brief NRFX_SPIS134_ENABLED
1428  *
1429  * Boolean. Accepted values: 0 and 1.
1430  */
1431 #ifndef NRFX_SPIS134_ENABLED
1432 #define NRFX_SPIS134_ENABLED 0
1433 #endif
1434 
1435 /**
1436  * @brief NRFX_SPIS135_ENABLED
1437  *
1438  * Boolean. Accepted values: 0 and 1.
1439  */
1440 #ifndef NRFX_SPIS135_ENABLED
1441 #define NRFX_SPIS135_ENABLED 0
1442 #endif
1443 
1444 /**
1445  * @brief NRFX_SPIS136_ENABLED
1446  *
1447  * Boolean. Accepted values: 0 and 1.
1448  */
1449 #ifndef NRFX_SPIS136_ENABLED
1450 #define NRFX_SPIS136_ENABLED 0
1451 #endif
1452 
1453 /**
1454  * @brief NRFX_SPIS137_ENABLED
1455  *
1456  * Boolean. Accepted values: 0 and 1.
1457  */
1458 #ifndef NRFX_SPIS137_ENABLED
1459 #define NRFX_SPIS137_ENABLED 0
1460 #endif
1461 
1462 /**
1463  * @brief NRFX_SYSTICK_ENABLED
1464  *
1465  * Boolean. Accepted values: 0 and 1.
1466  */
1467 #ifndef NRFX_SYSTICK_ENABLED
1468 #define NRFX_SYSTICK_ENABLED 0
1469 #endif
1470 
1471 /**
1472  * @brief NRFX_TEMP_ENABLED
1473  *
1474  * Boolean. Accepted values: 0 and 1.
1475  */
1476 #ifndef NRFX_TEMP_ENABLED
1477 #define NRFX_TEMP_ENABLED 0
1478 #endif
1479 
1480 /**
1481  * @brief NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY
1482  *
1483  * Integer value. Minimum: 0. Maximum: 7.
1484  */
1485 #ifndef NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY
1486 #define NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1487 #endif
1488 
1489 /**
1490  * @brief NRFX_TEMP_CONFIG_LOG_ENABLED
1491  *
1492  * Boolean. Accepted values: 0 and 1.
1493  */
1494 #ifndef NRFX_TEMP_CONFIG_LOG_ENABLED
1495 #define NRFX_TEMP_CONFIG_LOG_ENABLED 0
1496 #endif
1497 
1498 /**
1499  * @brief NRFX_TEMP_CONFIG_LOG_LEVEL
1500  *
1501  * Integer value.
1502  * Supported values:
1503  * - Off     = 0
1504  * - Error   = 1
1505  * - Warning = 2
1506  * - Info    = 3
1507  * - Debug   = 4
1508  */
1509 #ifndef NRFX_TEMP_CONFIG_LOG_LEVEL
1510 #define NRFX_TEMP_CONFIG_LOG_LEVEL 3
1511 #endif
1512 
1513 /**
1514  * @brief NRFX_TIMER_ENABLED
1515  *
1516  * Boolean. Accepted values: 0 and 1.
1517  */
1518 #ifndef NRFX_TIMER_ENABLED
1519 #define NRFX_TIMER_ENABLED 0
1520 #endif
1521 
1522 /**
1523  * @brief NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY
1524  *
1525  * Integer value. Minimum: 0. Maximum: 7.
1526  */
1527 #ifndef NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY
1528 #define NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1529 #endif
1530 
1531 /**
1532  * @brief NRFX_TIMER_CONFIG_LOG_ENABLED
1533  *
1534  * Boolean. Accepted values: 0 and 1.
1535  */
1536 #ifndef NRFX_TIMER_CONFIG_LOG_ENABLED
1537 #define NRFX_TIMER_CONFIG_LOG_ENABLED 0
1538 #endif
1539 
1540 /**
1541  * @brief NRFX_TIMER_CONFIG_LOG_LEVEL
1542  *
1543  * Integer value.
1544  * Supported values:
1545  * - Off     = 0
1546  * - Error   = 1
1547  * - Warning = 2
1548  * - Info    = 3
1549  * - Debug   = 4
1550  */
1551 #ifndef NRFX_TIMER_CONFIG_LOG_LEVEL
1552 #define NRFX_TIMER_CONFIG_LOG_LEVEL 3
1553 #endif
1554 
1555 /**
1556  * @brief NRFX_TIMER120_ENABLED
1557  *
1558  * Boolean. Accepted values: 0 and 1.
1559  */
1560 #ifndef NRFX_TIMER120_ENABLED
1561 #define NRFX_TIMER120_ENABLED 0
1562 #endif
1563 
1564 /**
1565  * @brief NRFX_TIMER121_ENABLED
1566  *
1567  * Boolean. Accepted values: 0 and 1.
1568  */
1569 #ifndef NRFX_TIMER121_ENABLED
1570 #define NRFX_TIMER121_ENABLED 0
1571 #endif
1572 
1573 /**
1574  * @brief NRFX_TIMER130_ENABLED
1575  *
1576  * Boolean. Accepted values: 0 and 1.
1577  */
1578 #ifndef NRFX_TIMER130_ENABLED
1579 #define NRFX_TIMER130_ENABLED 0
1580 #endif
1581 
1582 /**
1583  * @brief NRFX_TIMER131_ENABLED
1584  *
1585  * Boolean. Accepted values: 0 and 1.
1586  */
1587 #ifndef NRFX_TIMER131_ENABLED
1588 #define NRFX_TIMER131_ENABLED 0
1589 #endif
1590 
1591 /**
1592  * @brief NRFX_TIMER132_ENABLED
1593  *
1594  * Boolean. Accepted values: 0 and 1.
1595  */
1596 #ifndef NRFX_TIMER132_ENABLED
1597 #define NRFX_TIMER132_ENABLED 0
1598 #endif
1599 
1600 /**
1601  * @brief NRFX_TIMER133_ENABLED
1602  *
1603  * Boolean. Accepted values: 0 and 1.
1604  */
1605 #ifndef NRFX_TIMER133_ENABLED
1606 #define NRFX_TIMER133_ENABLED 0
1607 #endif
1608 
1609 /**
1610  * @brief NRFX_TIMER134_ENABLED
1611  *
1612  * Boolean. Accepted values: 0 and 1.
1613  */
1614 #ifndef NRFX_TIMER134_ENABLED
1615 #define NRFX_TIMER134_ENABLED 0
1616 #endif
1617 
1618 /**
1619  * @brief NRFX_TIMER135_ENABLED
1620  *
1621  * Boolean. Accepted values: 0 and 1.
1622  */
1623 #ifndef NRFX_TIMER135_ENABLED
1624 #define NRFX_TIMER135_ENABLED 0
1625 #endif
1626 
1627 /**
1628  * @brief NRFX_TIMER136_ENABLED
1629  *
1630  * Boolean. Accepted values: 0 and 1.
1631  */
1632 #ifndef NRFX_TIMER136_ENABLED
1633 #define NRFX_TIMER136_ENABLED 0
1634 #endif
1635 
1636 /**
1637  * @brief NRFX_TIMER137_ENABLED
1638  *
1639  * Boolean. Accepted values: 0 and 1.
1640  */
1641 #ifndef NRFX_TIMER137_ENABLED
1642 #define NRFX_TIMER137_ENABLED 0
1643 #endif
1644 
1645 /**
1646  * @brief NRFX_TWIM_ENABLED
1647  *
1648  * Boolean. Accepted values: 0 and 1.
1649  */
1650 #ifndef NRFX_TWIM_ENABLED
1651 #define NRFX_TWIM_ENABLED 0
1652 #endif
1653 
1654 /**
1655  * @brief NRFX_TWIM_DEFAULT_CONFIG_IRQ_PRIORITY
1656  *
1657  * Integer value. Minimum: 0. Maximum: 7.
1658  */
1659 #ifndef NRFX_TWIM_DEFAULT_CONFIG_IRQ_PRIORITY
1660 #define NRFX_TWIM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1661 #endif
1662 
1663 /**
1664  * @brief NRFX_TWIM_CONFIG_LOG_ENABLED
1665  *
1666  * Boolean. Accepted values: 0 and 1.
1667  */
1668 #ifndef NRFX_TWIM_CONFIG_LOG_ENABLED
1669 #define NRFX_TWIM_CONFIG_LOG_ENABLED 0
1670 #endif
1671 
1672 /**
1673  * @brief NRFX_TWIM_CONFIG_LOG_LEVEL
1674  *
1675  * Integer value.
1676  * Supported values:
1677  * - Off     = 0
1678  * - Error   = 1
1679  * - Warning = 2
1680  * - Info    = 3
1681  * - Debug   = 4
1682  */
1683 #ifndef NRFX_TWIM_CONFIG_LOG_LEVEL
1684 #define NRFX_TWIM_CONFIG_LOG_LEVEL 3
1685 #endif
1686 
1687 /**
1688  * @brief NRFX_TWIM130_ENABLED
1689  *
1690  * Boolean. Accepted values: 0 and 1.
1691  */
1692 #ifndef NRFX_TWIM130_ENABLED
1693 #define NRFX_TWIM130_ENABLED 0
1694 #endif
1695 
1696 /**
1697  * @brief NRFX_TWIM131_ENABLED
1698  *
1699  * Boolean. Accepted values: 0 and 1.
1700  */
1701 #ifndef NRFX_TWIM131_ENABLED
1702 #define NRFX_TWIM131_ENABLED 0
1703 #endif
1704 
1705 /**
1706  * @brief NRFX_TWIM132_ENABLED
1707  *
1708  * Boolean. Accepted values: 0 and 1.
1709  */
1710 #ifndef NRFX_TWIM132_ENABLED
1711 #define NRFX_TWIM132_ENABLED 0
1712 #endif
1713 
1714 /**
1715  * @brief NRFX_TWIM133_ENABLED
1716  *
1717  * Boolean. Accepted values: 0 and 1.
1718  */
1719 #ifndef NRFX_TWIM133_ENABLED
1720 #define NRFX_TWIM133_ENABLED 0
1721 #endif
1722 
1723 /**
1724  * @brief NRFX_TWIM134_ENABLED
1725  *
1726  * Boolean. Accepted values: 0 and 1.
1727  */
1728 #ifndef NRFX_TWIM134_ENABLED
1729 #define NRFX_TWIM134_ENABLED 0
1730 #endif
1731 
1732 /**
1733  * @brief NRFX_TWIM135_ENABLED
1734  *
1735  * Boolean. Accepted values: 0 and 1.
1736  */
1737 #ifndef NRFX_TWIM135_ENABLED
1738 #define NRFX_TWIM135_ENABLED 0
1739 #endif
1740 
1741 /**
1742  * @brief NRFX_TWIM136_ENABLED
1743  *
1744  * Boolean. Accepted values: 0 and 1.
1745  */
1746 #ifndef NRFX_TWIM136_ENABLED
1747 #define NRFX_TWIM136_ENABLED 0
1748 #endif
1749 
1750 /**
1751  * @brief NRFX_TWIM137_ENABLED
1752  *
1753  * Boolean. Accepted values: 0 and 1.
1754  */
1755 #ifndef NRFX_TWIM137_ENABLED
1756 #define NRFX_TWIM137_ENABLED 0
1757 #endif
1758 
1759 /**
1760  * @brief NRFX_TWIS_ENABLED
1761  *
1762  * Boolean. Accepted values: 0 and 1.
1763  */
1764 #ifndef NRFX_TWIS_ENABLED
1765 #define NRFX_TWIS_ENABLED 0
1766 #endif
1767 
1768 /**
1769  * @brief NRFX_TWIS_DEFAULT_CONFIG_IRQ_PRIORITY
1770  *
1771  * Integer value. Minimum: 0. Maximum: 7.
1772  */
1773 #ifndef NRFX_TWIS_DEFAULT_CONFIG_IRQ_PRIORITY
1774 #define NRFX_TWIS_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1775 #endif
1776 
1777 /**
1778  * @brief NRFX_TWIS_CONFIG_LOG_ENABLED
1779  *
1780  * Boolean. Accepted values: 0 and 1.
1781  */
1782 #ifndef NRFX_TWIS_CONFIG_LOG_ENABLED
1783 #define NRFX_TWIS_CONFIG_LOG_ENABLED 0
1784 #endif
1785 
1786 /**
1787  * @brief NRFX_TWIS_ASSUME_INIT_AFTER_RESET_ONLY - Assume that any instance would be initialized only once.
1788  *
1789  * Boolean. Accepted values: 0 and 1.
1790  */
1791 #ifndef NRFX_TWIS_ASSUME_INIT_AFTER_RESET_ONLY
1792 #define NRFX_TWIS_ASSUME_INIT_AFTER_RESET_ONLY 0
1793 #endif
1794 
1795 /**
1796  * @brief NRFX_TWIS_NO_SYNC_MODE - Remove support for synchronous mode.
1797  *
1798  * Boolean. Accepted values: 0 and 1.
1799  */
1800 #ifndef NRFX_TWIS_NO_SYNC_MODE
1801 #define NRFX_TWIS_NO_SYNC_MODE 0
1802 #endif
1803 
1804 /**
1805  * @brief NRFX_TWIS_CONFIG_LOG_LEVEL
1806  *
1807  * Integer value.
1808  * Supported values:
1809  * - Off     = 0
1810  * - Error   = 1
1811  * - Warning = 2
1812  * - Info    = 3
1813  * - Debug   = 4
1814  */
1815 #ifndef NRFX_TWIS_CONFIG_LOG_LEVEL
1816 #define NRFX_TWIS_CONFIG_LOG_LEVEL 3
1817 #endif
1818 
1819 /**
1820  * @brief NRFX_TWIS130_ENABLED
1821  *
1822  * Boolean. Accepted values: 0 and 1.
1823  */
1824 #ifndef NRFX_TWIS130_ENABLED
1825 #define NRFX_TWIS130_ENABLED 0
1826 #endif
1827 
1828 /**
1829  * @brief NRFX_TWIS131_ENABLED
1830  *
1831  * Boolean. Accepted values: 0 and 1.
1832  */
1833 #ifndef NRFX_TWIS131_ENABLED
1834 #define NRFX_TWIS131_ENABLED 0
1835 #endif
1836 
1837 /**
1838  * @brief NRFX_TWIS132_ENABLED
1839  *
1840  * Boolean. Accepted values: 0 and 1.
1841  */
1842 #ifndef NRFX_TWIS132_ENABLED
1843 #define NRFX_TWIS132_ENABLED 0
1844 #endif
1845 
1846 /**
1847  * @brief NRFX_TWIS133_ENABLED
1848  *
1849  * Boolean. Accepted values: 0 and 1.
1850  */
1851 #ifndef NRFX_TWIS133_ENABLED
1852 #define NRFX_TWIS133_ENABLED 0
1853 #endif
1854 
1855 /**
1856  * @brief NRFX_TWIS134_ENABLED
1857  *
1858  * Boolean. Accepted values: 0 and 1.
1859  */
1860 #ifndef NRFX_TWIS134_ENABLED
1861 #define NRFX_TWIS134_ENABLED 0
1862 #endif
1863 
1864 /**
1865  * @brief NRFX_TWIS135_ENABLED
1866  *
1867  * Boolean. Accepted values: 0 and 1.
1868  */
1869 #ifndef NRFX_TWIS135_ENABLED
1870 #define NRFX_TWIS135_ENABLED 0
1871 #endif
1872 
1873 /**
1874  * @brief NRFX_TWIS136_ENABLED
1875  *
1876  * Boolean. Accepted values: 0 and 1.
1877  */
1878 #ifndef NRFX_TWIS136_ENABLED
1879 #define NRFX_TWIS136_ENABLED 0
1880 #endif
1881 
1882 /**
1883  * @brief NRFX_TWIS137_ENABLED
1884  *
1885  * Boolean. Accepted values: 0 and 1.
1886  */
1887 #ifndef NRFX_TWIS137_ENABLED
1888 #define NRFX_TWIS137_ENABLED 0
1889 #endif
1890 
1891 /**
1892  * @brief NRFX_UARTE_ENABLED
1893  *
1894  * Boolean. Accepted values: 0 and 1.
1895  */
1896 #ifndef NRFX_UARTE_ENABLED
1897 #define NRFX_UARTE_ENABLED 0
1898 #endif
1899 
1900 /**
1901  * @brief NRFX_UARTE_CONFIG_SKIP_GPIO_CONFIG - If enabled, support for configuring GPIO pins is removed from the driver
1902  *
1903  * Boolean. Accepted values: 0 and 1.
1904  */
1905 #ifndef NRFX_UARTE_CONFIG_SKIP_GPIO_CONFIG
1906 #define NRFX_UARTE_CONFIG_SKIP_GPIO_CONFIG 0
1907 #endif
1908 
1909 /**
1910  * @brief NRFX_UARTE_CONFIG_SKIP_PSEL_CONFIG - If enabled, support for configuring PSEL registers is removed from the driver
1911  *
1912  * Boolean. Accepted values: 0 and 1.
1913  */
1914 #ifndef NRFX_UARTE_CONFIG_SKIP_PSEL_CONFIG
1915 #define NRFX_UARTE_CONFIG_SKIP_PSEL_CONFIG 0
1916 #endif
1917 
1918 /**
1919  * @brief NRFX_UARTE_CONFIG_TX_LINK - If enabled, driver supports linking of TX transfers.
1920  *
1921  * Boolean. Accepted values: 0 and 1.
1922  */
1923 #ifndef NRFX_UARTE_CONFIG_TX_LINK
1924 #define NRFX_UARTE_CONFIG_TX_LINK 1
1925 #endif
1926 
1927 /**
1928  * @brief NRFX_UARTE_CONFIG_RX_CACHE_ENABLED
1929  *
1930  * Boolean. Accepted values: 0 and 1.
1931  */
1932 #ifndef NRFX_UARTE_CONFIG_RX_CACHE_ENABLED
1933 #define NRFX_UARTE_CONFIG_RX_CACHE_ENABLED 1
1934 #endif
1935 
1936 /**
1937  * @brief NRFX_UARTE_DEFAULT_CONFIG_IRQ_PRIORITY
1938  *
1939  * Integer value. Minimum: 0. Maximum: 7.
1940  */
1941 #ifndef NRFX_UARTE_DEFAULT_CONFIG_IRQ_PRIORITY
1942 #define NRFX_UARTE_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1943 #endif
1944 
1945 /**
1946  * @brief NRFX_UARTE_CONFIG_LOG_ENABLED
1947  *
1948  * Boolean. Accepted values: 0 and 1.
1949  */
1950 #ifndef NRFX_UARTE_CONFIG_LOG_ENABLED
1951 #define NRFX_UARTE_CONFIG_LOG_ENABLED 0
1952 #endif
1953 
1954 /**
1955  * @brief NRFX_UARTE_CONFIG_LOG_LEVEL
1956  *
1957  * Integer value.
1958  * Supported values:
1959  * - Off     = 0
1960  * - Error   = 1
1961  * - Warning = 2
1962  * - Info    = 3
1963  * - Debug   = 4
1964  */
1965 #ifndef NRFX_UARTE_CONFIG_LOG_LEVEL
1966 #define NRFX_UARTE_CONFIG_LOG_LEVEL 3
1967 #endif
1968 
1969 /**
1970  * @brief NRFX_UARTE120_ENABLED
1971  *
1972  * Boolean. Accepted values: 0 and 1.
1973  */
1974 #ifndef NRFX_UARTE120_ENABLED
1975 #define NRFX_UARTE120_ENABLED 0
1976 #endif
1977 
1978 /**
1979  * @brief NRFX_UARTE130_ENABLED
1980  *
1981  * Boolean. Accepted values: 0 and 1.
1982  */
1983 #ifndef NRFX_UARTE130_ENABLED
1984 #define NRFX_UARTE130_ENABLED 0
1985 #endif
1986 
1987 /**
1988  * @brief NRFX_UARTE131_ENABLED
1989  *
1990  * Boolean. Accepted values: 0 and 1.
1991  */
1992 #ifndef NRFX_UARTE131_ENABLED
1993 #define NRFX_UARTE131_ENABLED 0
1994 #endif
1995 
1996 /**
1997  * @brief NRFX_UARTE132_ENABLED
1998  *
1999  * Boolean. Accepted values: 0 and 1.
2000  */
2001 #ifndef NRFX_UARTE132_ENABLED
2002 #define NRFX_UARTE132_ENABLED 0
2003 #endif
2004 
2005 /**
2006  * @brief NRFX_UARTE133_ENABLED
2007  *
2008  * Boolean. Accepted values: 0 and 1.
2009  */
2010 #ifndef NRFX_UARTE133_ENABLED
2011 #define NRFX_UARTE133_ENABLED 0
2012 #endif
2013 
2014 /**
2015  * @brief NRFX_UARTE134_ENABLED
2016  *
2017  * Boolean. Accepted values: 0 and 1.
2018  */
2019 #ifndef NRFX_UARTE134_ENABLED
2020 #define NRFX_UARTE134_ENABLED 0
2021 #endif
2022 
2023 /**
2024  * @brief NRFX_UARTE135_ENABLED
2025  *
2026  * Boolean. Accepted values: 0 and 1.
2027  */
2028 #ifndef NRFX_UARTE135_ENABLED
2029 #define NRFX_UARTE135_ENABLED 0
2030 #endif
2031 
2032 /**
2033  * @brief NRFX_UARTE136_ENABLED
2034  *
2035  * Boolean. Accepted values: 0 and 1.
2036  */
2037 #ifndef NRFX_UARTE136_ENABLED
2038 #define NRFX_UARTE136_ENABLED 0
2039 #endif
2040 
2041 /**
2042  * @brief NRFX_UARTE137_ENABLED
2043  *
2044  * Boolean. Accepted values: 0 and 1.
2045  */
2046 #ifndef NRFX_UARTE137_ENABLED
2047 #define NRFX_UARTE137_ENABLED 0
2048 #endif
2049 
2050 /**
2051  * @brief NRFX_WDT_ENABLED
2052  *
2053  * Boolean. Accepted values: 0 and 1.
2054  */
2055 #ifndef NRFX_WDT_ENABLED
2056 #define NRFX_WDT_ENABLED 0
2057 #endif
2058 
2059 /**
2060  * @brief NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY
2061  *
2062  * Integer value. Minimum: 0. Maximum: 7.
2063  */
2064 #ifndef NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY
2065 #define NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
2066 #endif
2067 
2068 /**
2069  * @brief NRFX_WDT_CONFIG_NO_IRQ - Remove WDT IRQ handling from WDT driver
2070  *
2071  * Boolean. Accepted values: 0 and 1.
2072  */
2073 #ifndef NRFX_WDT_CONFIG_NO_IRQ
2074 #define NRFX_WDT_CONFIG_NO_IRQ 0
2075 #endif
2076 
2077 /**
2078  * @brief NRFX_WDT_CONFIG_LOG_ENABLED
2079  *
2080  * Boolean. Accepted values: 0 and 1.
2081  */
2082 #ifndef NRFX_WDT_CONFIG_LOG_ENABLED
2083 #define NRFX_WDT_CONFIG_LOG_ENABLED 0
2084 #endif
2085 
2086 /**
2087  * @brief NRFX_WDT_CONFIG_LOG_LEVEL
2088  *
2089  * Integer value.
2090  * Supported values:
2091  * - Off     = 0
2092  * - Error   = 1
2093  * - Warning = 2
2094  * - Info    = 3
2095  * - Debug   = 4
2096  */
2097 #ifndef NRFX_WDT_CONFIG_LOG_LEVEL
2098 #define NRFX_WDT_CONFIG_LOG_LEVEL 3
2099 #endif
2100 
2101 /**
2102  * @brief NRFX_WDT010_ENABLED
2103  *
2104  * Boolean. Accepted values: 0 and 1.
2105  */
2106 #ifndef NRFX_WDT010_ENABLED
2107 #define NRFX_WDT010_ENABLED 0
2108 #endif
2109 
2110 /**
2111  * @brief NRFX_WDT011_ENABLED
2112  *
2113  * Boolean. Accepted values: 0 and 1.
2114  */
2115 #ifndef NRFX_WDT011_ENABLED
2116 #define NRFX_WDT011_ENABLED 0
2117 #endif
2118 
2119 /**
2120  * @brief NRFX_WDT131_ENABLED
2121  *
2122  * Boolean. Accepted values: 0 and 1.
2123  */
2124 #ifndef NRFX_WDT131_ENABLED
2125 #define NRFX_WDT131_ENABLED 0
2126 #endif
2127 
2128 /**
2129  * @brief NRFX_WDT132_ENABLED
2130  *
2131  * Boolean. Accepted values: 0 and 1.
2132  */
2133 #ifndef NRFX_WDT132_ENABLED
2134 #define NRFX_WDT132_ENABLED 0
2135 #endif
2136 
2137 #endif // NRFX_CONFIG_NRF9230_ENGB_APPLICATION_H__
2138