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