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_FLPR_H__ 35 #define NRFX_CONFIG_NRF54L15_FLPR_H__ 36 37 #ifndef NRFX_CONFIG_H__ 38 #error "This file should not be included directly. Include nrfx_config.h instead." 39 #endif 40 41 42 /** 43 * @brief NRFX_DEFAULT_IRQ_PRIORITY 44 * 45 * Integer value. Minimum: 0. Maximum: 3. 46 */ 47 #ifndef NRFX_DEFAULT_IRQ_PRIORITY 48 #define NRFX_DEFAULT_IRQ_PRIORITY 0 49 #endif 50 51 /** 52 * @brief NRFX_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: 3. 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: 3. 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_COREDEP_VPR_LEGACY 168 * 169 * Boolean. Accepted values: 0 and 1. 170 */ 171 #ifndef NRFX_COREDEP_VPR_LEGACY 172 #define NRFX_COREDEP_VPR_LEGACY 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_EGU_ENABLED 201 * 202 * Boolean. Accepted values: 0 and 1. 203 */ 204 #ifndef NRFX_EGU_ENABLED 205 #define NRFX_EGU_ENABLED 0 206 #endif 207 208 /** 209 * @brief NRFX_EGU_DEFAULT_CONFIG_IRQ_PRIORITY 210 * 211 * Integer value. Minimum: 0. Maximum: 3. 212 */ 213 #ifndef NRFX_EGU_DEFAULT_CONFIG_IRQ_PRIORITY 214 #define NRFX_EGU_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 215 #endif 216 217 /** 218 * @brief NRFX_EGU10_ENABLED 219 * 220 * Boolean. Accepted values: 0 and 1. 221 */ 222 #ifndef NRFX_EGU10_ENABLED 223 #define NRFX_EGU10_ENABLED 0 224 #endif 225 226 /** 227 * @brief NRFX_EGU20_ENABLED 228 * 229 * Boolean. Accepted values: 0 and 1. 230 */ 231 #ifndef NRFX_EGU20_ENABLED 232 #define NRFX_EGU20_ENABLED 0 233 #endif 234 235 /** 236 * @brief NRFX_GPIOTE_ENABLED 237 * 238 * Boolean. Accepted values: 0 and 1. 239 */ 240 #ifndef NRFX_GPIOTE_ENABLED 241 #define NRFX_GPIOTE_ENABLED 0 242 #endif 243 244 /** 245 * @brief NRFX_GPIOTE_DEFAULT_CONFIG_IRQ_PRIORITY 246 * 247 * Integer value. Minimum: 0. Maximum: 3. 248 */ 249 #ifndef NRFX_GPIOTE_DEFAULT_CONFIG_IRQ_PRIORITY 250 #define NRFX_GPIOTE_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 251 #endif 252 253 /** 254 * @brief NRFX_GPIOTE_CONFIG_NUM_OF_EVT_HANDLERS 255 * 256 * Integer value. Minimum: 0. Maximum: 15. 257 */ 258 #ifndef NRFX_GPIOTE_CONFIG_NUM_OF_EVT_HANDLERS 259 #define NRFX_GPIOTE_CONFIG_NUM_OF_EVT_HANDLERS 2 260 #endif 261 262 /** 263 * @brief NRFX_GPIOTE_CONFIG_LOG_ENABLED 264 * 265 * Boolean. Accepted values: 0 and 1. 266 */ 267 #ifndef NRFX_GPIOTE_CONFIG_LOG_ENABLED 268 #define NRFX_GPIOTE_CONFIG_LOG_ENABLED 0 269 #endif 270 271 /** 272 * @brief NRFX_GPIOTE_CONFIG_LOG_LEVEL 273 * 274 * Integer value. 275 * Supported values: 276 * - Off = 0 277 * - Error = 1 278 * - Warning = 2 279 * - Info = 3 280 * - Debug = 4 281 */ 282 #ifndef NRFX_GPIOTE_CONFIG_LOG_LEVEL 283 #define NRFX_GPIOTE_CONFIG_LOG_LEVEL 3 284 #endif 285 286 /** 287 * @brief NRFX_GPIOTE20_ENABLED 288 * 289 * Boolean. Accepted values: 0 and 1. 290 */ 291 #ifndef NRFX_GPIOTE20_ENABLED 292 #define NRFX_GPIOTE20_ENABLED 0 293 #endif 294 295 /** 296 * @brief NRFX_GPIOTE30_ENABLED 297 * 298 * Boolean. Accepted values: 0 and 1. 299 */ 300 #ifndef NRFX_GPIOTE30_ENABLED 301 #define NRFX_GPIOTE30_ENABLED 0 302 #endif 303 304 /** 305 * @brief NRFX_GRTC_ENABLED 306 * 307 * Boolean. Accepted values: 0 and 1. 308 */ 309 #ifndef NRFX_GRTC_ENABLED 310 #define NRFX_GRTC_ENABLED 0 311 #endif 312 313 /** 314 * @brief NRFX_GRTC_CONFIG_SLEEP_ALLOWED 315 * 316 * Boolean. Accepted values: 0 and 1. 317 */ 318 #ifndef NRFX_GRTC_CONFIG_SLEEP_ALLOWED 319 #define NRFX_GRTC_CONFIG_SLEEP_ALLOWED 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 0 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_NUM_OF_CC_CHANNELS 342 * 343 * Integer value. 344 */ 345 #ifndef NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS 346 #define NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS 4 347 #endif 348 349 /** 350 * @brief NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK 351 */ 352 #ifndef NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK 353 #define NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK 0x000000f0 354 #endif 355 356 /** 357 * @brief NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY 358 * 359 * Integer value. Minimum: 0. Maximum: 3. 360 */ 361 #ifndef NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY 362 #define NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 363 #endif 364 365 /** 366 * @brief NRFX_GRTC_CONFIG_LOG_ENABLED 367 * 368 * Boolean. Accepted values: 0 and 1. 369 */ 370 #ifndef NRFX_GRTC_CONFIG_LOG_ENABLED 371 #define NRFX_GRTC_CONFIG_LOG_ENABLED 0 372 #endif 373 374 /** 375 * @brief NRFX_GRTC_CONFIG_LOG_LEVEL 376 * 377 * Integer value. 378 * Supported values: 379 * - Off = 0 380 * - Error = 1 381 * - Warning = 2 382 * - Info = 3 383 * - Debug = 4 384 */ 385 #ifndef NRFX_GRTC_CONFIG_LOG_LEVEL 386 #define NRFX_GRTC_CONFIG_LOG_LEVEL 3 387 #endif 388 389 /** 390 * @brief NRFX_I2S_ENABLED 391 * 392 * Boolean. Accepted values: 0 and 1. 393 */ 394 #ifndef NRFX_I2S_ENABLED 395 #define NRFX_I2S_ENABLED 0 396 #endif 397 398 /** 399 * @brief NRFX_I2S_DEFAULT_CONFIG_IRQ_PRIORITY 400 * 401 * Integer value. Minimum: 0. Maximum: 3. 402 */ 403 #ifndef NRFX_I2S_DEFAULT_CONFIG_IRQ_PRIORITY 404 #define NRFX_I2S_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 405 #endif 406 407 /** 408 * @brief NRFX_I2S_CONFIG_LOG_ENABLED 409 * 410 * Boolean. Accepted values: 0 and 1. 411 */ 412 #ifndef NRFX_I2S_CONFIG_LOG_ENABLED 413 #define NRFX_I2S_CONFIG_LOG_ENABLED 0 414 #endif 415 416 /** 417 * @brief NRFX_I2S_CONFIG_LOG_LEVEL 418 * 419 * Integer value. 420 * Supported values: 421 * - Off = 0 422 * - Error = 1 423 * - Warning = 2 424 * - Info = 3 425 * - Debug = 4 426 */ 427 #ifndef NRFX_I2S_CONFIG_LOG_LEVEL 428 #define NRFX_I2S_CONFIG_LOG_LEVEL 3 429 #endif 430 431 /** 432 * @brief NRFX_I2S20_ENABLED 433 * 434 * Boolean. Accepted values: 0 and 1. 435 */ 436 #ifndef NRFX_I2S20_ENABLED 437 #define NRFX_I2S20_ENABLED 0 438 #endif 439 440 /** 441 * @brief NRFX_LPCOMP_ENABLED 442 * 443 * Boolean. Accepted values: 0 and 1. 444 */ 445 #ifndef NRFX_LPCOMP_ENABLED 446 #define NRFX_LPCOMP_ENABLED 0 447 #endif 448 449 /** 450 * @brief NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY 451 * 452 * Integer value. Minimum: 0. Maximum: 3. 453 */ 454 #ifndef NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY 455 #define NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 456 #endif 457 458 /** 459 * @brief NRFX_LPCOMP_CONFIG_LOG_ENABLED 460 * 461 * Boolean. Accepted values: 0 and 1. 462 */ 463 #ifndef NRFX_LPCOMP_CONFIG_LOG_ENABLED 464 #define NRFX_LPCOMP_CONFIG_LOG_ENABLED 0 465 #endif 466 467 /** 468 * @brief NRFX_LPCOMP_CONFIG_LOG_LEVEL 469 * 470 * Integer value. 471 * Supported values: 472 * - Off = 0 473 * - Error = 1 474 * - Warning = 2 475 * - Info = 3 476 * - Debug = 4 477 */ 478 #ifndef NRFX_LPCOMP_CONFIG_LOG_LEVEL 479 #define NRFX_LPCOMP_CONFIG_LOG_LEVEL 3 480 #endif 481 482 /** 483 * @brief NRFX_NFCT_ENABLED 484 * 485 * Boolean. Accepted values: 0 and 1. 486 */ 487 #ifndef NRFX_NFCT_ENABLED 488 #define NRFX_NFCT_ENABLED 0 489 #endif 490 491 /** 492 * @brief NRFX_NFCT_DEFAULT_CONFIG_IRQ_PRIORITY 493 * 494 * Integer value. Minimum: 0. Maximum: 3. 495 */ 496 #ifndef NRFX_NFCT_DEFAULT_CONFIG_IRQ_PRIORITY 497 #define NRFX_NFCT_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 498 #endif 499 500 /** 501 * @brief NRFX_NFCT_CONFIG_TIMER_INSTANCE_ID - Timer instance used for workarounds in the driver. 502 * 503 * Integer value. Minimum: 0. Maximum: 5. 504 */ 505 #ifndef NRFX_NFCT_CONFIG_TIMER_INSTANCE_ID 506 #define NRFX_NFCT_CONFIG_TIMER_INSTANCE_ID 0 507 #endif 508 509 /** 510 * @brief NRFX_NFCT_CONFIG_LOG_ENABLED 511 * 512 * Boolean. Accepted values: 0 and 1. 513 */ 514 #ifndef NRFX_NFCT_CONFIG_LOG_ENABLED 515 #define NRFX_NFCT_CONFIG_LOG_ENABLED 0 516 #endif 517 518 /** 519 * @brief NRFX_NFCT_CONFIG_LOG_LEVEL 520 * 521 * Integer value. 522 * Supported values: 523 * - Off = 0 524 * - Error = 1 525 * - Warning = 2 526 * - Info = 3 527 * - Debug = 4 528 */ 529 #ifndef NRFX_NFCT_CONFIG_LOG_LEVEL 530 #define NRFX_NFCT_CONFIG_LOG_LEVEL 3 531 #endif 532 533 /** 534 * @brief NRFX_PDM_ENABLED 535 * 536 * Boolean. Accepted values: 0 and 1. 537 */ 538 #ifndef NRFX_PDM_ENABLED 539 #define NRFX_PDM_ENABLED 0 540 #endif 541 542 /** 543 * @brief NRFX_PDM_DEFAULT_CONFIG_IRQ_PRIORITY 544 * 545 * Integer value. Minimum: 0. Maximum: 3. 546 */ 547 #ifndef NRFX_PDM_DEFAULT_CONFIG_IRQ_PRIORITY 548 #define NRFX_PDM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 549 #endif 550 551 /** 552 * @brief NRFX_PDM_CONFIG_LOG_ENABLED 553 * 554 * Boolean. Accepted values: 0 and 1. 555 */ 556 #ifndef NRFX_PDM_CONFIG_LOG_ENABLED 557 #define NRFX_PDM_CONFIG_LOG_ENABLED 0 558 #endif 559 560 /** 561 * @brief NRFX_PDM_CONFIG_LOG_LEVEL 562 * 563 * Integer value. 564 * Supported values: 565 * - Off = 0 566 * - Error = 1 567 * - Warning = 2 568 * - Info = 3 569 * - Debug = 4 570 */ 571 #ifndef NRFX_PDM_CONFIG_LOG_LEVEL 572 #define NRFX_PDM_CONFIG_LOG_LEVEL 3 573 #endif 574 575 /** 576 * @brief NRFX_POWER_ENABLED 577 * 578 * Boolean. Accepted values: 0 and 1. 579 */ 580 #ifndef NRFX_POWER_ENABLED 581 #define NRFX_POWER_ENABLED 0 582 #endif 583 584 /** 585 * @brief NRFX_POWER_DEFAULT_CONFIG_IRQ_PRIORITY 586 * 587 * Integer value. Minimum: 0. Maximum: 3. 588 */ 589 #ifndef NRFX_POWER_DEFAULT_CONFIG_IRQ_PRIORITY 590 #define NRFX_POWER_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 591 #endif 592 593 /** 594 * @brief NRFX_PRS_ENABLED 595 * 596 * Boolean. Accepted values: 0 and 1. 597 */ 598 #ifndef NRFX_PRS_ENABLED 599 #define NRFX_PRS_ENABLED 0 600 #endif 601 602 /** 603 * @brief NRFX_PRS_CONFIG_LOG_ENABLED 604 * 605 * Boolean. Accepted values: 0 and 1. 606 */ 607 #ifndef NRFX_PRS_CONFIG_LOG_ENABLED 608 #define NRFX_PRS_CONFIG_LOG_ENABLED 0 609 #endif 610 611 /** 612 * @brief NRFX_PRS_CONFIG_LOG_LEVEL 613 * 614 * Integer value. 615 * Supported values: 616 * - Off = 0 617 * - Error = 1 618 * - Warning = 2 619 * - Info = 3 620 * - Debug = 4 621 */ 622 #ifndef NRFX_PRS_CONFIG_LOG_LEVEL 623 #define NRFX_PRS_CONFIG_LOG_LEVEL 3 624 #endif 625 626 /** 627 * @brief NRFX_PRS_BOX_0_ENABLED 628 * 629 * Boolean. Accepted values: 0 and 1. 630 */ 631 #ifndef NRFX_PRS_BOX_0_ENABLED 632 #define NRFX_PRS_BOX_0_ENABLED 0 633 #endif 634 635 /** 636 * @brief NRFX_PRS_BOX_1_ENABLED 637 * 638 * Boolean. Accepted values: 0 and 1. 639 */ 640 #ifndef NRFX_PRS_BOX_1_ENABLED 641 #define NRFX_PRS_BOX_1_ENABLED 0 642 #endif 643 644 /** 645 * @brief NRFX_PRS_BOX_2_ENABLED 646 * 647 * Boolean. Accepted values: 0 and 1. 648 */ 649 #ifndef NRFX_PRS_BOX_2_ENABLED 650 #define NRFX_PRS_BOX_2_ENABLED 0 651 #endif 652 653 /** 654 * @brief NRFX_PRS_BOX_3_ENABLED 655 * 656 * Boolean. Accepted values: 0 and 1. 657 */ 658 #ifndef NRFX_PRS_BOX_3_ENABLED 659 #define NRFX_PRS_BOX_3_ENABLED 0 660 #endif 661 662 /** 663 * @brief NRFX_PRS_BOX_4_ENABLED 664 * 665 * Boolean. Accepted values: 0 and 1. 666 */ 667 #ifndef NRFX_PRS_BOX_4_ENABLED 668 #define NRFX_PRS_BOX_4_ENABLED 0 669 #endif 670 671 /** 672 * @brief NRFX_PRS_BOX_5_ENABLED 673 * 674 * Boolean. Accepted values: 0 and 1. 675 */ 676 #ifndef NRFX_PRS_BOX_5_ENABLED 677 #define NRFX_PRS_BOX_5_ENABLED 0 678 #endif 679 680 /** 681 * @brief NRFX_PWM_ENABLED 682 * 683 * Boolean. Accepted values: 0 and 1. 684 */ 685 #ifndef NRFX_PWM_ENABLED 686 #define NRFX_PWM_ENABLED 0 687 #endif 688 689 /** 690 * @brief NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY 691 * 692 * Integer value. Minimum: 0. Maximum: 3. 693 */ 694 #ifndef NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY 695 #define NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 696 #endif 697 698 /** 699 * @brief NRFX_PWM_CONFIG_LOG_ENABLED 700 * 701 * Boolean. Accepted values: 0 and 1. 702 */ 703 #ifndef NRFX_PWM_CONFIG_LOG_ENABLED 704 #define NRFX_PWM_CONFIG_LOG_ENABLED 0 705 #endif 706 707 /** 708 * @brief NRFX_PWM_CONFIG_LOG_LEVEL 709 * 710 * Integer value. 711 * Supported values: 712 * - Off = 0 713 * - Error = 1 714 * - Warning = 2 715 * - Info = 3 716 * - Debug = 4 717 */ 718 #ifndef NRFX_PWM_CONFIG_LOG_LEVEL 719 #define NRFX_PWM_CONFIG_LOG_LEVEL 3 720 #endif 721 722 /** 723 * @brief NRFX_PWM20_ENABLED 724 * 725 * Boolean. Accepted values: 0 and 1. 726 */ 727 #ifndef NRFX_PWM20_ENABLED 728 #define NRFX_PWM20_ENABLED 0 729 #endif 730 731 /** 732 * @brief NRFX_PWM21_ENABLED 733 * 734 * Boolean. Accepted values: 0 and 1. 735 */ 736 #ifndef NRFX_PWM21_ENABLED 737 #define NRFX_PWM21_ENABLED 0 738 #endif 739 740 /** 741 * @brief NRFX_PWM22_ENABLED 742 * 743 * Boolean. Accepted values: 0 and 1. 744 */ 745 #ifndef NRFX_PWM22_ENABLED 746 #define NRFX_PWM22_ENABLED 0 747 #endif 748 749 /** 750 * @brief NRFX_QDEC_ENABLED 751 * 752 * Boolean. Accepted values: 0 and 1. 753 */ 754 #ifndef NRFX_QDEC_ENABLED 755 #define NRFX_QDEC_ENABLED 0 756 #endif 757 758 /** 759 * @brief NRFX_QDEC_DEFAULT_CONFIG_IRQ_PRIORITY 760 * 761 * Integer value. Minimum: 0. Maximum: 3. 762 */ 763 #ifndef NRFX_QDEC_DEFAULT_CONFIG_IRQ_PRIORITY 764 #define NRFX_QDEC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 765 #endif 766 767 /** 768 * @brief NRFX_QDEC_CONFIG_LOG_ENABLED 769 * 770 * Boolean. Accepted values: 0 and 1. 771 */ 772 #ifndef NRFX_QDEC_CONFIG_LOG_ENABLED 773 #define NRFX_QDEC_CONFIG_LOG_ENABLED 0 774 #endif 775 776 /** 777 * @brief NRFX_QDEC_CONFIG_LOG_LEVEL 778 * 779 * Integer value. 780 * Supported values: 781 * - Off = 0 782 * - Error = 1 783 * - Warning = 2 784 * - Info = 3 785 * - Debug = 4 786 */ 787 #ifndef NRFX_QDEC_CONFIG_LOG_LEVEL 788 #define NRFX_QDEC_CONFIG_LOG_LEVEL 3 789 #endif 790 791 /** 792 * @brief NRFX_QDEC20_ENABLED 793 * 794 * Boolean. Accepted values: 0 and 1. 795 */ 796 #ifndef NRFX_QDEC20_ENABLED 797 #define NRFX_QDEC20_ENABLED 0 798 #endif 799 800 /** 801 * @brief NRFX_QDEC21_ENABLED 802 * 803 * Boolean. Accepted values: 0 and 1. 804 */ 805 #ifndef NRFX_QDEC21_ENABLED 806 #define NRFX_QDEC21_ENABLED 0 807 #endif 808 809 /** 810 * @brief NRFX_RRAMC_ENABLED 811 * 812 * Boolean. Accepted values: 0 and 1. 813 */ 814 #ifndef NRFX_RRAMC_ENABLED 815 #define NRFX_RRAMC_ENABLED 0 816 #endif 817 818 /** 819 * @brief NRFX_RRAMC_DEFAULT_CONFIG_IRQ_PRIORITY 820 * 821 * Integer value. Minimum: 0. Maximum: 3. 822 */ 823 #ifndef NRFX_RRAMC_DEFAULT_CONFIG_IRQ_PRIORITY 824 #define NRFX_RRAMC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 825 #endif 826 827 /** 828 * @brief NRFX_RRAMC_CONFIG_LOG_ENABLED 829 * 830 * Boolean. Accepted values: 0 and 1. 831 */ 832 #ifndef NRFX_RRAMC_CONFIG_LOG_ENABLED 833 #define NRFX_RRAMC_CONFIG_LOG_ENABLED 0 834 #endif 835 836 /** 837 * @brief NRFX_RRAMC_CONFIG_LOG_LEVEL 838 * 839 * Integer value. 840 * Supported values: 841 * - Off = 0 842 * - Error = 1 843 * - Warning = 2 844 * - Info = 3 845 * - Debug = 4 846 */ 847 #ifndef NRFX_RRAMC_CONFIG_LOG_LEVEL 848 #define NRFX_RRAMC_CONFIG_LOG_LEVEL 3 849 #endif 850 851 /** 852 * @brief NRFX_RTC_ENABLED 853 * 854 * Boolean. Accepted values: 0 and 1. 855 */ 856 #ifndef NRFX_RTC_ENABLED 857 #define NRFX_RTC_ENABLED 0 858 #endif 859 860 /** 861 * @brief NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY 862 * 863 * Integer value. Minimum: 0. Maximum: 3. 864 */ 865 #ifndef NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY 866 #define NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 867 #endif 868 869 /** 870 * @brief NRFX_RTC_CONFIG_LOG_ENABLED 871 * 872 * Boolean. Accepted values: 0 and 1. 873 */ 874 #ifndef NRFX_RTC_CONFIG_LOG_ENABLED 875 #define NRFX_RTC_CONFIG_LOG_ENABLED 0 876 #endif 877 878 /** 879 * @brief NRFX_RTC_CONFIG_LOG_LEVEL 880 * 881 * Integer value. 882 * Supported values: 883 * - Off = 0 884 * - Error = 1 885 * - Warning = 2 886 * - Info = 3 887 * - Debug = 4 888 */ 889 #ifndef NRFX_RTC_CONFIG_LOG_LEVEL 890 #define NRFX_RTC_CONFIG_LOG_LEVEL 3 891 #endif 892 893 /** 894 * @brief NRFX_RTC10_ENABLED 895 * 896 * Boolean. Accepted values: 0 and 1. 897 */ 898 #ifndef NRFX_RTC10_ENABLED 899 #define NRFX_RTC10_ENABLED 0 900 #endif 901 902 /** 903 * @brief NRFX_RTC30_ENABLED 904 * 905 * Boolean. Accepted values: 0 and 1. 906 */ 907 #ifndef NRFX_RTC30_ENABLED 908 #define NRFX_RTC30_ENABLED 0 909 #endif 910 911 /** 912 * @brief NRFX_SAADC_ENABLED 913 * 914 * Boolean. Accepted values: 0 and 1. 915 */ 916 #ifndef NRFX_SAADC_ENABLED 917 #define NRFX_SAADC_ENABLED 0 918 #endif 919 920 /** 921 * @brief NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY 922 * 923 * Integer value. Minimum: 0. Maximum: 3. 924 */ 925 #ifndef NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY 926 #define NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 927 #endif 928 929 /** 930 * @brief NRFX_SAADC_CONFIG_LOG_ENABLED 931 * 932 * Boolean. Accepted values: 0 and 1. 933 */ 934 #ifndef NRFX_SAADC_CONFIG_LOG_ENABLED 935 #define NRFX_SAADC_CONFIG_LOG_ENABLED 0 936 #endif 937 938 /** 939 * @brief NRFX_SAADC_CONFIG_LOG_LEVEL 940 * 941 * Integer value. 942 * Supported values: 943 * - Off = 0 944 * - Error = 1 945 * - Warning = 2 946 * - Info = 3 947 * - Debug = 4 948 */ 949 #ifndef NRFX_SAADC_CONFIG_LOG_LEVEL 950 #define NRFX_SAADC_CONFIG_LOG_LEVEL 3 951 #endif 952 953 /** 954 * @brief NRFX_SPI_ENABLED 955 * 956 * Boolean. Accepted values: 0 and 1. 957 */ 958 #ifndef NRFX_SPI_ENABLED 959 #define NRFX_SPI_ENABLED 0 960 #endif 961 962 /** 963 * @brief NRFX_SPI_DEFAULT_CONFIG_IRQ_PRIORITY 964 * 965 * Integer value. Minimum: 0. Maximum: 3. 966 */ 967 #ifndef NRFX_SPI_DEFAULT_CONFIG_IRQ_PRIORITY 968 #define NRFX_SPI_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 969 #endif 970 971 /** 972 * @brief NRFX_SPI_CONFIG_LOG_ENABLED 973 * 974 * Boolean. Accepted values: 0 and 1. 975 */ 976 #ifndef NRFX_SPI_CONFIG_LOG_ENABLED 977 #define NRFX_SPI_CONFIG_LOG_ENABLED 0 978 #endif 979 980 /** 981 * @brief NRFX_SPI_CONFIG_LOG_LEVEL 982 * 983 * Integer value. 984 * Supported values: 985 * - Off = 0 986 * - Error = 1 987 * - Warning = 2 988 * - Info = 3 989 * - Debug = 4 990 */ 991 #ifndef NRFX_SPI_CONFIG_LOG_LEVEL 992 #define NRFX_SPI_CONFIG_LOG_LEVEL 3 993 #endif 994 995 /** 996 * @brief NRFX_SPI00_ENABLED 997 * 998 * Boolean. Accepted values: 0 and 1. 999 */ 1000 #ifndef NRFX_SPI00_ENABLED 1001 #define NRFX_SPI00_ENABLED 0 1002 #endif 1003 1004 /** 1005 * @brief NRFX_SPI20_ENABLED 1006 * 1007 * Boolean. Accepted values: 0 and 1. 1008 */ 1009 #ifndef NRFX_SPI20_ENABLED 1010 #define NRFX_SPI20_ENABLED 0 1011 #endif 1012 1013 /** 1014 * @brief NRFX_SPI21_ENABLED 1015 * 1016 * Boolean. Accepted values: 0 and 1. 1017 */ 1018 #ifndef NRFX_SPI21_ENABLED 1019 #define NRFX_SPI21_ENABLED 0 1020 #endif 1021 1022 /** 1023 * @brief NRFX_SPI22_ENABLED 1024 * 1025 * Boolean. Accepted values: 0 and 1. 1026 */ 1027 #ifndef NRFX_SPI22_ENABLED 1028 #define NRFX_SPI22_ENABLED 0 1029 #endif 1030 1031 /** 1032 * @brief NRFX_SPI30_ENABLED 1033 * 1034 * Boolean. Accepted values: 0 and 1. 1035 */ 1036 #ifndef NRFX_SPI30_ENABLED 1037 #define NRFX_SPI30_ENABLED 0 1038 #endif 1039 1040 /** 1041 * @brief NRFX_SPIM_ENABLED 1042 * 1043 * Boolean. Accepted values: 0 and 1. 1044 */ 1045 #ifndef NRFX_SPIM_ENABLED 1046 #define NRFX_SPIM_ENABLED 0 1047 #endif 1048 1049 /** 1050 * @brief NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY 1051 * 1052 * Integer value. Minimum: 0. Maximum: 3. 1053 */ 1054 #ifndef NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY 1055 #define NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 1056 #endif 1057 1058 /** 1059 * @brief NRFX_SPIM_CONFIG_LOG_ENABLED 1060 * 1061 * Boolean. Accepted values: 0 and 1. 1062 */ 1063 #ifndef NRFX_SPIM_CONFIG_LOG_ENABLED 1064 #define NRFX_SPIM_CONFIG_LOG_ENABLED 0 1065 #endif 1066 1067 /** 1068 * @brief NRFX_SPIM_CONFIG_LOG_LEVEL 1069 * 1070 * Integer value. 1071 * Supported values: 1072 * - Off = 0 1073 * - Error = 1 1074 * - Warning = 2 1075 * - Info = 3 1076 * - Debug = 4 1077 */ 1078 #ifndef NRFX_SPIM_CONFIG_LOG_LEVEL 1079 #define NRFX_SPIM_CONFIG_LOG_LEVEL 3 1080 #endif 1081 1082 /** 1083 * @brief NRFX_SPIM00_ENABLED 1084 * 1085 * Boolean. Accepted values: 0 and 1. 1086 */ 1087 #ifndef NRFX_SPIM00_ENABLED 1088 #define NRFX_SPIM00_ENABLED 0 1089 #endif 1090 1091 /** 1092 * @brief NRFX_SPIM20_ENABLED 1093 * 1094 * Boolean. Accepted values: 0 and 1. 1095 */ 1096 #ifndef NRFX_SPIM20_ENABLED 1097 #define NRFX_SPIM20_ENABLED 0 1098 #endif 1099 1100 /** 1101 * @brief NRFX_SPIM21_ENABLED 1102 * 1103 * Boolean. Accepted values: 0 and 1. 1104 */ 1105 #ifndef NRFX_SPIM21_ENABLED 1106 #define NRFX_SPIM21_ENABLED 0 1107 #endif 1108 1109 /** 1110 * @brief NRFX_SPIM22_ENABLED 1111 * 1112 * Boolean. Accepted values: 0 and 1. 1113 */ 1114 #ifndef NRFX_SPIM22_ENABLED 1115 #define NRFX_SPIM22_ENABLED 0 1116 #endif 1117 1118 /** 1119 * @brief NRFX_SPIM30_ENABLED 1120 * 1121 * Boolean. Accepted values: 0 and 1. 1122 */ 1123 #ifndef NRFX_SPIM30_ENABLED 1124 #define NRFX_SPIM30_ENABLED 0 1125 #endif 1126 1127 /** 1128 * @brief NRFX_SPIS_ENABLED 1129 * 1130 * Boolean. Accepted values: 0 and 1. 1131 */ 1132 #ifndef NRFX_SPIS_ENABLED 1133 #define NRFX_SPIS_ENABLED 0 1134 #endif 1135 1136 /** 1137 * @brief NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY 1138 * 1139 * Integer value. Minimum: 0. Maximum: 3. 1140 */ 1141 #ifndef NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY 1142 #define NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 1143 #endif 1144 1145 /** 1146 * @brief NRFX_SPIS_CONFIG_LOG_ENABLED 1147 * 1148 * Boolean. Accepted values: 0 and 1. 1149 */ 1150 #ifndef NRFX_SPIS_CONFIG_LOG_ENABLED 1151 #define NRFX_SPIS_CONFIG_LOG_ENABLED 0 1152 #endif 1153 1154 /** 1155 * @brief NRFX_SPIS_CONFIG_LOG_LEVEL 1156 * 1157 * Integer value. 1158 * Supported values: 1159 * - Off = 0 1160 * - Error = 1 1161 * - Warning = 2 1162 * - Info = 3 1163 * - Debug = 4 1164 */ 1165 #ifndef NRFX_SPIS_CONFIG_LOG_LEVEL 1166 #define NRFX_SPIS_CONFIG_LOG_LEVEL 3 1167 #endif 1168 1169 /** 1170 * @brief NRFX_SPIS00_ENABLED 1171 * 1172 * Boolean. Accepted values: 0 and 1. 1173 */ 1174 #ifndef NRFX_SPIS00_ENABLED 1175 #define NRFX_SPIS00_ENABLED 0 1176 #endif 1177 1178 /** 1179 * @brief NRFX_SPIS20_ENABLED 1180 * 1181 * Boolean. Accepted values: 0 and 1. 1182 */ 1183 #ifndef NRFX_SPIS20_ENABLED 1184 #define NRFX_SPIS20_ENABLED 0 1185 #endif 1186 1187 /** 1188 * @brief NRFX_SPIS21_ENABLED 1189 * 1190 * Boolean. Accepted values: 0 and 1. 1191 */ 1192 #ifndef NRFX_SPIS21_ENABLED 1193 #define NRFX_SPIS21_ENABLED 0 1194 #endif 1195 1196 /** 1197 * @brief NRFX_SPIS22_ENABLED 1198 * 1199 * Boolean. Accepted values: 0 and 1. 1200 */ 1201 #ifndef NRFX_SPIS22_ENABLED 1202 #define NRFX_SPIS22_ENABLED 0 1203 #endif 1204 1205 /** 1206 * @brief NRFX_SPIS30_ENABLED 1207 * 1208 * Boolean. Accepted values: 0 and 1. 1209 */ 1210 #ifndef NRFX_SPIS30_ENABLED 1211 #define NRFX_SPIS30_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: 3. 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: 3. 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: 3. 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: 3. 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: 3. 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_VEVIF_ENABLED 1660 * 1661 * Boolean. Accepted values: 0 and 1. 1662 */ 1663 #ifndef NRFX_VEVIF_ENABLED 1664 #define NRFX_VEVIF_ENABLED 0 1665 #endif 1666 1667 /** 1668 * @brief NRFX_WDT_ENABLED 1669 * 1670 * Boolean. Accepted values: 0 and 1. 1671 */ 1672 #ifndef NRFX_WDT_ENABLED 1673 #define NRFX_WDT_ENABLED 0 1674 #endif 1675 1676 /** 1677 * @brief NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY 1678 * 1679 * Integer value. Minimum: 0. Maximum: 3. 1680 */ 1681 #ifndef NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY 1682 #define NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 1683 #endif 1684 1685 /** 1686 * @brief NRFX_WDT_CONFIG_NO_IRQ - Remove WDT IRQ handling from WDT driver 1687 * 1688 * Boolean. Accepted values: 0 and 1. 1689 */ 1690 #ifndef NRFX_WDT_CONFIG_NO_IRQ 1691 #define NRFX_WDT_CONFIG_NO_IRQ 0 1692 #endif 1693 1694 /** 1695 * @brief NRFX_WDT_CONFIG_LOG_ENABLED 1696 * 1697 * Boolean. Accepted values: 0 and 1. 1698 */ 1699 #ifndef NRFX_WDT_CONFIG_LOG_ENABLED 1700 #define NRFX_WDT_CONFIG_LOG_ENABLED 0 1701 #endif 1702 1703 /** 1704 * @brief NRFX_WDT_CONFIG_LOG_LEVEL 1705 * 1706 * Integer value. 1707 * Supported values: 1708 * - Off = 0 1709 * - Error = 1 1710 * - Warning = 2 1711 * - Info = 3 1712 * - Debug = 4 1713 */ 1714 #ifndef NRFX_WDT_CONFIG_LOG_LEVEL 1715 #define NRFX_WDT_CONFIG_LOG_LEVEL 3 1716 #endif 1717 1718 /** 1719 * @brief NRFX_WDT30_ENABLED 1720 * 1721 * Boolean. Accepted values: 0 and 1. 1722 */ 1723 #ifndef NRFX_WDT30_ENABLED 1724 #define NRFX_WDT30_ENABLED 0 1725 #endif 1726 1727 /** 1728 * @brief NRFX_WDT31_ENABLED 1729 * 1730 * Boolean. Accepted values: 0 and 1. 1731 */ 1732 #ifndef NRFX_WDT31_ENABLED 1733 #define NRFX_WDT31_ENABLED 0 1734 #endif 1735 1736 #endif // NRFX_CONFIG_NRF54L15_FLPR_H__ 1737