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