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