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