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