Contiki-NG
Loading...
Searching...
No Matches
nrfx_config_nrf54l15_application.h
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_NRF54L15_APPLICATION_H__
35#define NRFX_CONFIG_NRF54L15_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 * Use nrfx v2.x API compatibility mode to work with existing Contiki-NG drivers.
43 * This enables the backward compatibility shims in nrfx v3.x.
44 */
45#ifndef NRFX_CONFIG_API_VER_MAJOR
46#define NRFX_CONFIG_API_VER_MAJOR 2
47#endif
48#ifndef NRFX_CONFIG_API_VER_MINOR
49#define NRFX_CONFIG_API_VER_MINOR 10
50#endif
51#ifndef NRFX_CONFIG_API_VER_MICRO
52#define NRFX_CONFIG_API_VER_MICRO 0
53#endif
54
55/*
56 * nRF54L15 has multiple GRTC instances. The MDK defines GRTC_IRQn as GRTC_0_IRQn.
57 * Prevent nrfx HAL from redefining it to GRTC_2_IRQn.
58 */
59#ifndef NRFX_GRTC_CONFIG_INSTANCE_ID
60#define NRFX_GRTC_CONFIG_INSTANCE_ID 0
61#endif
62
63/**
64 * @brief NRFX_DEFAULT_IRQ_PRIORITY
65 *
66 * Integer value. Minimum: 0. Maximum: 7.
67 */
68#ifndef NRFX_DEFAULT_IRQ_PRIORITY
69#define NRFX_DEFAULT_IRQ_PRIORITY 7
70#endif
71
72/**
73 * @brief NRFX_CLOCK_ENABLED
74 *
75 * Boolean. Accepted values: 0 and 1.
76 */
77#ifndef NRFX_CLOCK_ENABLED
78#define NRFX_CLOCK_ENABLED 1
79#endif
80
81/**
82 * @brief NRFX_CLOCK_CONFIG_LF_SRC
83 *
84 * Integer value.
85 * Supported values:
86 * - RC = 0
87 * - XTAL = 1
88 * - Synth = 2
89 */
90#ifndef NRFX_CLOCK_CONFIG_LF_SRC
91#define NRFX_CLOCK_CONFIG_LF_SRC 1
92#endif
93
94/**
95 * @brief NRFX_CLOCK_CONFIG_LF_CAL_ENABLED
96 *
97 * Boolean. Accepted values: 0 and 1.
98 */
99#ifndef NRFX_CLOCK_CONFIG_LF_CAL_ENABLED
100#define NRFX_CLOCK_CONFIG_LF_CAL_ENABLED 0
101#endif
102
103/**
104 * @brief NRFX_CLOCK_CONFIG_LFXO_TWO_STAGE_ENABLED
105 *
106 * Boolean. Accepted values: 0 and 1.
107 */
108#ifndef NRFX_CLOCK_CONFIG_LFXO_TWO_STAGE_ENABLED
109#define NRFX_CLOCK_CONFIG_LFXO_TWO_STAGE_ENABLED 0
110#endif
111
112/**
113 * @brief NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY
114 *
115 * Integer value. Minimum: 0. Maximum: 7.
116 */
117#ifndef NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY
118#define NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
119#endif
120
121/**
122 * @brief NRFX_CLOCK_CONFIG_LOG_ENABLED
123 *
124 * Boolean. Accepted values: 0 and 1.
125 */
126#ifndef NRFX_CLOCK_CONFIG_LOG_ENABLED
127#define NRFX_CLOCK_CONFIG_LOG_ENABLED 0
128#endif
129
130/**
131 * @brief NRFX_CLOCK_CONFIG_LOG_LEVEL
132 *
133 * Integer value.
134 * Supported values:
135 * - Off = 0
136 * - Error = 1
137 * - Warning = 2
138 * - Info = 3
139 * - Debug = 4
140 */
141#ifndef NRFX_CLOCK_CONFIG_LOG_LEVEL
142#define NRFX_CLOCK_CONFIG_LOG_LEVEL 3
143#endif
144
145/**
146 * @brief NRFX_COMP_ENABLED
147 *
148 * Boolean. Accepted values: 0 and 1.
149 */
150#ifndef NRFX_COMP_ENABLED
151#define NRFX_COMP_ENABLED 0
152#endif
153
154/**
155 * @brief NRFX_COMP_DEFAULT_CONFIG_IRQ_PRIORITY
156 *
157 * Integer value. Minimum: 0. Maximum: 7.
158 */
159#ifndef NRFX_COMP_DEFAULT_CONFIG_IRQ_PRIORITY
160#define NRFX_COMP_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
161#endif
162
163/**
164 * @brief NRFX_COMP_CONFIG_LOG_ENABLED
165 *
166 * Boolean. Accepted values: 0 and 1.
167 */
168#ifndef NRFX_COMP_CONFIG_LOG_ENABLED
169#define NRFX_COMP_CONFIG_LOG_ENABLED 0
170#endif
171
172/**
173 * @brief NRFX_COMP_CONFIG_LOG_LEVEL
174 *
175 * Integer value.
176 * Supported values:
177 * - Off = 0
178 * - Error = 1
179 * - Warning = 2
180 * - Info = 3
181 * - Debug = 4
182 */
183#ifndef NRFX_COMP_CONFIG_LOG_LEVEL
184#define NRFX_COMP_CONFIG_LOG_LEVEL 3
185#endif
186
187/**
188 * @brief NRFX_CRACEN_ENABLED
189 *
190 * Boolean. Accepted values: 0 and 1.
191 */
192#ifndef NRFX_CRACEN_ENABLED
193#define NRFX_CRACEN_ENABLED 0
194#endif
195
196/**
197 * @brief NRFX_DPPI_ENABLED
198 *
199 * Boolean. Accepted values: 0 and 1.
200 */
201#ifndef NRFX_DPPI_ENABLED
202#define NRFX_DPPI_ENABLED 0
203#endif
204
205/**
206 * @brief NRFX_DPPI_CONFIG_LOG_ENABLED
207 *
208 * Boolean. Accepted values: 0 and 1.
209 */
210#ifndef NRFX_DPPI_CONFIG_LOG_ENABLED
211#define NRFX_DPPI_CONFIG_LOG_ENABLED 0
212#endif
213
214/**
215 * @brief NRFX_DPPI_CONFIG_LOG_LEVEL
216 *
217 * Integer value.
218 * Supported values:
219 * - Off = 0
220 * - Error = 1
221 * - Warning = 2
222 * - Info = 3
223 * - Debug = 4
224 */
225#ifndef NRFX_DPPI_CONFIG_LOG_LEVEL
226#define NRFX_DPPI_CONFIG_LOG_LEVEL 3
227#endif
228
229/**
230 * @brief NRFX_DPPI00_ENABLED
231 *
232 * Boolean. Accepted values: 0 and 1.
233 */
234#ifndef NRFX_DPPI00_ENABLED
235#define NRFX_DPPI00_ENABLED 0
236#endif
237
238/**
239 * @brief NRFX_DPPI10_ENABLED
240 *
241 * Boolean. Accepted values: 0 and 1.
242 */
243#ifndef NRFX_DPPI10_ENABLED
244#define NRFX_DPPI10_ENABLED 0
245#endif
246
247/**
248 * @brief NRFX_DPPI20_ENABLED
249 *
250 * Boolean. Accepted values: 0 and 1.
251 */
252#ifndef NRFX_DPPI20_ENABLED
253#define NRFX_DPPI20_ENABLED 0
254#endif
255
256/**
257 * @brief NRFX_DPPI30_ENABLED
258 *
259 * Boolean. Accepted values: 0 and 1.
260 */
261#ifndef NRFX_DPPI30_ENABLED
262#define NRFX_DPPI30_ENABLED 0
263#endif
264
265/**
266 * @brief NRFX_EGU_ENABLED
267 *
268 * Boolean. Accepted values: 0 and 1.
269 */
270#ifndef NRFX_EGU_ENABLED
271#define NRFX_EGU_ENABLED 0
272#endif
273
274/**
275 * @brief NRFX_EGU_DEFAULT_CONFIG_IRQ_PRIORITY
276 *
277 * Integer value. Minimum: 0. Maximum: 7.
278 */
279#ifndef NRFX_EGU_DEFAULT_CONFIG_IRQ_PRIORITY
280#define NRFX_EGU_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
281#endif
282
283/**
284 * @brief NRFX_EGU10_ENABLED
285 *
286 * Boolean. Accepted values: 0 and 1.
287 */
288#ifndef NRFX_EGU10_ENABLED
289#define NRFX_EGU10_ENABLED 0
290#endif
291
292/**
293 * @brief NRFX_EGU20_ENABLED
294 *
295 * Boolean. Accepted values: 0 and 1.
296 */
297#ifndef NRFX_EGU20_ENABLED
298#define NRFX_EGU20_ENABLED 0
299#endif
300
301/**
302 * @brief NRFX_GPIOTE_ENABLED
303 *
304 * Boolean. Accepted values: 0 and 1.
305 */
306#ifndef NRFX_GPIOTE_ENABLED
307#define NRFX_GPIOTE_ENABLED 1
308#endif
309
310/**
311 * @brief NRFX_GPIOTE_DEFAULT_CONFIG_IRQ_PRIORITY
312 *
313 * Integer value. Minimum: 0. Maximum: 7.
314 */
315#ifndef NRFX_GPIOTE_DEFAULT_CONFIG_IRQ_PRIORITY
316#define NRFX_GPIOTE_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
317#endif
318
319/**
320 * @brief NRFX_GPIOTE_CONFIG_NUM_OF_EVT_HANDLERS
321 *
322 * Integer value. Minimum: 0. Maximum: 15.
323 */
324#ifndef NRFX_GPIOTE_CONFIG_NUM_OF_EVT_HANDLERS
325#define NRFX_GPIOTE_CONFIG_NUM_OF_EVT_HANDLERS 2
326#endif
327
328/**
329 * @brief NRFX_GPIOTE_CONFIG_LOG_ENABLED
330 *
331 * Boolean. Accepted values: 0 and 1.
332 */
333#ifndef NRFX_GPIOTE_CONFIG_LOG_ENABLED
334#define NRFX_GPIOTE_CONFIG_LOG_ENABLED 0
335#endif
336
337/**
338 * @brief NRFX_GPIOTE_CONFIG_LOG_LEVEL
339 *
340 * Integer value.
341 * Supported values:
342 * - Off = 0
343 * - Error = 1
344 * - Warning = 2
345 * - Info = 3
346 * - Debug = 4
347 */
348#ifndef NRFX_GPIOTE_CONFIG_LOG_LEVEL
349#define NRFX_GPIOTE_CONFIG_LOG_LEVEL 3
350#endif
351
352/**
353 * @brief NRFX_GPIOTE20_ENABLED
354 *
355 * Boolean. Accepted values: 0 and 1.
356 */
357#ifndef NRFX_GPIOTE20_ENABLED
358#define NRFX_GPIOTE20_ENABLED 1
359#endif
360
361/**
362 * @brief NRFX_GPIOTE30_ENABLED
363 *
364 * Boolean. Accepted values: 0 and 1.
365 */
366#ifndef NRFX_GPIOTE30_ENABLED
367#define NRFX_GPIOTE30_ENABLED 1
368#endif
369
370/**
371 * @brief NRFX_GRTC_ENABLED
372 *
373 * Boolean. Accepted values: 0 and 1.
374 */
375#ifndef NRFX_GRTC_ENABLED
376#define NRFX_GRTC_ENABLED 1
377#endif
378
379/**
380 * @brief NRFX_GRTC_CONFIG_AUTOEN
381 *
382 * Boolean. Accepted values: 0 and 1.
383 */
384#ifndef NRFX_GRTC_CONFIG_AUTOEN
385#define NRFX_GRTC_CONFIG_AUTOEN 1
386#endif
387
388/**
389 * @brief NRFX_GRTC_CONFIG_AUTOSTART
390 *
391 * Boolean. Accepted values: 0 and 1.
392 */
393#ifndef NRFX_GRTC_CONFIG_AUTOSTART
394#define NRFX_GRTC_CONFIG_AUTOSTART 1
395#endif
396
397/**
398 * @brief NRFX_GRTC_CONFIG_CLEAR_AT_INIT
399 *
400 * Boolean. Accepted values: 0 and 1.
401 */
402#ifndef NRFX_GRTC_CONFIG_CLEAR_AT_INIT
403#define NRFX_GRTC_CONFIG_CLEAR_AT_INIT 0
404#endif
405
406/**
407 * @brief NRFX_GRTC_CONFIG_LFCLK_SELECT_AT_INIT
408 *
409 * Boolean. Accepted values: 0 and 1.
410 */
411#ifndef NRFX_GRTC_CONFIG_LFCLK_SELECT_AT_INIT
412#define NRFX_GRTC_CONFIG_LFCLK_SELECT_AT_INIT 1
413#endif
414
415/**
416 * @brief NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS
417 *
418 * Integer value.
419 */
420#ifndef NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS
421#define NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS 5
422#endif
423
424/**
425 * @brief NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK
426 *
427 * Channels 0, 1, 2, 5 and 6 are usable by the application core. Channels
428 * 3-4 are reserved for the FLPR core and 7-11 for zero-latency interrupts.
429 */
430#ifndef NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK
431#define NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK 0x00000067
432#endif
433
434/**
435 * @brief NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY
436 *
437 * Integer value. Minimum: 0. Maximum: 7.
438 */
439#ifndef NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY
440#define NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
441#endif
442
443/**
444 * @brief NRFX_GRTC_CONFIG_LOG_ENABLED
445 *
446 * Boolean. Accepted values: 0 and 1.
447 */
448#ifndef NRFX_GRTC_CONFIG_LOG_ENABLED
449#define NRFX_GRTC_CONFIG_LOG_ENABLED 0
450#endif
451
452/**
453 * @brief NRFX_GRTC_CONFIG_LOG_LEVEL
454 *
455 * Integer value.
456 * Supported values:
457 * - Off = 0
458 * - Error = 1
459 * - Warning = 2
460 * - Info = 3
461 * - Debug = 4
462 */
463#ifndef NRFX_GRTC_CONFIG_LOG_LEVEL
464#define NRFX_GRTC_CONFIG_LOG_LEVEL 3
465#endif
466
467/**
468 * @brief NRFX_I2S_ENABLED
469 *
470 * Boolean. Accepted values: 0 and 1.
471 */
472#ifndef NRFX_I2S_ENABLED
473#define NRFX_I2S_ENABLED 0
474#endif
475
476/**
477 * @brief NRFX_I2S_DEFAULT_CONFIG_IRQ_PRIORITY
478 *
479 * Integer value. Minimum: 0. Maximum: 7.
480 */
481#ifndef NRFX_I2S_DEFAULT_CONFIG_IRQ_PRIORITY
482#define NRFX_I2S_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
483#endif
484
485/**
486 * @brief NRFX_I2S_CONFIG_LOG_ENABLED
487 *
488 * Boolean. Accepted values: 0 and 1.
489 */
490#ifndef NRFX_I2S_CONFIG_LOG_ENABLED
491#define NRFX_I2S_CONFIG_LOG_ENABLED 0
492#endif
493
494/**
495 * @brief NRFX_I2S_CONFIG_LOG_LEVEL
496 *
497 * Integer value.
498 * Supported values:
499 * - Off = 0
500 * - Error = 1
501 * - Warning = 2
502 * - Info = 3
503 * - Debug = 4
504 */
505#ifndef NRFX_I2S_CONFIG_LOG_LEVEL
506#define NRFX_I2S_CONFIG_LOG_LEVEL 3
507#endif
508
509/**
510 * @brief NRFX_I2S20_ENABLED
511 *
512 * Boolean. Accepted values: 0 and 1.
513 */
514#ifndef NRFX_I2S20_ENABLED
515#define NRFX_I2S20_ENABLED 0
516#endif
517
518/**
519 * @brief NRFX_LPCOMP_ENABLED
520 *
521 * Boolean. Accepted values: 0 and 1.
522 */
523#ifndef NRFX_LPCOMP_ENABLED
524#define NRFX_LPCOMP_ENABLED 0
525#endif
526
527/**
528 * @brief NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY
529 *
530 * Integer value. Minimum: 0. Maximum: 7.
531 */
532#ifndef NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY
533#define NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
534#endif
535
536/**
537 * @brief NRFX_LPCOMP_CONFIG_LOG_ENABLED
538 *
539 * Boolean. Accepted values: 0 and 1.
540 */
541#ifndef NRFX_LPCOMP_CONFIG_LOG_ENABLED
542#define NRFX_LPCOMP_CONFIG_LOG_ENABLED 0
543#endif
544
545/**
546 * @brief NRFX_LPCOMP_CONFIG_LOG_LEVEL
547 *
548 * Integer value.
549 * Supported values:
550 * - Off = 0
551 * - Error = 1
552 * - Warning = 2
553 * - Info = 3
554 * - Debug = 4
555 */
556#ifndef NRFX_LPCOMP_CONFIG_LOG_LEVEL
557#define NRFX_LPCOMP_CONFIG_LOG_LEVEL 3
558#endif
559
560/**
561 * @brief NRFX_NFCT_ENABLED
562 *
563 * Boolean. Accepted values: 0 and 1.
564 */
565#ifndef NRFX_NFCT_ENABLED
566#define NRFX_NFCT_ENABLED 0
567#endif
568
569/**
570 * @brief NRFX_NFCT_DEFAULT_CONFIG_IRQ_PRIORITY
571 *
572 * Integer value. Minimum: 0. Maximum: 7.
573 */
574#ifndef NRFX_NFCT_DEFAULT_CONFIG_IRQ_PRIORITY
575#define NRFX_NFCT_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
576#endif
577
578/**
579 * @brief NRFX_NFCT_CONFIG_TIMER_INSTANCE_ID - Timer instance used for workarounds in the driver.
580 *
581 * Integer value. Minimum: 0. Maximum: 5.
582 */
583#ifndef NRFX_NFCT_CONFIG_TIMER_INSTANCE_ID
584#define NRFX_NFCT_CONFIG_TIMER_INSTANCE_ID 0
585#endif
586
587/**
588 * @brief NRFX_NFCT_CONFIG_LOG_ENABLED
589 *
590 * Boolean. Accepted values: 0 and 1.
591 */
592#ifndef NRFX_NFCT_CONFIG_LOG_ENABLED
593#define NRFX_NFCT_CONFIG_LOG_ENABLED 0
594#endif
595
596/**
597 * @brief NRFX_NFCT_CONFIG_LOG_LEVEL
598 *
599 * Integer value.
600 * Supported values:
601 * - Off = 0
602 * - Error = 1
603 * - Warning = 2
604 * - Info = 3
605 * - Debug = 4
606 */
607#ifndef NRFX_NFCT_CONFIG_LOG_LEVEL
608#define NRFX_NFCT_CONFIG_LOG_LEVEL 3
609#endif
610
611/**
612 * @brief NRFX_PDM_ENABLED
613 *
614 * Boolean. Accepted values: 0 and 1.
615 */
616#ifndef NRFX_PDM_ENABLED
617#define NRFX_PDM_ENABLED 0
618#endif
619
620/**
621 * @brief NRFX_PDM_DEFAULT_CONFIG_IRQ_PRIORITY
622 *
623 * Integer value. Minimum: 0. Maximum: 7.
624 */
625#ifndef NRFX_PDM_DEFAULT_CONFIG_IRQ_PRIORITY
626#define NRFX_PDM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
627#endif
628
629/**
630 * @brief NRFX_PDM_CONFIG_LOG_ENABLED
631 *
632 * Boolean. Accepted values: 0 and 1.
633 */
634#ifndef NRFX_PDM_CONFIG_LOG_ENABLED
635#define NRFX_PDM_CONFIG_LOG_ENABLED 0
636#endif
637
638/**
639 * @brief NRFX_PDM_CONFIG_LOG_LEVEL
640 *
641 * Integer value.
642 * Supported values:
643 * - Off = 0
644 * - Error = 1
645 * - Warning = 2
646 * - Info = 3
647 * - Debug = 4
648 */
649#ifndef NRFX_PDM_CONFIG_LOG_LEVEL
650#define NRFX_PDM_CONFIG_LOG_LEVEL 3
651#endif
652
653/**
654 * @brief NRFX_PDM20_ENABLED
655 *
656 * Boolean. Accepted values: 0 and 1.
657 */
658#ifndef NRFX_PDM20_ENABLED
659#define NRFX_PDM20_ENABLED 0
660#endif
661
662/**
663 * @brief NRFX_PDM21_ENABLED
664 *
665 * Boolean. Accepted values: 0 and 1.
666 */
667#ifndef NRFX_PDM21_ENABLED
668#define NRFX_PDM21_ENABLED 0
669#endif
670
671/**
672 * @brief NRFX_POWER_ENABLED
673 *
674 * Boolean. Accepted values: 0 and 1.
675 */
676#ifndef NRFX_POWER_ENABLED
677#define NRFX_POWER_ENABLED 0
678#endif
679
680/**
681 * @brief NRFX_POWER_DEFAULT_CONFIG_IRQ_PRIORITY
682 *
683 * Integer value. Minimum: 0. Maximum: 7.
684 */
685#ifndef NRFX_POWER_DEFAULT_CONFIG_IRQ_PRIORITY
686#define NRFX_POWER_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
687#endif
688
689/**
690 * @brief NRFX_PPIB_ENABLED
691 *
692 * Boolean. Accepted values: 0 and 1.
693 */
694#ifndef NRFX_PPIB_ENABLED
695#define NRFX_PPIB_ENABLED 0
696#endif
697
698/**
699 * @brief NRFX_PPIB_CONFIG_LOG_ENABLED
700 *
701 * Boolean. Accepted values: 0 and 1.
702 */
703#ifndef NRFX_PPIB_CONFIG_LOG_ENABLED
704#define NRFX_PPIB_CONFIG_LOG_ENABLED 0
705#endif
706
707/**
708 * @brief NRFX_PPIB_CONFIG_LOG_LEVEL
709 *
710 * Integer value.
711 * Supported values:
712 * - Off = 0
713 * - Error = 1
714 * - Warning = 2
715 * - Info = 3
716 * - Debug = 4
717 */
718#ifndef NRFX_PPIB_CONFIG_LOG_LEVEL
719#define NRFX_PPIB_CONFIG_LOG_LEVEL 3
720#endif
721
722/**
723 * @brief NRFX_PPIB00_ENABLED
724 *
725 * Boolean. Accepted values: 0 and 1.
726 */
727#ifndef NRFX_PPIB00_ENABLED
728#define NRFX_PPIB00_ENABLED 0
729#endif
730
731/**
732 * @brief NRFX_PPIB01_ENABLED
733 *
734 * Boolean. Accepted values: 0 and 1.
735 */
736#ifndef NRFX_PPIB01_ENABLED
737#define NRFX_PPIB01_ENABLED 0
738#endif
739
740/**
741 * @brief NRFX_PPIB10_ENABLED
742 *
743 * Boolean. Accepted values: 0 and 1.
744 */
745#ifndef NRFX_PPIB10_ENABLED
746#define NRFX_PPIB10_ENABLED 0
747#endif
748
749/**
750 * @brief NRFX_PPIB11_ENABLED
751 *
752 * Boolean. Accepted values: 0 and 1.
753 */
754#ifndef NRFX_PPIB11_ENABLED
755#define NRFX_PPIB11_ENABLED 0
756#endif
757
758/**
759 * @brief NRFX_PPIB20_ENABLED
760 *
761 * Boolean. Accepted values: 0 and 1.
762 */
763#ifndef NRFX_PPIB20_ENABLED
764#define NRFX_PPIB20_ENABLED 0
765#endif
766
767/**
768 * @brief NRFX_PPIB21_ENABLED
769 *
770 * Boolean. Accepted values: 0 and 1.
771 */
772#ifndef NRFX_PPIB21_ENABLED
773#define NRFX_PPIB21_ENABLED 0
774#endif
775
776/**
777 * @brief NRFX_PPIB22_ENABLED
778 *
779 * Boolean. Accepted values: 0 and 1.
780 */
781#ifndef NRFX_PPIB22_ENABLED
782#define NRFX_PPIB22_ENABLED 0
783#endif
784
785/**
786 * @brief NRFX_PPIB30_ENABLED
787 *
788 * Boolean. Accepted values: 0 and 1.
789 */
790#ifndef NRFX_PPIB30_ENABLED
791#define NRFX_PPIB30_ENABLED 0
792#endif
793
794/**
795 * @brief NRFX_PRS_ENABLED
796 *
797 * Boolean. Accepted values: 0 and 1.
798 */
799#ifndef NRFX_PRS_ENABLED
800#define NRFX_PRS_ENABLED 0
801#endif
802
803/**
804 * @brief NRFX_PRS_CONFIG_LOG_ENABLED
805 *
806 * Boolean. Accepted values: 0 and 1.
807 */
808#ifndef NRFX_PRS_CONFIG_LOG_ENABLED
809#define NRFX_PRS_CONFIG_LOG_ENABLED 0
810#endif
811
812/**
813 * @brief NRFX_PRS_CONFIG_LOG_LEVEL
814 *
815 * Integer value.
816 * Supported values:
817 * - Off = 0
818 * - Error = 1
819 * - Warning = 2
820 * - Info = 3
821 * - Debug = 4
822 */
823#ifndef NRFX_PRS_CONFIG_LOG_LEVEL
824#define NRFX_PRS_CONFIG_LOG_LEVEL 3
825#endif
826
827/**
828 * @brief NRFX_PRS_BOX_0_ENABLED
829 *
830 * Boolean. Accepted values: 0 and 1.
831 */
832#ifndef NRFX_PRS_BOX_0_ENABLED
833#define NRFX_PRS_BOX_0_ENABLED 0
834#endif
835
836/**
837 * @brief NRFX_PRS_BOX_1_ENABLED
838 *
839 * Boolean. Accepted values: 0 and 1.
840 */
841#ifndef NRFX_PRS_BOX_1_ENABLED
842#define NRFX_PRS_BOX_1_ENABLED 0
843#endif
844
845/**
846 * @brief NRFX_PRS_BOX_2_ENABLED
847 *
848 * Boolean. Accepted values: 0 and 1.
849 */
850#ifndef NRFX_PRS_BOX_2_ENABLED
851#define NRFX_PRS_BOX_2_ENABLED 0
852#endif
853
854/**
855 * @brief NRFX_PRS_BOX_3_ENABLED
856 *
857 * Boolean. Accepted values: 0 and 1.
858 */
859#ifndef NRFX_PRS_BOX_3_ENABLED
860#define NRFX_PRS_BOX_3_ENABLED 0
861#endif
862
863/**
864 * @brief NRFX_PRS_BOX_4_ENABLED
865 *
866 * Boolean. Accepted values: 0 and 1.
867 */
868#ifndef NRFX_PRS_BOX_4_ENABLED
869#define NRFX_PRS_BOX_4_ENABLED 0
870#endif
871
872/**
873 * @brief NRFX_PRS_BOX_5_ENABLED
874 *
875 * Boolean. Accepted values: 0 and 1.
876 */
877#ifndef NRFX_PRS_BOX_5_ENABLED
878#define NRFX_PRS_BOX_5_ENABLED 0
879#endif
880
881/**
882 * @brief NRFX_PWM_ENABLED
883 *
884 * Boolean. Accepted values: 0 and 1.
885 */
886#ifndef NRFX_PWM_ENABLED
887#define NRFX_PWM_ENABLED 0
888#endif
889
890/**
891 * @brief NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY
892 *
893 * Integer value. Minimum: 0. Maximum: 7.
894 */
895#ifndef NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY
896#define NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
897#endif
898
899/**
900 * @brief NRFX_PWM_CONFIG_LOG_ENABLED
901 *
902 * Boolean. Accepted values: 0 and 1.
903 */
904#ifndef NRFX_PWM_CONFIG_LOG_ENABLED
905#define NRFX_PWM_CONFIG_LOG_ENABLED 0
906#endif
907
908/**
909 * @brief NRFX_PWM_CONFIG_LOG_LEVEL
910 *
911 * Integer value.
912 * Supported values:
913 * - Off = 0
914 * - Error = 1
915 * - Warning = 2
916 * - Info = 3
917 * - Debug = 4
918 */
919#ifndef NRFX_PWM_CONFIG_LOG_LEVEL
920#define NRFX_PWM_CONFIG_LOG_LEVEL 3
921#endif
922
923/**
924 * @brief NRFX_PWM20_ENABLED
925 *
926 * Boolean. Accepted values: 0 and 1.
927 */
928#ifndef NRFX_PWM20_ENABLED
929#define NRFX_PWM20_ENABLED 0
930#endif
931
932/**
933 * @brief NRFX_PWM21_ENABLED
934 *
935 * Boolean. Accepted values: 0 and 1.
936 */
937#ifndef NRFX_PWM21_ENABLED
938#define NRFX_PWM21_ENABLED 0
939#endif
940
941/**
942 * @brief NRFX_PWM22_ENABLED
943 *
944 * Boolean. Accepted values: 0 and 1.
945 */
946#ifndef NRFX_PWM22_ENABLED
947#define NRFX_PWM22_ENABLED 0
948#endif
949
950/**
951 * @brief NRFX_QDEC_ENABLED
952 *
953 * Boolean. Accepted values: 0 and 1.
954 */
955#ifndef NRFX_QDEC_ENABLED
956#define NRFX_QDEC_ENABLED 0
957#endif
958
959/**
960 * @brief NRFX_QDEC_DEFAULT_CONFIG_IRQ_PRIORITY
961 *
962 * Integer value. Minimum: 0. Maximum: 7.
963 */
964#ifndef NRFX_QDEC_DEFAULT_CONFIG_IRQ_PRIORITY
965#define NRFX_QDEC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
966#endif
967
968/**
969 * @brief NRFX_QDEC_CONFIG_LOG_ENABLED
970 *
971 * Boolean. Accepted values: 0 and 1.
972 */
973#ifndef NRFX_QDEC_CONFIG_LOG_ENABLED
974#define NRFX_QDEC_CONFIG_LOG_ENABLED 0
975#endif
976
977/**
978 * @brief NRFX_QDEC_CONFIG_LOG_LEVEL
979 *
980 * Integer value.
981 * Supported values:
982 * - Off = 0
983 * - Error = 1
984 * - Warning = 2
985 * - Info = 3
986 * - Debug = 4
987 */
988#ifndef NRFX_QDEC_CONFIG_LOG_LEVEL
989#define NRFX_QDEC_CONFIG_LOG_LEVEL 3
990#endif
991
992/**
993 * @brief NRFX_QDEC20_ENABLED
994 *
995 * Boolean. Accepted values: 0 and 1.
996 */
997#ifndef NRFX_QDEC20_ENABLED
998#define NRFX_QDEC20_ENABLED 0
999#endif
1000
1001/**
1002 * @brief NRFX_QDEC21_ENABLED
1003 *
1004 * Boolean. Accepted values: 0 and 1.
1005 */
1006#ifndef NRFX_QDEC21_ENABLED
1007#define NRFX_QDEC21_ENABLED 0
1008#endif
1009
1010/**
1011 * @brief NRFX_RRAMC_ENABLED
1012 *
1013 * Boolean. Accepted values: 0 and 1.
1014 */
1015#ifndef NRFX_RRAMC_ENABLED
1016#define NRFX_RRAMC_ENABLED 0
1017#endif
1018
1019/**
1020 * @brief NRFX_RRAMC_DEFAULT_CONFIG_IRQ_PRIORITY
1021 *
1022 * Integer value. Minimum: 0. Maximum: 7.
1023 */
1024#ifndef NRFX_RRAMC_DEFAULT_CONFIG_IRQ_PRIORITY
1025#define NRFX_RRAMC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1026#endif
1027
1028/**
1029 * @brief NRFX_RRAMC_CONFIG_LOG_ENABLED
1030 *
1031 * Boolean. Accepted values: 0 and 1.
1032 */
1033#ifndef NRFX_RRAMC_CONFIG_LOG_ENABLED
1034#define NRFX_RRAMC_CONFIG_LOG_ENABLED 0
1035#endif
1036
1037/**
1038 * @brief NRFX_RRAMC_CONFIG_LOG_LEVEL
1039 *
1040 * Integer value.
1041 * Supported values:
1042 * - Off = 0
1043 * - Error = 1
1044 * - Warning = 2
1045 * - Info = 3
1046 * - Debug = 4
1047 */
1048#ifndef NRFX_RRAMC_CONFIG_LOG_LEVEL
1049#define NRFX_RRAMC_CONFIG_LOG_LEVEL 3
1050#endif
1051
1052/**
1053 * @brief NRFX_SAADC_ENABLED
1054 *
1055 * Boolean. Accepted values: 0 and 1.
1056 */
1057#ifndef NRFX_SAADC_ENABLED
1058#define NRFX_SAADC_ENABLED 0
1059#endif
1060
1061/**
1062 * @brief NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY
1063 *
1064 * Integer value. Minimum: 0. Maximum: 7.
1065 */
1066#ifndef NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY
1067#define NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1068#endif
1069
1070/**
1071 * @brief NRFX_SAADC_CONFIG_LOG_ENABLED
1072 *
1073 * Boolean. Accepted values: 0 and 1.
1074 */
1075#ifndef NRFX_SAADC_CONFIG_LOG_ENABLED
1076#define NRFX_SAADC_CONFIG_LOG_ENABLED 0
1077#endif
1078
1079/**
1080 * @brief NRFX_SAADC_CONFIG_LOG_LEVEL
1081 *
1082 * Integer value.
1083 * Supported values:
1084 * - Off = 0
1085 * - Error = 1
1086 * - Warning = 2
1087 * - Info = 3
1088 * - Debug = 4
1089 */
1090#ifndef NRFX_SAADC_CONFIG_LOG_LEVEL
1091#define NRFX_SAADC_CONFIG_LOG_LEVEL 3
1092#endif
1093
1094/**
1095 * @brief NRFX_SPIM_ENABLED
1096 *
1097 * Boolean. Accepted values: 0 and 1.
1098 */
1099#ifndef NRFX_SPIM_ENABLED
1100#define NRFX_SPIM_ENABLED 0
1101#endif
1102
1103/**
1104 * @brief NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY
1105 *
1106 * Integer value. Minimum: 0. Maximum: 7.
1107 */
1108#ifndef NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY
1109#define NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1110#endif
1111
1112/**
1113 * @brief NRFX_SPIM_CONFIG_LOG_ENABLED
1114 *
1115 * Boolean. Accepted values: 0 and 1.
1116 */
1117#ifndef NRFX_SPIM_CONFIG_LOG_ENABLED
1118#define NRFX_SPIM_CONFIG_LOG_ENABLED 0
1119#endif
1120
1121/**
1122 * @brief NRFX_SPIM_CONFIG_LOG_LEVEL
1123 *
1124 * Integer value.
1125 * Supported values:
1126 * - Off = 0
1127 * - Error = 1
1128 * - Warning = 2
1129 * - Info = 3
1130 * - Debug = 4
1131 */
1132#ifndef NRFX_SPIM_CONFIG_LOG_LEVEL
1133#define NRFX_SPIM_CONFIG_LOG_LEVEL 3
1134#endif
1135
1136/**
1137 * @brief NRFX_SPIM00_ENABLED
1138 *
1139 * Boolean. Accepted values: 0 and 1.
1140 */
1141#ifndef NRFX_SPIM00_ENABLED
1142#define NRFX_SPIM00_ENABLED 0
1143#endif
1144
1145/**
1146 * @brief NRFX_SPIM20_ENABLED
1147 *
1148 * Boolean. Accepted values: 0 and 1.
1149 */
1150#ifndef NRFX_SPIM20_ENABLED
1151#define NRFX_SPIM20_ENABLED 0
1152#endif
1153
1154/**
1155 * @brief NRFX_SPIM21_ENABLED
1156 *
1157 * Boolean. Accepted values: 0 and 1.
1158 */
1159#ifndef NRFX_SPIM21_ENABLED
1160#define NRFX_SPIM21_ENABLED 0
1161#endif
1162
1163/**
1164 * @brief NRFX_SPIM22_ENABLED
1165 *
1166 * Boolean. Accepted values: 0 and 1.
1167 */
1168#ifndef NRFX_SPIM22_ENABLED
1169#define NRFX_SPIM22_ENABLED 0
1170#endif
1171
1172/**
1173 * @brief NRFX_SPIM30_ENABLED
1174 *
1175 * Boolean. Accepted values: 0 and 1.
1176 */
1177#ifndef NRFX_SPIM30_ENABLED
1178#define NRFX_SPIM30_ENABLED 0
1179#endif
1180
1181/**
1182 * @brief NRFX_SPIS_ENABLED
1183 *
1184 * Boolean. Accepted values: 0 and 1.
1185 */
1186#ifndef NRFX_SPIS_ENABLED
1187#define NRFX_SPIS_ENABLED 0
1188#endif
1189
1190/**
1191 * @brief NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY
1192 *
1193 * Integer value. Minimum: 0. Maximum: 7.
1194 */
1195#ifndef NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY
1196#define NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1197#endif
1198
1199/**
1200 * @brief NRFX_SPIS_CONFIG_LOG_ENABLED
1201 *
1202 * Boolean. Accepted values: 0 and 1.
1203 */
1204#ifndef NRFX_SPIS_CONFIG_LOG_ENABLED
1205#define NRFX_SPIS_CONFIG_LOG_ENABLED 0
1206#endif
1207
1208/**
1209 * @brief NRFX_SPIS_CONFIG_LOG_LEVEL
1210 *
1211 * Integer value.
1212 * Supported values:
1213 * - Off = 0
1214 * - Error = 1
1215 * - Warning = 2
1216 * - Info = 3
1217 * - Debug = 4
1218 */
1219#ifndef NRFX_SPIS_CONFIG_LOG_LEVEL
1220#define NRFX_SPIS_CONFIG_LOG_LEVEL 3
1221#endif
1222
1223/**
1224 * @brief NRFX_SPIS00_ENABLED
1225 *
1226 * Boolean. Accepted values: 0 and 1.
1227 */
1228#ifndef NRFX_SPIS00_ENABLED
1229#define NRFX_SPIS00_ENABLED 0
1230#endif
1231
1232/**
1233 * @brief NRFX_SPIS20_ENABLED
1234 *
1235 * Boolean. Accepted values: 0 and 1.
1236 */
1237#ifndef NRFX_SPIS20_ENABLED
1238#define NRFX_SPIS20_ENABLED 0
1239#endif
1240
1241/**
1242 * @brief NRFX_SPIS21_ENABLED
1243 *
1244 * Boolean. Accepted values: 0 and 1.
1245 */
1246#ifndef NRFX_SPIS21_ENABLED
1247#define NRFX_SPIS21_ENABLED 0
1248#endif
1249
1250/**
1251 * @brief NRFX_SPIS22_ENABLED
1252 *
1253 * Boolean. Accepted values: 0 and 1.
1254 */
1255#ifndef NRFX_SPIS22_ENABLED
1256#define NRFX_SPIS22_ENABLED 0
1257#endif
1258
1259/**
1260 * @brief NRFX_SPIS30_ENABLED
1261 *
1262 * Boolean. Accepted values: 0 and 1.
1263 */
1264#ifndef NRFX_SPIS30_ENABLED
1265#define NRFX_SPIS30_ENABLED 0
1266#endif
1267
1268/**
1269 * @brief NRFX_SYSTICK_ENABLED
1270 *
1271 * Boolean. Accepted values: 0 and 1.
1272 */
1273#ifndef NRFX_SYSTICK_ENABLED
1274#define NRFX_SYSTICK_ENABLED 0
1275#endif
1276
1277/**
1278 * @brief NRFX_TEMP_ENABLED
1279 *
1280 * Boolean. Accepted values: 0 and 1.
1281 */
1282#ifndef NRFX_TEMP_ENABLED
1283#define NRFX_TEMP_ENABLED 0
1284#endif
1285
1286/**
1287 * @brief NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY
1288 *
1289 * Integer value. Minimum: 0. Maximum: 7.
1290 */
1291#ifndef NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY
1292#define NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1293#endif
1294
1295/**
1296 * @brief NRFX_TEMP_CONFIG_LOG_ENABLED
1297 *
1298 * Boolean. Accepted values: 0 and 1.
1299 */
1300#ifndef NRFX_TEMP_CONFIG_LOG_ENABLED
1301#define NRFX_TEMP_CONFIG_LOG_ENABLED 0
1302#endif
1303
1304/**
1305 * @brief NRFX_TEMP_CONFIG_LOG_LEVEL
1306 *
1307 * Integer value.
1308 * Supported values:
1309 * - Off = 0
1310 * - Error = 1
1311 * - Warning = 2
1312 * - Info = 3
1313 * - Debug = 4
1314 */
1315#ifndef NRFX_TEMP_CONFIG_LOG_LEVEL
1316#define NRFX_TEMP_CONFIG_LOG_LEVEL 3
1317#endif
1318
1319/**
1320 * @brief NRFX_TIMER_ENABLED
1321 *
1322 * Boolean. Accepted values: 0 and 1.
1323 */
1324#ifndef NRFX_TIMER_ENABLED
1325#define NRFX_TIMER_ENABLED 0
1326#endif
1327
1328/**
1329 * @brief NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY
1330 *
1331 * Integer value. Minimum: 0. Maximum: 7.
1332 */
1333#ifndef NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY
1334#define NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1335#endif
1336
1337/**
1338 * @brief NRFX_TIMER_CONFIG_LOG_ENABLED
1339 *
1340 * Boolean. Accepted values: 0 and 1.
1341 */
1342#ifndef NRFX_TIMER_CONFIG_LOG_ENABLED
1343#define NRFX_TIMER_CONFIG_LOG_ENABLED 0
1344#endif
1345
1346/**
1347 * @brief NRFX_TIMER_CONFIG_LOG_LEVEL
1348 *
1349 * Integer value.
1350 * Supported values:
1351 * - Off = 0
1352 * - Error = 1
1353 * - Warning = 2
1354 * - Info = 3
1355 * - Debug = 4
1356 */
1357#ifndef NRFX_TIMER_CONFIG_LOG_LEVEL
1358#define NRFX_TIMER_CONFIG_LOG_LEVEL 3
1359#endif
1360
1361/**
1362 * @brief NRFX_TIMER00_ENABLED
1363 *
1364 * Boolean. Accepted values: 0 and 1.
1365 */
1366#ifndef NRFX_TIMER00_ENABLED
1367#define NRFX_TIMER00_ENABLED 0
1368#endif
1369
1370/**
1371 * @brief NRFX_TIMER10_ENABLED
1372 *
1373 * Boolean. Accepted values: 0 and 1.
1374 */
1375#ifndef NRFX_TIMER10_ENABLED
1376#define NRFX_TIMER10_ENABLED 0
1377#endif
1378
1379/**
1380 * @brief NRFX_TIMER20_ENABLED
1381 *
1382 * Boolean. Accepted values: 0 and 1.
1383 */
1384#ifndef NRFX_TIMER20_ENABLED
1385#define NRFX_TIMER20_ENABLED 0
1386#endif
1387
1388/**
1389 * @brief NRFX_TIMER21_ENABLED
1390 *
1391 * Boolean. Accepted values: 0 and 1.
1392 */
1393#ifndef NRFX_TIMER21_ENABLED
1394#define NRFX_TIMER21_ENABLED 0
1395#endif
1396
1397/**
1398 * @brief NRFX_TIMER22_ENABLED
1399 *
1400 * Boolean. Accepted values: 0 and 1.
1401 */
1402#ifndef NRFX_TIMER22_ENABLED
1403#define NRFX_TIMER22_ENABLED 0
1404#endif
1405
1406/**
1407 * @brief NRFX_TIMER23_ENABLED
1408 *
1409 * Boolean. Accepted values: 0 and 1.
1410 */
1411#ifndef NRFX_TIMER23_ENABLED
1412#define NRFX_TIMER23_ENABLED 0
1413#endif
1414
1415/**
1416 * @brief NRFX_TIMER24_ENABLED
1417 *
1418 * Boolean. Accepted values: 0 and 1.
1419 */
1420#ifndef NRFX_TIMER24_ENABLED
1421#define NRFX_TIMER24_ENABLED 0
1422#endif
1423
1424/**
1425 * @brief NRFX_TWIM_ENABLED
1426 *
1427 * Boolean. Accepted values: 0 and 1.
1428 */
1429#ifndef NRFX_TWIM_ENABLED
1430#define NRFX_TWIM_ENABLED 0
1431#endif
1432
1433/**
1434 * @brief NRFX_TWIM_DEFAULT_CONFIG_IRQ_PRIORITY
1435 *
1436 * Integer value. Minimum: 0. Maximum: 7.
1437 */
1438#ifndef NRFX_TWIM_DEFAULT_CONFIG_IRQ_PRIORITY
1439#define NRFX_TWIM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1440#endif
1441
1442/**
1443 * @brief NRFX_TWIM_CONFIG_LOG_ENABLED
1444 *
1445 * Boolean. Accepted values: 0 and 1.
1446 */
1447#ifndef NRFX_TWIM_CONFIG_LOG_ENABLED
1448#define NRFX_TWIM_CONFIG_LOG_ENABLED 0
1449#endif
1450
1451/**
1452 * @brief NRFX_TWIM_CONFIG_LOG_LEVEL
1453 *
1454 * Integer value.
1455 * Supported values:
1456 * - Off = 0
1457 * - Error = 1
1458 * - Warning = 2
1459 * - Info = 3
1460 * - Debug = 4
1461 */
1462#ifndef NRFX_TWIM_CONFIG_LOG_LEVEL
1463#define NRFX_TWIM_CONFIG_LOG_LEVEL 3
1464#endif
1465
1466/**
1467 * @brief NRFX_TWIM20_ENABLED
1468 *
1469 * Boolean. Accepted values: 0 and 1.
1470 */
1471#ifndef NRFX_TWIM20_ENABLED
1472#define NRFX_TWIM20_ENABLED 0
1473#endif
1474
1475/**
1476 * @brief NRFX_TWIM21_ENABLED
1477 *
1478 * Boolean. Accepted values: 0 and 1.
1479 */
1480#ifndef NRFX_TWIM21_ENABLED
1481#define NRFX_TWIM21_ENABLED 0
1482#endif
1483
1484/**
1485 * @brief NRFX_TWIM22_ENABLED
1486 *
1487 * Boolean. Accepted values: 0 and 1.
1488 */
1489#ifndef NRFX_TWIM22_ENABLED
1490#define NRFX_TWIM22_ENABLED 0
1491#endif
1492
1493/**
1494 * @brief NRFX_TWIM30_ENABLED
1495 *
1496 * Boolean. Accepted values: 0 and 1.
1497 */
1498#ifndef NRFX_TWIM30_ENABLED
1499#define NRFX_TWIM30_ENABLED 0
1500#endif
1501
1502/**
1503 * @brief NRFX_TWIS_ENABLED
1504 *
1505 * Boolean. Accepted values: 0 and 1.
1506 */
1507#ifndef NRFX_TWIS_ENABLED
1508#define NRFX_TWIS_ENABLED 0
1509#endif
1510
1511/**
1512 * @brief NRFX_TWIS_DEFAULT_CONFIG_IRQ_PRIORITY
1513 *
1514 * Integer value. Minimum: 0. Maximum: 7.
1515 */
1516#ifndef NRFX_TWIS_DEFAULT_CONFIG_IRQ_PRIORITY
1517#define NRFX_TWIS_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1518#endif
1519
1520/**
1521 * @brief NRFX_TWIS_CONFIG_LOG_ENABLED
1522 *
1523 * Boolean. Accepted values: 0 and 1.
1524 */
1525#ifndef NRFX_TWIS_CONFIG_LOG_ENABLED
1526#define NRFX_TWIS_CONFIG_LOG_ENABLED 0
1527#endif
1528
1529/**
1530 * @brief NRFX_TWIS_ASSUME_INIT_AFTER_RESET_ONLY - Assume that any instance would be initialized only once.
1531 *
1532 * Boolean. Accepted values: 0 and 1.
1533 */
1534#ifndef NRFX_TWIS_ASSUME_INIT_AFTER_RESET_ONLY
1535#define NRFX_TWIS_ASSUME_INIT_AFTER_RESET_ONLY 0
1536#endif
1537
1538/**
1539 * @brief NRFX_TWIS_NO_SYNC_MODE - Remove support for synchronous mode.
1540 *
1541 * Boolean. Accepted values: 0 and 1.
1542 */
1543#ifndef NRFX_TWIS_NO_SYNC_MODE
1544#define NRFX_TWIS_NO_SYNC_MODE 0
1545#endif
1546
1547/**
1548 * @brief NRFX_TWIS_CONFIG_LOG_LEVEL
1549 *
1550 * Integer value.
1551 * Supported values:
1552 * - Off = 0
1553 * - Error = 1
1554 * - Warning = 2
1555 * - Info = 3
1556 * - Debug = 4
1557 */
1558#ifndef NRFX_TWIS_CONFIG_LOG_LEVEL
1559#define NRFX_TWIS_CONFIG_LOG_LEVEL 3
1560#endif
1561
1562/**
1563 * @brief NRFX_TWIS20_ENABLED
1564 *
1565 * Boolean. Accepted values: 0 and 1.
1566 */
1567#ifndef NRFX_TWIS20_ENABLED
1568#define NRFX_TWIS20_ENABLED 0
1569#endif
1570
1571/**
1572 * @brief NRFX_TWIS21_ENABLED
1573 *
1574 * Boolean. Accepted values: 0 and 1.
1575 */
1576#ifndef NRFX_TWIS21_ENABLED
1577#define NRFX_TWIS21_ENABLED 0
1578#endif
1579
1580/**
1581 * @brief NRFX_TWIS22_ENABLED
1582 *
1583 * Boolean. Accepted values: 0 and 1.
1584 */
1585#ifndef NRFX_TWIS22_ENABLED
1586#define NRFX_TWIS22_ENABLED 0
1587#endif
1588
1589/**
1590 * @brief NRFX_TWIS30_ENABLED
1591 *
1592 * Boolean. Accepted values: 0 and 1.
1593 */
1594#ifndef NRFX_TWIS30_ENABLED
1595#define NRFX_TWIS30_ENABLED 0
1596#endif
1597
1598/**
1599 * @brief NRFX_UARTE_ENABLED
1600 *
1601 * Boolean. Accepted values: 0 and 1.
1602 */
1603#ifndef NRFX_UARTE_ENABLED
1604#define NRFX_UARTE_ENABLED 1
1605#endif
1606
1607/**
1608 * @brief NRFX_UARTE_CONFIG_SKIP_GPIO_CONFIG - If enabled, support for configuring GPIO pins is removed from the driver
1609 *
1610 * Boolean. Accepted values: 0 and 1.
1611 */
1612#ifndef NRFX_UARTE_CONFIG_SKIP_GPIO_CONFIG
1613#define NRFX_UARTE_CONFIG_SKIP_GPIO_CONFIG 0
1614#endif
1615
1616/**
1617 * @brief NRFX_UARTE_CONFIG_SKIP_PSEL_CONFIG - If enabled, support for configuring PSEL registers is removed from the driver
1618 *
1619 * Boolean. Accepted values: 0 and 1.
1620 */
1621#ifndef NRFX_UARTE_CONFIG_SKIP_PSEL_CONFIG
1622#define NRFX_UARTE_CONFIG_SKIP_PSEL_CONFIG 0
1623#endif
1624
1625/**
1626 * @brief NRFX_UARTE_CONFIG_TX_LINK - If enabled, driver supports linking of TX transfers.
1627 *
1628 * Boolean. Accepted values: 0 and 1.
1629 */
1630#ifndef NRFX_UARTE_CONFIG_TX_LINK
1631#define NRFX_UARTE_CONFIG_TX_LINK 1
1632#endif
1633
1634/**
1635 * @brief NRFX_UARTE_DEFAULT_CONFIG_IRQ_PRIORITY
1636 *
1637 * Integer value. Minimum: 0. Maximum: 7.
1638 */
1639#ifndef NRFX_UARTE_DEFAULT_CONFIG_IRQ_PRIORITY
1640#define NRFX_UARTE_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1641#endif
1642
1643/**
1644 * @brief NRFX_UARTE_CONFIG_LOG_ENABLED
1645 *
1646 * Boolean. Accepted values: 0 and 1.
1647 */
1648#ifndef NRFX_UARTE_CONFIG_LOG_ENABLED
1649#define NRFX_UARTE_CONFIG_LOG_ENABLED 0
1650#endif
1651
1652/**
1653 * @brief NRFX_UARTE_CONFIG_LOG_LEVEL
1654 *
1655 * Integer value.
1656 * Supported values:
1657 * - Off = 0
1658 * - Error = 1
1659 * - Warning = 2
1660 * - Info = 3
1661 * - Debug = 4
1662 */
1663#ifndef NRFX_UARTE_CONFIG_LOG_LEVEL
1664#define NRFX_UARTE_CONFIG_LOG_LEVEL 3
1665#endif
1666
1667/**
1668 * @brief NRFX_UARTE00_ENABLED
1669 *
1670 * Boolean. Accepted values: 0 and 1.
1671 */
1672#ifndef NRFX_UARTE00_ENABLED
1673#define NRFX_UARTE00_ENABLED 0
1674#endif
1675
1676/**
1677 * @brief NRFX_UARTE20_ENABLED
1678 *
1679 * Boolean. Accepted values: 0 and 1.
1680 */
1681#ifndef NRFX_UARTE20_ENABLED
1682#define NRFX_UARTE20_ENABLED 1
1683#endif
1684
1685/**
1686 * @brief NRFX_UARTE21_ENABLED
1687 *
1688 * Boolean. Accepted values: 0 and 1.
1689 */
1690#ifndef NRFX_UARTE21_ENABLED
1691#define NRFX_UARTE21_ENABLED 0
1692#endif
1693
1694/**
1695 * @brief NRFX_UARTE22_ENABLED
1696 *
1697 * Boolean. Accepted values: 0 and 1.
1698 */
1699#ifndef NRFX_UARTE22_ENABLED
1700#define NRFX_UARTE22_ENABLED 0
1701#endif
1702
1703/**
1704 * @brief NRFX_UARTE30_ENABLED
1705 *
1706 * Boolean. Accepted values: 0 and 1.
1707 */
1708#ifndef NRFX_UARTE30_ENABLED
1709#define NRFX_UARTE30_ENABLED 0
1710#endif
1711
1712/**
1713 * @brief NRFX_WDT_ENABLED
1714 *
1715 * Boolean. Accepted values: 0 and 1.
1716 */
1717#ifndef NRFX_WDT_ENABLED
1718#define NRFX_WDT_ENABLED 0
1719#endif
1720
1721/**
1722 * @brief NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY
1723 *
1724 * Integer value. Minimum: 0. Maximum: 7.
1725 */
1726#ifndef NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY
1727#define NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1728#endif
1729
1730/**
1731 * @brief NRFX_WDT_CONFIG_NO_IRQ - Remove WDT IRQ handling from WDT driver
1732 *
1733 * Boolean. Accepted values: 0 and 1.
1734 */
1735#ifndef NRFX_WDT_CONFIG_NO_IRQ
1736#define NRFX_WDT_CONFIG_NO_IRQ 0
1737#endif
1738
1739/**
1740 * @brief NRFX_WDT_CONFIG_LOG_ENABLED
1741 *
1742 * Boolean. Accepted values: 0 and 1.
1743 */
1744#ifndef NRFX_WDT_CONFIG_LOG_ENABLED
1745#define NRFX_WDT_CONFIG_LOG_ENABLED 0
1746#endif
1747
1748/**
1749 * @brief NRFX_WDT_CONFIG_LOG_LEVEL
1750 *
1751 * Integer value.
1752 * Supported values:
1753 * - Off = 0
1754 * - Error = 1
1755 * - Warning = 2
1756 * - Info = 3
1757 * - Debug = 4
1758 */
1759#ifndef NRFX_WDT_CONFIG_LOG_LEVEL
1760#define NRFX_WDT_CONFIG_LOG_LEVEL 3
1761#endif
1762
1763/**
1764 * @brief NRFX_WDT30_ENABLED
1765 *
1766 * Boolean. Accepted values: 0 and 1.
1767 */
1768#ifndef NRFX_WDT30_ENABLED
1769#define NRFX_WDT30_ENABLED 0
1770#endif
1771
1772/**
1773 * @brief NRFX_WDT31_ENABLED
1774 *
1775 * Boolean. Accepted values: 0 and 1.
1776 */
1777#ifndef NRFX_WDT31_ENABLED
1778#define NRFX_WDT31_ENABLED 0
1779#endif
1780
1781#endif /* NRFX_CONFIG_NRF54L15_APPLICATION_H__ */