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