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