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_FLPR_H__
35 #define NRFX_CONFIG_NRF54H20_FLPR_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_GRTC_ENABLED
276  *
277  * Boolean. Accepted values: 0 and 1.
278  */
279 #ifndef NRFX_GRTC_ENABLED
280 #define NRFX_GRTC_ENABLED 0
281 #endif
282 
283 /**
284  * @brief NRFX_GRTC_CONFIG_SLEEP_ALLOWED
285  *
286  * Boolean. Accepted values: 0 and 1.
287  */
288 #ifndef NRFX_GRTC_CONFIG_SLEEP_ALLOWED
289 #define NRFX_GRTC_CONFIG_SLEEP_ALLOWED 0
290 #endif
291 
292 /**
293  * @brief NRFX_GRTC_CONFIG_AUTOEN
294  *
295  * Boolean. Accepted values: 0 and 1.
296  */
297 #ifndef NRFX_GRTC_CONFIG_AUTOEN
298 #define NRFX_GRTC_CONFIG_AUTOEN 0
299 #endif
300 
301 /**
302  * @brief NRFX_GRTC_CONFIG_AUTOSTART
303  *
304  * Boolean. Accepted values: 0 and 1.
305  */
306 #ifndef NRFX_GRTC_CONFIG_AUTOSTART
307 #define NRFX_GRTC_CONFIG_AUTOSTART 0
308 #endif
309 
310 /**
311  * @brief NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS
312  *
313  * Integer value.
314  */
315 #ifndef NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS
316 #define NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS 4
317 #endif
318 
319 /**
320  * @brief NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK
321  */
322 #ifndef NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK
323 #define NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK 0
324 #endif
325 
326 /**
327  * @brief NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY
328  *
329  * Integer value. Minimum: 0. Maximum: 3.
330  */
331 #ifndef NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY
332 #define NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
333 #endif
334 
335 /**
336  * @brief NRFX_GRTC_CONFIG_LOG_ENABLED
337  *
338  * Boolean. Accepted values: 0 and 1.
339  */
340 #ifndef NRFX_GRTC_CONFIG_LOG_ENABLED
341 #define NRFX_GRTC_CONFIG_LOG_ENABLED 0
342 #endif
343 
344 /**
345  * @brief NRFX_GRTC_CONFIG_LOG_LEVEL
346  *
347  * Integer value.
348  * Supported values:
349  * - Off     = 0
350  * - Error   = 1
351  * - Warning = 2
352  * - Info    = 3
353  * - Debug   = 4
354  */
355 #ifndef NRFX_GRTC_CONFIG_LOG_LEVEL
356 #define NRFX_GRTC_CONFIG_LOG_LEVEL 3
357 #endif
358 
359 /**
360  * @brief NRFX_IPCT_PUB_CONFIG_ALLOWED_CHANNELS_MASK
361  */
362 #ifndef NRFX_IPCT_PUB_CONFIG_ALLOWED_CHANNELS_MASK
363 #define NRFX_IPCT_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0x00000030
364 #endif
365 
366 /**
367  * @brief NRFX_IPCT120_PUB_CONFIG_ALLOWED_CHANNELS_MASK
368  */
369 #ifndef NRFX_IPCT120_PUB_CONFIG_ALLOWED_CHANNELS_MASK
370 #define NRFX_IPCT120_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0
371 #endif
372 
373 /**
374  * @brief NRFX_IPCT130_PUB_CONFIG_ALLOWED_CHANNELS_MASK
375  */
376 #ifndef NRFX_IPCT130_PUB_CONFIG_ALLOWED_CHANNELS_MASK
377 #define NRFX_IPCT130_PUB_CONFIG_ALLOWED_CHANNELS_MASK 0x0000000c
378 #endif
379 
380 /**
381  * @brief NRFX_IPCT_SUB_CONFIG_ALLOWED_CHANNELS_MASK
382  */
383 #ifndef NRFX_IPCT_SUB_CONFIG_ALLOWED_CHANNELS_MASK
384 #define NRFX_IPCT_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0x000000c0
385 #endif
386 
387 /**
388  * @brief NRFX_IPCT120_SUB_CONFIG_ALLOWED_CHANNELS_MASK
389  */
390 #ifndef NRFX_IPCT120_SUB_CONFIG_ALLOWED_CHANNELS_MASK
391 #define NRFX_IPCT120_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0
392 #endif
393 
394 /**
395  * @brief NRFX_IPCT130_SUB_CONFIG_ALLOWED_CHANNELS_MASK
396  */
397 #ifndef NRFX_IPCT130_SUB_CONFIG_ALLOWED_CHANNELS_MASK
398 #define NRFX_IPCT130_SUB_CONFIG_ALLOWED_CHANNELS_MASK 0x00000003
399 #endif
400 
401 /**
402  * @brief NRFX_LPCOMP_ENABLED
403  *
404  * Boolean. Accepted values: 0 and 1.
405  */
406 #ifndef NRFX_LPCOMP_ENABLED
407 #define NRFX_LPCOMP_ENABLED 0
408 #endif
409 
410 /**
411  * @brief NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY
412  *
413  * Integer value. Minimum: 0. Maximum: 3.
414  */
415 #ifndef NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY
416 #define NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
417 #endif
418 
419 /**
420  * @brief NRFX_LPCOMP_CONFIG_LOG_ENABLED
421  *
422  * Boolean. Accepted values: 0 and 1.
423  */
424 #ifndef NRFX_LPCOMP_CONFIG_LOG_ENABLED
425 #define NRFX_LPCOMP_CONFIG_LOG_ENABLED 0
426 #endif
427 
428 /**
429  * @brief NRFX_LPCOMP_CONFIG_LOG_LEVEL
430  *
431  * Integer value.
432  * Supported values:
433  * - Off     = 0
434  * - Error   = 1
435  * - Warning = 2
436  * - Info    = 3
437  * - Debug   = 4
438  */
439 #ifndef NRFX_LPCOMP_CONFIG_LOG_LEVEL
440 #define NRFX_LPCOMP_CONFIG_LOG_LEVEL 3
441 #endif
442 
443 /**
444  * @brief NRFX_MVDMA_ENABLED
445  *
446  * Boolean. Accepted values: 0 and 1.
447  */
448 #ifndef NRFX_MVDMA_ENABLED
449 #define NRFX_MVDMA_ENABLED 0
450 #endif
451 
452 /**
453  * @brief NRFX_MVDMA120_ENABLED
454  *
455  * Boolean. Accepted values: 0 and 1.
456  */
457 #ifndef NRFX_MVDMA120_ENABLED
458 #define NRFX_MVDMA120_ENABLED 0
459 #endif
460 
461 /**
462  * @brief NRFX_NFCT_ENABLED
463  *
464  * Boolean. Accepted values: 0 and 1.
465  */
466 #ifndef NRFX_NFCT_ENABLED
467 #define NRFX_NFCT_ENABLED 0
468 #endif
469 
470 /**
471  * @brief NRFX_NFCT_DEFAULT_CONFIG_IRQ_PRIORITY
472  *
473  * Integer value. Minimum: 0. Maximum: 3.
474  */
475 #ifndef NRFX_NFCT_DEFAULT_CONFIG_IRQ_PRIORITY
476 #define NRFX_NFCT_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
477 #endif
478 
479 /**
480  * @brief NRFX_NFCT_CONFIG_TIMER_INSTANCE_ID - Timer instance used for workarounds in the driver.
481  *
482  * Integer value. Minimum: 0. Maximum: 5.
483  */
484 #ifndef NRFX_NFCT_CONFIG_TIMER_INSTANCE_ID
485 #define NRFX_NFCT_CONFIG_TIMER_INSTANCE_ID 0
486 #endif
487 
488 /**
489  * @brief NRFX_NFCT_CONFIG_LOG_ENABLED
490  *
491  * Boolean. Accepted values: 0 and 1.
492  */
493 #ifndef NRFX_NFCT_CONFIG_LOG_ENABLED
494 #define NRFX_NFCT_CONFIG_LOG_ENABLED 0
495 #endif
496 
497 /**
498  * @brief NRFX_NFCT_CONFIG_LOG_LEVEL
499  *
500  * Integer value.
501  * Supported values:
502  * - Off     = 0
503  * - Error   = 1
504  * - Warning = 2
505  * - Info    = 3
506  * - Debug   = 4
507  */
508 #ifndef NRFX_NFCT_CONFIG_LOG_LEVEL
509 #define NRFX_NFCT_CONFIG_LOG_LEVEL 3
510 #endif
511 
512 /**
513  * @brief NRFX_PDM_ENABLED
514  *
515  * Boolean. Accepted values: 0 and 1.
516  */
517 #ifndef NRFX_PDM_ENABLED
518 #define NRFX_PDM_ENABLED 0
519 #endif
520 
521 /**
522  * @brief NRFX_PDM_DEFAULT_CONFIG_IRQ_PRIORITY
523  *
524  * Integer value. Minimum: 0. Maximum: 3.
525  */
526 #ifndef NRFX_PDM_DEFAULT_CONFIG_IRQ_PRIORITY
527 #define NRFX_PDM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
528 #endif
529 
530 /**
531  * @brief NRFX_PDM_CONFIG_LOG_ENABLED
532  *
533  * Boolean. Accepted values: 0 and 1.
534  */
535 #ifndef NRFX_PDM_CONFIG_LOG_ENABLED
536 #define NRFX_PDM_CONFIG_LOG_ENABLED 0
537 #endif
538 
539 /**
540  * @brief NRFX_PDM_CONFIG_LOG_LEVEL
541  *
542  * Integer value.
543  * Supported values:
544  * - Off     = 0
545  * - Error   = 1
546  * - Warning = 2
547  * - Info    = 3
548  * - Debug   = 4
549  */
550 #ifndef NRFX_PDM_CONFIG_LOG_LEVEL
551 #define NRFX_PDM_CONFIG_LOG_LEVEL 3
552 #endif
553 
554 /**
555  * @brief NRFX_PRS_ENABLED
556  *
557  * Boolean. Accepted values: 0 and 1.
558  */
559 #ifndef NRFX_PRS_ENABLED
560 #define NRFX_PRS_ENABLED 0
561 #endif
562 
563 /**
564  * @brief NRFX_PRS_CONFIG_LOG_ENABLED
565  *
566  * Boolean. Accepted values: 0 and 1.
567  */
568 #ifndef NRFX_PRS_CONFIG_LOG_ENABLED
569 #define NRFX_PRS_CONFIG_LOG_ENABLED 0
570 #endif
571 
572 /**
573  * @brief NRFX_PRS_CONFIG_LOG_LEVEL
574  *
575  * Integer value.
576  * Supported values:
577  * - Off     = 0
578  * - Error   = 1
579  * - Warning = 2
580  * - Info    = 3
581  * - Debug   = 4
582  */
583 #ifndef NRFX_PRS_CONFIG_LOG_LEVEL
584 #define NRFX_PRS_CONFIG_LOG_LEVEL 3
585 #endif
586 
587 /**
588  * @brief NRFX_PRS_BOX_0_ENABLED
589  *
590  * Boolean. Accepted values: 0 and 1.
591  */
592 #ifndef NRFX_PRS_BOX_0_ENABLED
593 #define NRFX_PRS_BOX_0_ENABLED 0
594 #endif
595 
596 /**
597  * @brief NRFX_PRS_BOX_1_ENABLED
598  *
599  * Boolean. Accepted values: 0 and 1.
600  */
601 #ifndef NRFX_PRS_BOX_1_ENABLED
602 #define NRFX_PRS_BOX_1_ENABLED 0
603 #endif
604 
605 /**
606  * @brief NRFX_PRS_BOX_2_ENABLED
607  *
608  * Boolean. Accepted values: 0 and 1.
609  */
610 #ifndef NRFX_PRS_BOX_2_ENABLED
611 #define NRFX_PRS_BOX_2_ENABLED 0
612 #endif
613 
614 /**
615  * @brief NRFX_PRS_BOX_3_ENABLED
616  *
617  * Boolean. Accepted values: 0 and 1.
618  */
619 #ifndef NRFX_PRS_BOX_3_ENABLED
620 #define NRFX_PRS_BOX_3_ENABLED 0
621 #endif
622 
623 /**
624  * @brief NRFX_PRS_BOX_4_ENABLED
625  *
626  * Boolean. Accepted values: 0 and 1.
627  */
628 #ifndef NRFX_PRS_BOX_4_ENABLED
629 #define NRFX_PRS_BOX_4_ENABLED 0
630 #endif
631 
632 /**
633  * @brief NRFX_PRS_BOX_5_ENABLED
634  *
635  * Boolean. Accepted values: 0 and 1.
636  */
637 #ifndef NRFX_PRS_BOX_5_ENABLED
638 #define NRFX_PRS_BOX_5_ENABLED 0
639 #endif
640 
641 /**
642  * @brief NRFX_PRS_BOX_6_ENABLED
643  *
644  * Boolean. Accepted values: 0 and 1.
645  */
646 #ifndef NRFX_PRS_BOX_6_ENABLED
647 #define NRFX_PRS_BOX_6_ENABLED 0
648 #endif
649 
650 /**
651  * @brief NRFX_PRS_BOX_7_ENABLED
652  *
653  * Boolean. Accepted values: 0 and 1.
654  */
655 #ifndef NRFX_PRS_BOX_7_ENABLED
656 #define NRFX_PRS_BOX_7_ENABLED 0
657 #endif
658 
659 /**
660  * @brief NRFX_PRS_BOX_8_ENABLED
661  *
662  * Boolean. Accepted values: 0 and 1.
663  */
664 #ifndef NRFX_PRS_BOX_8_ENABLED
665 #define NRFX_PRS_BOX_8_ENABLED 0
666 #endif
667 
668 /**
669  * @brief NRFX_PRS_BOX_9_ENABLED
670  *
671  * Boolean. Accepted values: 0 and 1.
672  */
673 #ifndef NRFX_PRS_BOX_9_ENABLED
674 #define NRFX_PRS_BOX_9_ENABLED 0
675 #endif
676 
677 /**
678  * @brief NRFX_PWM_ENABLED
679  *
680  * Boolean. Accepted values: 0 and 1.
681  */
682 #ifndef NRFX_PWM_ENABLED
683 #define NRFX_PWM_ENABLED 0
684 #endif
685 
686 /**
687  * @brief NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY
688  *
689  * Integer value. Minimum: 0. Maximum: 3.
690  */
691 #ifndef NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY
692 #define NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
693 #endif
694 
695 /**
696  * @brief NRFX_PWM_CONFIG_LOG_ENABLED
697  *
698  * Boolean. Accepted values: 0 and 1.
699  */
700 #ifndef NRFX_PWM_CONFIG_LOG_ENABLED
701 #define NRFX_PWM_CONFIG_LOG_ENABLED 0
702 #endif
703 
704 /**
705  * @brief NRFX_PWM_CONFIG_LOG_LEVEL
706  *
707  * Integer value.
708  * Supported values:
709  * - Off     = 0
710  * - Error   = 1
711  * - Warning = 2
712  * - Info    = 3
713  * - Debug   = 4
714  */
715 #ifndef NRFX_PWM_CONFIG_LOG_LEVEL
716 #define NRFX_PWM_CONFIG_LOG_LEVEL 3
717 #endif
718 
719 /**
720  * @brief NRFX_PWM120_ENABLED
721  *
722  * Boolean. Accepted values: 0 and 1.
723  */
724 #ifndef NRFX_PWM120_ENABLED
725 #define NRFX_PWM120_ENABLED 0
726 #endif
727 
728 /**
729  * @brief NRFX_PWM130_ENABLED
730  *
731  * Boolean. Accepted values: 0 and 1.
732  */
733 #ifndef NRFX_PWM130_ENABLED
734 #define NRFX_PWM130_ENABLED 0
735 #endif
736 
737 /**
738  * @brief NRFX_PWM131_ENABLED
739  *
740  * Boolean. Accepted values: 0 and 1.
741  */
742 #ifndef NRFX_PWM131_ENABLED
743 #define NRFX_PWM131_ENABLED 0
744 #endif
745 
746 /**
747  * @brief NRFX_PWM132_ENABLED
748  *
749  * Boolean. Accepted values: 0 and 1.
750  */
751 #ifndef NRFX_PWM132_ENABLED
752 #define NRFX_PWM132_ENABLED 0
753 #endif
754 
755 /**
756  * @brief NRFX_PWM133_ENABLED
757  *
758  * Boolean. Accepted values: 0 and 1.
759  */
760 #ifndef NRFX_PWM133_ENABLED
761 #define NRFX_PWM133_ENABLED 0
762 #endif
763 
764 /**
765  * @brief NRFX_QDEC_ENABLED
766  *
767  * Boolean. Accepted values: 0 and 1.
768  */
769 #ifndef NRFX_QDEC_ENABLED
770 #define NRFX_QDEC_ENABLED 0
771 #endif
772 
773 /**
774  * @brief NRFX_QDEC_DEFAULT_CONFIG_IRQ_PRIORITY
775  *
776  * Integer value. Minimum: 0. Maximum: 3.
777  */
778 #ifndef NRFX_QDEC_DEFAULT_CONFIG_IRQ_PRIORITY
779 #define NRFX_QDEC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
780 #endif
781 
782 /**
783  * @brief NRFX_QDEC_CONFIG_LOG_ENABLED
784  *
785  * Boolean. Accepted values: 0 and 1.
786  */
787 #ifndef NRFX_QDEC_CONFIG_LOG_ENABLED
788 #define NRFX_QDEC_CONFIG_LOG_ENABLED 0
789 #endif
790 
791 /**
792  * @brief NRFX_QDEC_CONFIG_LOG_LEVEL
793  *
794  * Integer value.
795  * Supported values:
796  * - Off     = 0
797  * - Error   = 1
798  * - Warning = 2
799  * - Info    = 3
800  * - Debug   = 4
801  */
802 #ifndef NRFX_QDEC_CONFIG_LOG_LEVEL
803 #define NRFX_QDEC_CONFIG_LOG_LEVEL 3
804 #endif
805 
806 /**
807  * @brief NRFX_QDEC130_ENABLED
808  *
809  * Boolean. Accepted values: 0 and 1.
810  */
811 #ifndef NRFX_QDEC130_ENABLED
812 #define NRFX_QDEC130_ENABLED 0
813 #endif
814 
815 /**
816  * @brief NRFX_QDEC131_ENABLED
817  *
818  * Boolean. Accepted values: 0 and 1.
819  */
820 #ifndef NRFX_QDEC131_ENABLED
821 #define NRFX_QDEC131_ENABLED 0
822 #endif
823 
824 /**
825  * @brief NRFX_RTC_ENABLED
826  *
827  * Boolean. Accepted values: 0 and 1.
828  */
829 #ifndef NRFX_RTC_ENABLED
830 #define NRFX_RTC_ENABLED 0
831 #endif
832 
833 /**
834  * @brief NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY
835  *
836  * Integer value. Minimum: 0. Maximum: 3.
837  */
838 #ifndef NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY
839 #define NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
840 #endif
841 
842 /**
843  * @brief NRFX_RTC_CONFIG_LOG_ENABLED
844  *
845  * Boolean. Accepted values: 0 and 1.
846  */
847 #ifndef NRFX_RTC_CONFIG_LOG_ENABLED
848 #define NRFX_RTC_CONFIG_LOG_ENABLED 0
849 #endif
850 
851 /**
852  * @brief NRFX_RTC_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_RTC_CONFIG_LOG_LEVEL
863 #define NRFX_RTC_CONFIG_LOG_LEVEL 3
864 #endif
865 
866 /**
867  * @brief NRFX_RTC130_ENABLED
868  *
869  * Boolean. Accepted values: 0 and 1.
870  */
871 #ifndef NRFX_RTC130_ENABLED
872 #define NRFX_RTC130_ENABLED 0
873 #endif
874 
875 /**
876  * @brief NRFX_RTC131_ENABLED
877  *
878  * Boolean. Accepted values: 0 and 1.
879  */
880 #ifndef NRFX_RTC131_ENABLED
881 #define NRFX_RTC131_ENABLED 0
882 #endif
883 
884 /**
885  * @brief NRFX_SAADC_ENABLED
886  *
887  * Boolean. Accepted values: 0 and 1.
888  */
889 #ifndef NRFX_SAADC_ENABLED
890 #define NRFX_SAADC_ENABLED 0
891 #endif
892 
893 /**
894  * @brief NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY
895  *
896  * Integer value. Minimum: 0. Maximum: 3.
897  */
898 #ifndef NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY
899 #define NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
900 #endif
901 
902 /**
903  * @brief NRFX_SAADC_CONFIG_LOG_ENABLED
904  *
905  * Boolean. Accepted values: 0 and 1.
906  */
907 #ifndef NRFX_SAADC_CONFIG_LOG_ENABLED
908 #define NRFX_SAADC_CONFIG_LOG_ENABLED 0
909 #endif
910 
911 /**
912  * @brief NRFX_SAADC_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_SAADC_CONFIG_LOG_LEVEL
923 #define NRFX_SAADC_CONFIG_LOG_LEVEL 3
924 #endif
925 
926 /**
927  * @brief NRFX_SPIM_ENABLED
928  *
929  * Boolean. Accepted values: 0 and 1.
930  */
931 #ifndef NRFX_SPIM_ENABLED
932 #define NRFX_SPIM_ENABLED 0
933 #endif
934 
935 /**
936  * @brief NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY
937  *
938  * Integer value. Minimum: 0. Maximum: 3.
939  */
940 #ifndef NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY
941 #define NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
942 #endif
943 
944 /**
945  * @brief NRFX_SPIM_CONFIG_LOG_ENABLED
946  *
947  * Boolean. Accepted values: 0 and 1.
948  */
949 #ifndef NRFX_SPIM_CONFIG_LOG_ENABLED
950 #define NRFX_SPIM_CONFIG_LOG_ENABLED 0
951 #endif
952 
953 /**
954  * @brief NRFX_SPIM_CONFIG_LOG_LEVEL
955  *
956  * Integer value.
957  * Supported values:
958  * - Off     = 0
959  * - Error   = 1
960  * - Warning = 2
961  * - Info    = 3
962  * - Debug   = 4
963  */
964 #ifndef NRFX_SPIM_CONFIG_LOG_LEVEL
965 #define NRFX_SPIM_CONFIG_LOG_LEVEL 3
966 #endif
967 
968 /**
969  * @brief NRFX_SPIM120_ENABLED
970  *
971  * Boolean. Accepted values: 0 and 1.
972  */
973 #ifndef NRFX_SPIM120_ENABLED
974 #define NRFX_SPIM120_ENABLED 0
975 #endif
976 
977 /**
978  * @brief NRFX_SPIM121_ENABLED
979  *
980  * Boolean. Accepted values: 0 and 1.
981  */
982 #ifndef NRFX_SPIM121_ENABLED
983 #define NRFX_SPIM121_ENABLED 0
984 #endif
985 
986 /**
987  * @brief NRFX_SPIM130_ENABLED
988  *
989  * Boolean. Accepted values: 0 and 1.
990  */
991 #ifndef NRFX_SPIM130_ENABLED
992 #define NRFX_SPIM130_ENABLED 0
993 #endif
994 
995 /**
996  * @brief NRFX_SPIM131_ENABLED
997  *
998  * Boolean. Accepted values: 0 and 1.
999  */
1000 #ifndef NRFX_SPIM131_ENABLED
1001 #define NRFX_SPIM131_ENABLED 0
1002 #endif
1003 
1004 /**
1005  * @brief NRFX_SPIM132_ENABLED
1006  *
1007  * Boolean. Accepted values: 0 and 1.
1008  */
1009 #ifndef NRFX_SPIM132_ENABLED
1010 #define NRFX_SPIM132_ENABLED 0
1011 #endif
1012 
1013 /**
1014  * @brief NRFX_SPIM133_ENABLED
1015  *
1016  * Boolean. Accepted values: 0 and 1.
1017  */
1018 #ifndef NRFX_SPIM133_ENABLED
1019 #define NRFX_SPIM133_ENABLED 0
1020 #endif
1021 
1022 /**
1023  * @brief NRFX_SPIM134_ENABLED
1024  *
1025  * Boolean. Accepted values: 0 and 1.
1026  */
1027 #ifndef NRFX_SPIM134_ENABLED
1028 #define NRFX_SPIM134_ENABLED 0
1029 #endif
1030 
1031 /**
1032  * @brief NRFX_SPIM135_ENABLED
1033  *
1034  * Boolean. Accepted values: 0 and 1.
1035  */
1036 #ifndef NRFX_SPIM135_ENABLED
1037 #define NRFX_SPIM135_ENABLED 0
1038 #endif
1039 
1040 /**
1041  * @brief NRFX_SPIM136_ENABLED
1042  *
1043  * Boolean. Accepted values: 0 and 1.
1044  */
1045 #ifndef NRFX_SPIM136_ENABLED
1046 #define NRFX_SPIM136_ENABLED 0
1047 #endif
1048 
1049 /**
1050  * @brief NRFX_SPIM137_ENABLED
1051  *
1052  * Boolean. Accepted values: 0 and 1.
1053  */
1054 #ifndef NRFX_SPIM137_ENABLED
1055 #define NRFX_SPIM137_ENABLED 0
1056 #endif
1057 
1058 /**
1059  * @brief NRFX_SPIS_ENABLED
1060  *
1061  * Boolean. Accepted values: 0 and 1.
1062  */
1063 #ifndef NRFX_SPIS_ENABLED
1064 #define NRFX_SPIS_ENABLED 0
1065 #endif
1066 
1067 /**
1068  * @brief NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY
1069  *
1070  * Integer value. Minimum: 0. Maximum: 3.
1071  */
1072 #ifndef NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY
1073 #define NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1074 #endif
1075 
1076 /**
1077  * @brief NRFX_SPIS_CONFIG_LOG_ENABLED
1078  *
1079  * Boolean. Accepted values: 0 and 1.
1080  */
1081 #ifndef NRFX_SPIS_CONFIG_LOG_ENABLED
1082 #define NRFX_SPIS_CONFIG_LOG_ENABLED 0
1083 #endif
1084 
1085 /**
1086  * @brief NRFX_SPIS_CONFIG_LOG_LEVEL
1087  *
1088  * Integer value.
1089  * Supported values:
1090  * - Off     = 0
1091  * - Error   = 1
1092  * - Warning = 2
1093  * - Info    = 3
1094  * - Debug   = 4
1095  */
1096 #ifndef NRFX_SPIS_CONFIG_LOG_LEVEL
1097 #define NRFX_SPIS_CONFIG_LOG_LEVEL 3
1098 #endif
1099 
1100 /**
1101  * @brief NRFX_SPIS120_ENABLED
1102  *
1103  * Boolean. Accepted values: 0 and 1.
1104  */
1105 #ifndef NRFX_SPIS120_ENABLED
1106 #define NRFX_SPIS120_ENABLED 0
1107 #endif
1108 
1109 /**
1110  * @brief NRFX_SPIS130_ENABLED
1111  *
1112  * Boolean. Accepted values: 0 and 1.
1113  */
1114 #ifndef NRFX_SPIS130_ENABLED
1115 #define NRFX_SPIS130_ENABLED 0
1116 #endif
1117 
1118 /**
1119  * @brief NRFX_SPIS131_ENABLED
1120  *
1121  * Boolean. Accepted values: 0 and 1.
1122  */
1123 #ifndef NRFX_SPIS131_ENABLED
1124 #define NRFX_SPIS131_ENABLED 0
1125 #endif
1126 
1127 /**
1128  * @brief NRFX_SPIS132_ENABLED
1129  *
1130  * Boolean. Accepted values: 0 and 1.
1131  */
1132 #ifndef NRFX_SPIS132_ENABLED
1133 #define NRFX_SPIS132_ENABLED 0
1134 #endif
1135 
1136 /**
1137  * @brief NRFX_SPIS133_ENABLED
1138  *
1139  * Boolean. Accepted values: 0 and 1.
1140  */
1141 #ifndef NRFX_SPIS133_ENABLED
1142 #define NRFX_SPIS133_ENABLED 0
1143 #endif
1144 
1145 /**
1146  * @brief NRFX_SPIS134_ENABLED
1147  *
1148  * Boolean. Accepted values: 0 and 1.
1149  */
1150 #ifndef NRFX_SPIS134_ENABLED
1151 #define NRFX_SPIS134_ENABLED 0
1152 #endif
1153 
1154 /**
1155  * @brief NRFX_SPIS135_ENABLED
1156  *
1157  * Boolean. Accepted values: 0 and 1.
1158  */
1159 #ifndef NRFX_SPIS135_ENABLED
1160 #define NRFX_SPIS135_ENABLED 0
1161 #endif
1162 
1163 /**
1164  * @brief NRFX_SPIS136_ENABLED
1165  *
1166  * Boolean. Accepted values: 0 and 1.
1167  */
1168 #ifndef NRFX_SPIS136_ENABLED
1169 #define NRFX_SPIS136_ENABLED 0
1170 #endif
1171 
1172 /**
1173  * @brief NRFX_SPIS137_ENABLED
1174  *
1175  * Boolean. Accepted values: 0 and 1.
1176  */
1177 #ifndef NRFX_SPIS137_ENABLED
1178 #define NRFX_SPIS137_ENABLED 0
1179 #endif
1180 
1181 /**
1182  * @brief NRFX_TEMP_ENABLED
1183  *
1184  * Boolean. Accepted values: 0 and 1.
1185  */
1186 #ifndef NRFX_TEMP_ENABLED
1187 #define NRFX_TEMP_ENABLED 0
1188 #endif
1189 
1190 /**
1191  * @brief NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY
1192  *
1193  * Integer value. Minimum: 0. Maximum: 3.
1194  */
1195 #ifndef NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY
1196 #define NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1197 #endif
1198 
1199 /**
1200  * @brief NRFX_TEMP_CONFIG_LOG_ENABLED
1201  *
1202  * Boolean. Accepted values: 0 and 1.
1203  */
1204 #ifndef NRFX_TEMP_CONFIG_LOG_ENABLED
1205 #define NRFX_TEMP_CONFIG_LOG_ENABLED 0
1206 #endif
1207 
1208 /**
1209  * @brief NRFX_TEMP_CONFIG_LOG_LEVEL
1210  *
1211  * Integer value.
1212  * Supported values:
1213  * - Off     = 0
1214  * - Error   = 1
1215  * - Warning = 2
1216  * - Info    = 3
1217  * - Debug   = 4
1218  */
1219 #ifndef NRFX_TEMP_CONFIG_LOG_LEVEL
1220 #define NRFX_TEMP_CONFIG_LOG_LEVEL 3
1221 #endif
1222 
1223 /**
1224  * @brief NRFX_TIMER_ENABLED
1225  *
1226  * Boolean. Accepted values: 0 and 1.
1227  */
1228 #ifndef NRFX_TIMER_ENABLED
1229 #define NRFX_TIMER_ENABLED 0
1230 #endif
1231 
1232 /**
1233  * @brief NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY
1234  *
1235  * Integer value. Minimum: 0. Maximum: 3.
1236  */
1237 #ifndef NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY
1238 #define NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1239 #endif
1240 
1241 /**
1242  * @brief NRFX_TIMER_CONFIG_LOG_ENABLED
1243  *
1244  * Boolean. Accepted values: 0 and 1.
1245  */
1246 #ifndef NRFX_TIMER_CONFIG_LOG_ENABLED
1247 #define NRFX_TIMER_CONFIG_LOG_ENABLED 0
1248 #endif
1249 
1250 /**
1251  * @brief NRFX_TIMER_CONFIG_LOG_LEVEL
1252  *
1253  * Integer value.
1254  * Supported values:
1255  * - Off     = 0
1256  * - Error   = 1
1257  * - Warning = 2
1258  * - Info    = 3
1259  * - Debug   = 4
1260  */
1261 #ifndef NRFX_TIMER_CONFIG_LOG_LEVEL
1262 #define NRFX_TIMER_CONFIG_LOG_LEVEL 3
1263 #endif
1264 
1265 /**
1266  * @brief NRFX_TIMER120_ENABLED
1267  *
1268  * Boolean. Accepted values: 0 and 1.
1269  */
1270 #ifndef NRFX_TIMER120_ENABLED
1271 #define NRFX_TIMER120_ENABLED 0
1272 #endif
1273 
1274 /**
1275  * @brief NRFX_TIMER121_ENABLED
1276  *
1277  * Boolean. Accepted values: 0 and 1.
1278  */
1279 #ifndef NRFX_TIMER121_ENABLED
1280 #define NRFX_TIMER121_ENABLED 0
1281 #endif
1282 
1283 /**
1284  * @brief NRFX_TIMER130_ENABLED
1285  *
1286  * Boolean. Accepted values: 0 and 1.
1287  */
1288 #ifndef NRFX_TIMER130_ENABLED
1289 #define NRFX_TIMER130_ENABLED 0
1290 #endif
1291 
1292 /**
1293  * @brief NRFX_TIMER131_ENABLED
1294  *
1295  * Boolean. Accepted values: 0 and 1.
1296  */
1297 #ifndef NRFX_TIMER131_ENABLED
1298 #define NRFX_TIMER131_ENABLED 0
1299 #endif
1300 
1301 /**
1302  * @brief NRFX_TIMER132_ENABLED
1303  *
1304  * Boolean. Accepted values: 0 and 1.
1305  */
1306 #ifndef NRFX_TIMER132_ENABLED
1307 #define NRFX_TIMER132_ENABLED 0
1308 #endif
1309 
1310 /**
1311  * @brief NRFX_TIMER133_ENABLED
1312  *
1313  * Boolean. Accepted values: 0 and 1.
1314  */
1315 #ifndef NRFX_TIMER133_ENABLED
1316 #define NRFX_TIMER133_ENABLED 0
1317 #endif
1318 
1319 /**
1320  * @brief NRFX_TIMER134_ENABLED
1321  *
1322  * Boolean. Accepted values: 0 and 1.
1323  */
1324 #ifndef NRFX_TIMER134_ENABLED
1325 #define NRFX_TIMER134_ENABLED 0
1326 #endif
1327 
1328 /**
1329  * @brief NRFX_TIMER135_ENABLED
1330  *
1331  * Boolean. Accepted values: 0 and 1.
1332  */
1333 #ifndef NRFX_TIMER135_ENABLED
1334 #define NRFX_TIMER135_ENABLED 0
1335 #endif
1336 
1337 /**
1338  * @brief NRFX_TIMER136_ENABLED
1339  *
1340  * Boolean. Accepted values: 0 and 1.
1341  */
1342 #ifndef NRFX_TIMER136_ENABLED
1343 #define NRFX_TIMER136_ENABLED 0
1344 #endif
1345 
1346 /**
1347  * @brief NRFX_TIMER137_ENABLED
1348  *
1349  * Boolean. Accepted values: 0 and 1.
1350  */
1351 #ifndef NRFX_TIMER137_ENABLED
1352 #define NRFX_TIMER137_ENABLED 0
1353 #endif
1354 
1355 /**
1356  * @brief NRFX_TWIM_ENABLED
1357  *
1358  * Boolean. Accepted values: 0 and 1.
1359  */
1360 #ifndef NRFX_TWIM_ENABLED
1361 #define NRFX_TWIM_ENABLED 0
1362 #endif
1363 
1364 /**
1365  * @brief NRFX_TWIM_DEFAULT_CONFIG_IRQ_PRIORITY
1366  *
1367  * Integer value. Minimum: 0. Maximum: 3.
1368  */
1369 #ifndef NRFX_TWIM_DEFAULT_CONFIG_IRQ_PRIORITY
1370 #define NRFX_TWIM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1371 #endif
1372 
1373 /**
1374  * @brief NRFX_TWIM_CONFIG_LOG_ENABLED
1375  *
1376  * Boolean. Accepted values: 0 and 1.
1377  */
1378 #ifndef NRFX_TWIM_CONFIG_LOG_ENABLED
1379 #define NRFX_TWIM_CONFIG_LOG_ENABLED 0
1380 #endif
1381 
1382 /**
1383  * @brief NRFX_TWIM_CONFIG_LOG_LEVEL
1384  *
1385  * Integer value.
1386  * Supported values:
1387  * - Off     = 0
1388  * - Error   = 1
1389  * - Warning = 2
1390  * - Info    = 3
1391  * - Debug   = 4
1392  */
1393 #ifndef NRFX_TWIM_CONFIG_LOG_LEVEL
1394 #define NRFX_TWIM_CONFIG_LOG_LEVEL 3
1395 #endif
1396 
1397 /**
1398  * @brief NRFX_TWIM130_ENABLED
1399  *
1400  * Boolean. Accepted values: 0 and 1.
1401  */
1402 #ifndef NRFX_TWIM130_ENABLED
1403 #define NRFX_TWIM130_ENABLED 0
1404 #endif
1405 
1406 /**
1407  * @brief NRFX_TWIM131_ENABLED
1408  *
1409  * Boolean. Accepted values: 0 and 1.
1410  */
1411 #ifndef NRFX_TWIM131_ENABLED
1412 #define NRFX_TWIM131_ENABLED 0
1413 #endif
1414 
1415 /**
1416  * @brief NRFX_TWIM132_ENABLED
1417  *
1418  * Boolean. Accepted values: 0 and 1.
1419  */
1420 #ifndef NRFX_TWIM132_ENABLED
1421 #define NRFX_TWIM132_ENABLED 0
1422 #endif
1423 
1424 /**
1425  * @brief NRFX_TWIM133_ENABLED
1426  *
1427  * Boolean. Accepted values: 0 and 1.
1428  */
1429 #ifndef NRFX_TWIM133_ENABLED
1430 #define NRFX_TWIM133_ENABLED 0
1431 #endif
1432 
1433 /**
1434  * @brief NRFX_TWIM134_ENABLED
1435  *
1436  * Boolean. Accepted values: 0 and 1.
1437  */
1438 #ifndef NRFX_TWIM134_ENABLED
1439 #define NRFX_TWIM134_ENABLED 0
1440 #endif
1441 
1442 /**
1443  * @brief NRFX_TWIM135_ENABLED
1444  *
1445  * Boolean. Accepted values: 0 and 1.
1446  */
1447 #ifndef NRFX_TWIM135_ENABLED
1448 #define NRFX_TWIM135_ENABLED 0
1449 #endif
1450 
1451 /**
1452  * @brief NRFX_TWIM136_ENABLED
1453  *
1454  * Boolean. Accepted values: 0 and 1.
1455  */
1456 #ifndef NRFX_TWIM136_ENABLED
1457 #define NRFX_TWIM136_ENABLED 0
1458 #endif
1459 
1460 /**
1461  * @brief NRFX_TWIM137_ENABLED
1462  *
1463  * Boolean. Accepted values: 0 and 1.
1464  */
1465 #ifndef NRFX_TWIM137_ENABLED
1466 #define NRFX_TWIM137_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: 3.
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_TWIS130_ENABLED
1531  *
1532  * Boolean. Accepted values: 0 and 1.
1533  */
1534 #ifndef NRFX_TWIS130_ENABLED
1535 #define NRFX_TWIS130_ENABLED 0
1536 #endif
1537 
1538 /**
1539  * @brief NRFX_TWIS131_ENABLED
1540  *
1541  * Boolean. Accepted values: 0 and 1.
1542  */
1543 #ifndef NRFX_TWIS131_ENABLED
1544 #define NRFX_TWIS131_ENABLED 0
1545 #endif
1546 
1547 /**
1548  * @brief NRFX_TWIS132_ENABLED
1549  *
1550  * Boolean. Accepted values: 0 and 1.
1551  */
1552 #ifndef NRFX_TWIS132_ENABLED
1553 #define NRFX_TWIS132_ENABLED 0
1554 #endif
1555 
1556 /**
1557  * @brief NRFX_TWIS133_ENABLED
1558  *
1559  * Boolean. Accepted values: 0 and 1.
1560  */
1561 #ifndef NRFX_TWIS133_ENABLED
1562 #define NRFX_TWIS133_ENABLED 0
1563 #endif
1564 
1565 /**
1566  * @brief NRFX_TWIS134_ENABLED
1567  *
1568  * Boolean. Accepted values: 0 and 1.
1569  */
1570 #ifndef NRFX_TWIS134_ENABLED
1571 #define NRFX_TWIS134_ENABLED 0
1572 #endif
1573 
1574 /**
1575  * @brief NRFX_TWIS135_ENABLED
1576  *
1577  * Boolean. Accepted values: 0 and 1.
1578  */
1579 #ifndef NRFX_TWIS135_ENABLED
1580 #define NRFX_TWIS135_ENABLED 0
1581 #endif
1582 
1583 /**
1584  * @brief NRFX_TWIS136_ENABLED
1585  *
1586  * Boolean. Accepted values: 0 and 1.
1587  */
1588 #ifndef NRFX_TWIS136_ENABLED
1589 #define NRFX_TWIS136_ENABLED 0
1590 #endif
1591 
1592 /**
1593  * @brief NRFX_TWIS137_ENABLED
1594  *
1595  * Boolean. Accepted values: 0 and 1.
1596  */
1597 #ifndef NRFX_TWIS137_ENABLED
1598 #define NRFX_TWIS137_ENABLED 0
1599 #endif
1600 
1601 /**
1602  * @brief NRFX_UARTE_ENABLED
1603  *
1604  * Boolean. Accepted values: 0 and 1.
1605  */
1606 #ifndef NRFX_UARTE_ENABLED
1607 #define NRFX_UARTE_ENABLED 0
1608 #endif
1609 
1610 /**
1611  * @brief NRFX_UARTE_CONFIG_SKIP_GPIO_CONFIG - If enabled, support for configuring GPIO pins is removed from the driver
1612  *
1613  * Boolean. Accepted values: 0 and 1.
1614  */
1615 #ifndef NRFX_UARTE_CONFIG_SKIP_GPIO_CONFIG
1616 #define NRFX_UARTE_CONFIG_SKIP_GPIO_CONFIG 0
1617 #endif
1618 
1619 /**
1620  * @brief NRFX_UARTE_CONFIG_SKIP_PSEL_CONFIG - If enabled, support for configuring PSEL registers is removed from the driver
1621  *
1622  * Boolean. Accepted values: 0 and 1.
1623  */
1624 #ifndef NRFX_UARTE_CONFIG_SKIP_PSEL_CONFIG
1625 #define NRFX_UARTE_CONFIG_SKIP_PSEL_CONFIG 0
1626 #endif
1627 
1628 /**
1629  * @brief NRFX_UARTE_CONFIG_TX_LINK - If enabled, driver supports linking of TX transfers.
1630  *
1631  * Boolean. Accepted values: 0 and 1.
1632  */
1633 #ifndef NRFX_UARTE_CONFIG_TX_LINK
1634 #define NRFX_UARTE_CONFIG_TX_LINK 1
1635 #endif
1636 
1637 /**
1638  * @brief NRFX_UARTE_CONFIG_RX_CACHE_ENABLED
1639  *
1640  * Boolean. Accepted values: 0 and 1.
1641  */
1642 #ifndef NRFX_UARTE_CONFIG_RX_CACHE_ENABLED
1643 #define NRFX_UARTE_CONFIG_RX_CACHE_ENABLED 1
1644 #endif
1645 
1646 /**
1647  * @brief NRFX_UARTE_DEFAULT_CONFIG_IRQ_PRIORITY
1648  *
1649  * Integer value. Minimum: 0. Maximum: 3.
1650  */
1651 #ifndef NRFX_UARTE_DEFAULT_CONFIG_IRQ_PRIORITY
1652 #define NRFX_UARTE_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1653 #endif
1654 
1655 /**
1656  * @brief NRFX_UARTE_CONFIG_LOG_ENABLED
1657  *
1658  * Boolean. Accepted values: 0 and 1.
1659  */
1660 #ifndef NRFX_UARTE_CONFIG_LOG_ENABLED
1661 #define NRFX_UARTE_CONFIG_LOG_ENABLED 0
1662 #endif
1663 
1664 /**
1665  * @brief NRFX_UARTE_CONFIG_LOG_LEVEL
1666  *
1667  * Integer value.
1668  * Supported values:
1669  * - Off     = 0
1670  * - Error   = 1
1671  * - Warning = 2
1672  * - Info    = 3
1673  * - Debug   = 4
1674  */
1675 #ifndef NRFX_UARTE_CONFIG_LOG_LEVEL
1676 #define NRFX_UARTE_CONFIG_LOG_LEVEL 3
1677 #endif
1678 
1679 /**
1680  * @brief NRFX_UARTE120_ENABLED
1681  *
1682  * Boolean. Accepted values: 0 and 1.
1683  */
1684 #ifndef NRFX_UARTE120_ENABLED
1685 #define NRFX_UARTE120_ENABLED 0
1686 #endif
1687 
1688 /**
1689  * @brief NRFX_UARTE130_ENABLED
1690  *
1691  * Boolean. Accepted values: 0 and 1.
1692  */
1693 #ifndef NRFX_UARTE130_ENABLED
1694 #define NRFX_UARTE130_ENABLED 0
1695 #endif
1696 
1697 /**
1698  * @brief NRFX_UARTE131_ENABLED
1699  *
1700  * Boolean. Accepted values: 0 and 1.
1701  */
1702 #ifndef NRFX_UARTE131_ENABLED
1703 #define NRFX_UARTE131_ENABLED 0
1704 #endif
1705 
1706 /**
1707  * @brief NRFX_UARTE132_ENABLED
1708  *
1709  * Boolean. Accepted values: 0 and 1.
1710  */
1711 #ifndef NRFX_UARTE132_ENABLED
1712 #define NRFX_UARTE132_ENABLED 0
1713 #endif
1714 
1715 /**
1716  * @brief NRFX_UARTE133_ENABLED
1717  *
1718  * Boolean. Accepted values: 0 and 1.
1719  */
1720 #ifndef NRFX_UARTE133_ENABLED
1721 #define NRFX_UARTE133_ENABLED 0
1722 #endif
1723 
1724 /**
1725  * @brief NRFX_UARTE134_ENABLED
1726  *
1727  * Boolean. Accepted values: 0 and 1.
1728  */
1729 #ifndef NRFX_UARTE134_ENABLED
1730 #define NRFX_UARTE134_ENABLED 0
1731 #endif
1732 
1733 /**
1734  * @brief NRFX_UARTE135_ENABLED
1735  *
1736  * Boolean. Accepted values: 0 and 1.
1737  */
1738 #ifndef NRFX_UARTE135_ENABLED
1739 #define NRFX_UARTE135_ENABLED 0
1740 #endif
1741 
1742 /**
1743  * @brief NRFX_UARTE136_ENABLED
1744  *
1745  * Boolean. Accepted values: 0 and 1.
1746  */
1747 #ifndef NRFX_UARTE136_ENABLED
1748 #define NRFX_UARTE136_ENABLED 0
1749 #endif
1750 
1751 /**
1752  * @brief NRFX_UARTE137_ENABLED
1753  *
1754  * Boolean. Accepted values: 0 and 1.
1755  */
1756 #ifndef NRFX_UARTE137_ENABLED
1757 #define NRFX_UARTE137_ENABLED 0
1758 #endif
1759 
1760 /**
1761  * @brief NRFX_VEVIF_ENABLED
1762  *
1763  * Boolean. Accepted values: 0 and 1.
1764  */
1765 #ifndef NRFX_VEVIF_ENABLED
1766 #define NRFX_VEVIF_ENABLED 0
1767 #endif
1768 
1769 /**
1770  * @brief NRFX_WDT_ENABLED
1771  *
1772  * Boolean. Accepted values: 0 and 1.
1773  */
1774 #ifndef NRFX_WDT_ENABLED
1775 #define NRFX_WDT_ENABLED 0
1776 #endif
1777 
1778 /**
1779  * @brief NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY
1780  *
1781  * Integer value. Minimum: 0. Maximum: 3.
1782  */
1783 #ifndef NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY
1784 #define NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY
1785 #endif
1786 
1787 /**
1788  * @brief NRFX_WDT_CONFIG_NO_IRQ - Remove WDT IRQ handling from WDT driver
1789  *
1790  * Boolean. Accepted values: 0 and 1.
1791  */
1792 #ifndef NRFX_WDT_CONFIG_NO_IRQ
1793 #define NRFX_WDT_CONFIG_NO_IRQ 0
1794 #endif
1795 
1796 /**
1797  * @brief NRFX_WDT_CONFIG_LOG_ENABLED
1798  *
1799  * Boolean. Accepted values: 0 and 1.
1800  */
1801 #ifndef NRFX_WDT_CONFIG_LOG_ENABLED
1802 #define NRFX_WDT_CONFIG_LOG_ENABLED 0
1803 #endif
1804 
1805 /**
1806  * @brief NRFX_WDT_CONFIG_LOG_LEVEL
1807  *
1808  * Integer value.
1809  * Supported values:
1810  * - Off     = 0
1811  * - Error   = 1
1812  * - Warning = 2
1813  * - Info    = 3
1814  * - Debug   = 4
1815  */
1816 #ifndef NRFX_WDT_CONFIG_LOG_LEVEL
1817 #define NRFX_WDT_CONFIG_LOG_LEVEL 3
1818 #endif
1819 
1820 /**
1821  * @brief NRFX_WDT131_ENABLED
1822  *
1823  * Boolean. Accepted values: 0 and 1.
1824  */
1825 #ifndef NRFX_WDT131_ENABLED
1826 #define NRFX_WDT131_ENABLED 0
1827 #endif
1828 
1829 /**
1830  * @brief NRFX_WDT132_ENABLED
1831  *
1832  * Boolean. Accepted values: 0 and 1.
1833  */
1834 #ifndef NRFX_WDT132_ENABLED
1835 #define NRFX_WDT132_ENABLED 0
1836 #endif
1837 
1838 #endif // NRFX_CONFIG_NRF54H20_FLPR_H__
1839