1 /* 2 * Copyright (c) 2024 - 2025, Nordic Semiconductor ASA 3 * All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions are met: 9 * 10 * 1. Redistributions of source code must retain the above copyright notice, this 11 * list of conditions and the following disclaimer. 12 * 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * 3. Neither the name of the copyright holder nor the names of its 18 * contributors may be used to endorse or promote products derived from this 19 * software without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 31 * POSSIBILITY OF SUCH DAMAGE. 32 */ 33 34 #ifndef NRFX_CONFIG_NRF54L09_ENGA_APPLICATION_H__ 35 #define NRFX_CONFIG_NRF54L09_ENGA_APPLICATION_H__ 36 37 #ifndef NRFX_CONFIG_H__ 38 #error "This file should not be included directly. Include nrfx_config.h instead." 39 #endif 40 41 42 /** 43 * @brief NRFX_DEFAULT_IRQ_PRIORITY 44 * 45 * Integer value. Minimum: 0. Maximum: 7. 46 */ 47 #ifndef NRFX_DEFAULT_IRQ_PRIORITY 48 #define NRFX_DEFAULT_IRQ_PRIORITY 7 49 #endif 50 51 /** 52 * @brief NRFX_CLOCK_ENABLED 53 * 54 * Boolean. Accepted values: 0 and 1. 55 */ 56 #ifndef NRFX_CLOCK_ENABLED 57 #define NRFX_CLOCK_ENABLED 0 58 #endif 59 60 /** 61 * @brief NRFX_CLOCK_CONFIG_LF_SRC 62 * 63 * Integer value. 64 * Supported values: 65 * - RC = 0 66 * - XTAL = 1 67 * - Synth = 2 68 */ 69 #ifndef NRFX_CLOCK_CONFIG_LF_SRC 70 #define NRFX_CLOCK_CONFIG_LF_SRC 1 71 #endif 72 73 /** 74 * @brief NRFX_CLOCK_CONFIG_LF_CAL_ENABLED 75 * 76 * Boolean. Accepted values: 0 and 1. 77 */ 78 #ifndef NRFX_CLOCK_CONFIG_LF_CAL_ENABLED 79 #define NRFX_CLOCK_CONFIG_LF_CAL_ENABLED 0 80 #endif 81 82 /** 83 * @brief NRFX_CLOCK_CONFIG_LFXO_TWO_STAGE_ENABLED 84 * 85 * Boolean. Accepted values: 0 and 1. 86 */ 87 #ifndef NRFX_CLOCK_CONFIG_LFXO_TWO_STAGE_ENABLED 88 #define NRFX_CLOCK_CONFIG_LFXO_TWO_STAGE_ENABLED 0 89 #endif 90 91 /** 92 * @brief NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY 93 * 94 * Integer value. Minimum: 0. Maximum: 7. 95 */ 96 #ifndef NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY 97 #define NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 98 #endif 99 100 /** 101 * @brief NRFX_CLOCK_CONFIG_LOG_ENABLED 102 * 103 * Boolean. Accepted values: 0 and 1. 104 */ 105 #ifndef NRFX_CLOCK_CONFIG_LOG_ENABLED 106 #define NRFX_CLOCK_CONFIG_LOG_ENABLED 0 107 #endif 108 109 /** 110 * @brief NRFX_CLOCK_CONFIG_LOG_LEVEL 111 * 112 * Integer value. 113 * Supported values: 114 * - Off = 0 115 * - Error = 1 116 * - Warning = 2 117 * - Info = 3 118 * - Debug = 4 119 */ 120 #ifndef NRFX_CLOCK_CONFIG_LOG_LEVEL 121 #define NRFX_CLOCK_CONFIG_LOG_LEVEL 3 122 #endif 123 124 /** 125 * @brief NRFX_COMP_ENABLED 126 * 127 * Boolean. Accepted values: 0 and 1. 128 */ 129 #ifndef NRFX_COMP_ENABLED 130 #define NRFX_COMP_ENABLED 0 131 #endif 132 133 /** 134 * @brief NRFX_COMP_DEFAULT_CONFIG_IRQ_PRIORITY 135 * 136 * Integer value. Minimum: 0. Maximum: 7. 137 */ 138 #ifndef NRFX_COMP_DEFAULT_CONFIG_IRQ_PRIORITY 139 #define NRFX_COMP_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 140 #endif 141 142 /** 143 * @brief NRFX_COMP_CONFIG_LOG_ENABLED 144 * 145 * Boolean. Accepted values: 0 and 1. 146 */ 147 #ifndef NRFX_COMP_CONFIG_LOG_ENABLED 148 #define NRFX_COMP_CONFIG_LOG_ENABLED 0 149 #endif 150 151 /** 152 * @brief NRFX_COMP_CONFIG_LOG_LEVEL 153 * 154 * Integer value. 155 * Supported values: 156 * - Off = 0 157 * - Error = 1 158 * - Warning = 2 159 * - Info = 3 160 * - Debug = 4 161 */ 162 #ifndef NRFX_COMP_CONFIG_LOG_LEVEL 163 #define NRFX_COMP_CONFIG_LOG_LEVEL 3 164 #endif 165 166 /** 167 * @brief NRFX_DPPI_ENABLED 168 * 169 * Boolean. Accepted values: 0 and 1. 170 */ 171 #ifndef NRFX_DPPI_ENABLED 172 #define NRFX_DPPI_ENABLED 0 173 #endif 174 175 /** 176 * @brief NRFX_DPPI_CONFIG_LOG_ENABLED 177 * 178 * Boolean. Accepted values: 0 and 1. 179 */ 180 #ifndef NRFX_DPPI_CONFIG_LOG_ENABLED 181 #define NRFX_DPPI_CONFIG_LOG_ENABLED 0 182 #endif 183 184 /** 185 * @brief NRFX_DPPI_CONFIG_LOG_LEVEL 186 * 187 * Integer value. 188 * Supported values: 189 * - Off = 0 190 * - Error = 1 191 * - Warning = 2 192 * - Info = 3 193 * - Debug = 4 194 */ 195 #ifndef NRFX_DPPI_CONFIG_LOG_LEVEL 196 #define NRFX_DPPI_CONFIG_LOG_LEVEL 3 197 #endif 198 199 /** 200 * @brief NRFX_DPPI00_ENABLED 201 * 202 * Boolean. Accepted values: 0 and 1. 203 */ 204 #ifndef NRFX_DPPI00_ENABLED 205 #define NRFX_DPPI00_ENABLED 0 206 #endif 207 208 /** 209 * @brief NRFX_DPPI10_ENABLED 210 * 211 * Boolean. Accepted values: 0 and 1. 212 */ 213 #ifndef NRFX_DPPI10_ENABLED 214 #define NRFX_DPPI10_ENABLED 0 215 #endif 216 217 /** 218 * @brief NRFX_DPPI20_ENABLED 219 * 220 * Boolean. Accepted values: 0 and 1. 221 */ 222 #ifndef NRFX_DPPI20_ENABLED 223 #define NRFX_DPPI20_ENABLED 0 224 #endif 225 226 /** 227 * @brief NRFX_DPPI30_ENABLED 228 * 229 * Boolean. Accepted values: 0 and 1. 230 */ 231 #ifndef NRFX_DPPI30_ENABLED 232 #define NRFX_DPPI30_ENABLED 0 233 #endif 234 235 /** 236 * @brief NRFX_EGU_ENABLED 237 * 238 * Boolean. Accepted values: 0 and 1. 239 */ 240 #ifndef NRFX_EGU_ENABLED 241 #define NRFX_EGU_ENABLED 0 242 #endif 243 244 /** 245 * @brief NRFX_EGU_DEFAULT_CONFIG_IRQ_PRIORITY 246 * 247 * Integer value. Minimum: 0. Maximum: 7. 248 */ 249 #ifndef NRFX_EGU_DEFAULT_CONFIG_IRQ_PRIORITY 250 #define NRFX_EGU_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 251 #endif 252 253 /** 254 * @brief NRFX_EGU00_ENABLED 255 * 256 * Boolean. Accepted values: 0 and 1. 257 */ 258 #ifndef NRFX_EGU00_ENABLED 259 #define NRFX_EGU00_ENABLED 0 260 #endif 261 262 /** 263 * @brief NRFX_EGU10_ENABLED 264 * 265 * Boolean. Accepted values: 0 and 1. 266 */ 267 #ifndef NRFX_EGU10_ENABLED 268 #define NRFX_EGU10_ENABLED 0 269 #endif 270 271 /** 272 * @brief NRFX_EGU20_ENABLED 273 * 274 * Boolean. Accepted values: 0 and 1. 275 */ 276 #ifndef NRFX_EGU20_ENABLED 277 #define NRFX_EGU20_ENABLED 0 278 #endif 279 280 /** 281 * @brief NRFX_GPIOTE_ENABLED 282 * 283 * Boolean. Accepted values: 0 and 1. 284 */ 285 #ifndef NRFX_GPIOTE_ENABLED 286 #define NRFX_GPIOTE_ENABLED 0 287 #endif 288 289 /** 290 * @brief NRFX_GPIOTE_DEFAULT_CONFIG_IRQ_PRIORITY 291 * 292 * Integer value. Minimum: 0. Maximum: 7. 293 */ 294 #ifndef NRFX_GPIOTE_DEFAULT_CONFIG_IRQ_PRIORITY 295 #define NRFX_GPIOTE_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 296 #endif 297 298 /** 299 * @brief NRFX_GPIOTE_CONFIG_NUM_OF_EVT_HANDLERS 300 * 301 * Integer value. Minimum: 0. Maximum: 15. 302 */ 303 #ifndef NRFX_GPIOTE_CONFIG_NUM_OF_EVT_HANDLERS 304 #define NRFX_GPIOTE_CONFIG_NUM_OF_EVT_HANDLERS 2 305 #endif 306 307 /** 308 * @brief NRFX_GPIOTE_CONFIG_LOG_ENABLED 309 * 310 * Boolean. Accepted values: 0 and 1. 311 */ 312 #ifndef NRFX_GPIOTE_CONFIG_LOG_ENABLED 313 #define NRFX_GPIOTE_CONFIG_LOG_ENABLED 0 314 #endif 315 316 /** 317 * @brief NRFX_GPIOTE_CONFIG_LOG_LEVEL 318 * 319 * Integer value. 320 * Supported values: 321 * - Off = 0 322 * - Error = 1 323 * - Warning = 2 324 * - Info = 3 325 * - Debug = 4 326 */ 327 #ifndef NRFX_GPIOTE_CONFIG_LOG_LEVEL 328 #define NRFX_GPIOTE_CONFIG_LOG_LEVEL 3 329 #endif 330 331 /** 332 * @brief NRFX_GPIOTE20_ENABLED 333 * 334 * Boolean. Accepted values: 0 and 1. 335 */ 336 #ifndef NRFX_GPIOTE20_ENABLED 337 #define NRFX_GPIOTE20_ENABLED 0 338 #endif 339 340 /** 341 * @brief NRFX_GPIOTE30_ENABLED 342 * 343 * Boolean. Accepted values: 0 and 1. 344 */ 345 #ifndef NRFX_GPIOTE30_ENABLED 346 #define NRFX_GPIOTE30_ENABLED 0 347 #endif 348 349 /** 350 * @brief NRFX_GRTC_ENABLED 351 * 352 * Boolean. Accepted values: 0 and 1. 353 */ 354 #ifndef NRFX_GRTC_ENABLED 355 #define NRFX_GRTC_ENABLED 0 356 #endif 357 358 /** 359 * @brief NRFX_GRTC_CONFIG_AUTOEN 360 * 361 * Boolean. Accepted values: 0 and 1. 362 */ 363 #ifndef NRFX_GRTC_CONFIG_AUTOEN 364 #define NRFX_GRTC_CONFIG_AUTOEN 1 365 #endif 366 367 /** 368 * @brief NRFX_GRTC_CONFIG_AUTOSTART 369 * 370 * Boolean. Accepted values: 0 and 1. 371 */ 372 #ifndef NRFX_GRTC_CONFIG_AUTOSTART 373 #define NRFX_GRTC_CONFIG_AUTOSTART 1 374 #endif 375 376 /** 377 * @brief NRFX_GRTC_CONFIG_CLEAR_AT_INIT 378 * 379 * Boolean. Accepted values: 0 and 1. 380 */ 381 #ifndef NRFX_GRTC_CONFIG_CLEAR_AT_INIT 382 #define NRFX_GRTC_CONFIG_CLEAR_AT_INIT 0 383 #endif 384 385 /** 386 * @brief NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS 387 * 388 * Integer value. 389 */ 390 #ifndef NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS 391 #define NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS 8 392 #endif 393 394 /** 395 * @brief NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK 396 */ 397 #ifndef NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK 398 #define NRFX_GRTC_CONFIG_ALLOWED_CC_CHANNELS_MASK 0x00000f0f 399 #endif 400 401 /** 402 * @brief NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY 403 * 404 * Integer value. Minimum: 0. Maximum: 7. 405 */ 406 #ifndef NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY 407 #define NRFX_GRTC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 408 #endif 409 410 /** 411 * @brief NRFX_GRTC_CONFIG_LOG_ENABLED 412 * 413 * Boolean. Accepted values: 0 and 1. 414 */ 415 #ifndef NRFX_GRTC_CONFIG_LOG_ENABLED 416 #define NRFX_GRTC_CONFIG_LOG_ENABLED 0 417 #endif 418 419 /** 420 * @brief NRFX_GRTC_CONFIG_LOG_LEVEL 421 * 422 * Integer value. 423 * Supported values: 424 * - Off = 0 425 * - Error = 1 426 * - Warning = 2 427 * - Info = 3 428 * - Debug = 4 429 */ 430 #ifndef NRFX_GRTC_CONFIG_LOG_LEVEL 431 #define NRFX_GRTC_CONFIG_LOG_LEVEL 3 432 #endif 433 434 /** 435 * @brief NRFX_LPCOMP_ENABLED 436 * 437 * Boolean. Accepted values: 0 and 1. 438 */ 439 #ifndef NRFX_LPCOMP_ENABLED 440 #define NRFX_LPCOMP_ENABLED 0 441 #endif 442 443 /** 444 * @brief NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY 445 * 446 * Integer value. Minimum: 0. Maximum: 7. 447 */ 448 #ifndef NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY 449 #define NRFX_LPCOMP_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 450 #endif 451 452 /** 453 * @brief NRFX_LPCOMP_CONFIG_LOG_ENABLED 454 * 455 * Boolean. Accepted values: 0 and 1. 456 */ 457 #ifndef NRFX_LPCOMP_CONFIG_LOG_ENABLED 458 #define NRFX_LPCOMP_CONFIG_LOG_ENABLED 0 459 #endif 460 461 /** 462 * @brief NRFX_LPCOMP_CONFIG_LOG_LEVEL 463 * 464 * Integer value. 465 * Supported values: 466 * - Off = 0 467 * - Error = 1 468 * - Warning = 2 469 * - Info = 3 470 * - Debug = 4 471 */ 472 #ifndef NRFX_LPCOMP_CONFIG_LOG_LEVEL 473 #define NRFX_LPCOMP_CONFIG_LOG_LEVEL 3 474 #endif 475 476 /** 477 * @brief NRFX_POWER_ENABLED 478 * 479 * Boolean. Accepted values: 0 and 1. 480 */ 481 #ifndef NRFX_POWER_ENABLED 482 #define NRFX_POWER_ENABLED 0 483 #endif 484 485 /** 486 * @brief NRFX_POWER_DEFAULT_CONFIG_IRQ_PRIORITY 487 * 488 * Integer value. Minimum: 0. Maximum: 7. 489 */ 490 #ifndef NRFX_POWER_DEFAULT_CONFIG_IRQ_PRIORITY 491 #define NRFX_POWER_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 492 #endif 493 494 /** 495 * @brief NRFX_PPIB_ENABLED 496 * 497 * Boolean. Accepted values: 0 and 1. 498 */ 499 #ifndef NRFX_PPIB_ENABLED 500 #define NRFX_PPIB_ENABLED 0 501 #endif 502 503 /** 504 * @brief NRFX_PPIB_CONFIG_LOG_ENABLED 505 * 506 * Boolean. Accepted values: 0 and 1. 507 */ 508 #ifndef NRFX_PPIB_CONFIG_LOG_ENABLED 509 #define NRFX_PPIB_CONFIG_LOG_ENABLED 0 510 #endif 511 512 /** 513 * @brief NRFX_PPIB_CONFIG_LOG_LEVEL 514 * 515 * Integer value. 516 * Supported values: 517 * - Off = 0 518 * - Error = 1 519 * - Warning = 2 520 * - Info = 3 521 * - Debug = 4 522 */ 523 #ifndef NRFX_PPIB_CONFIG_LOG_LEVEL 524 #define NRFX_PPIB_CONFIG_LOG_LEVEL 3 525 #endif 526 527 /** 528 * @brief NRFX_PPIB00_ENABLED 529 * 530 * Boolean. Accepted values: 0 and 1. 531 */ 532 #ifndef NRFX_PPIB00_ENABLED 533 #define NRFX_PPIB00_ENABLED 0 534 #endif 535 536 /** 537 * @brief NRFX_PPIB01_ENABLED 538 * 539 * Boolean. Accepted values: 0 and 1. 540 */ 541 #ifndef NRFX_PPIB01_ENABLED 542 #define NRFX_PPIB01_ENABLED 0 543 #endif 544 545 /** 546 * @brief NRFX_PPIB10_ENABLED 547 * 548 * Boolean. Accepted values: 0 and 1. 549 */ 550 #ifndef NRFX_PPIB10_ENABLED 551 #define NRFX_PPIB10_ENABLED 0 552 #endif 553 554 /** 555 * @brief NRFX_PPIB11_ENABLED 556 * 557 * Boolean. Accepted values: 0 and 1. 558 */ 559 #ifndef NRFX_PPIB11_ENABLED 560 #define NRFX_PPIB11_ENABLED 0 561 #endif 562 563 /** 564 * @brief NRFX_PPIB20_ENABLED 565 * 566 * Boolean. Accepted values: 0 and 1. 567 */ 568 #ifndef NRFX_PPIB20_ENABLED 569 #define NRFX_PPIB20_ENABLED 0 570 #endif 571 572 /** 573 * @brief NRFX_PPIB21_ENABLED 574 * 575 * Boolean. Accepted values: 0 and 1. 576 */ 577 #ifndef NRFX_PPIB21_ENABLED 578 #define NRFX_PPIB21_ENABLED 0 579 #endif 580 581 /** 582 * @brief NRFX_PPIB22_ENABLED 583 * 584 * Boolean. Accepted values: 0 and 1. 585 */ 586 #ifndef NRFX_PPIB22_ENABLED 587 #define NRFX_PPIB22_ENABLED 0 588 #endif 589 590 /** 591 * @brief NRFX_PPIB30_ENABLED 592 * 593 * Boolean. Accepted values: 0 and 1. 594 */ 595 #ifndef NRFX_PPIB30_ENABLED 596 #define NRFX_PPIB30_ENABLED 0 597 #endif 598 599 /** 600 * @brief NRFX_PRS_ENABLED 601 * 602 * Boolean. Accepted values: 0 and 1. 603 */ 604 #ifndef NRFX_PRS_ENABLED 605 #define NRFX_PRS_ENABLED 0 606 #endif 607 608 /** 609 * @brief NRFX_PRS_CONFIG_LOG_ENABLED 610 * 611 * Boolean. Accepted values: 0 and 1. 612 */ 613 #ifndef NRFX_PRS_CONFIG_LOG_ENABLED 614 #define NRFX_PRS_CONFIG_LOG_ENABLED 0 615 #endif 616 617 /** 618 * @brief NRFX_PRS_CONFIG_LOG_LEVEL 619 * 620 * Integer value. 621 * Supported values: 622 * - Off = 0 623 * - Error = 1 624 * - Warning = 2 625 * - Info = 3 626 * - Debug = 4 627 */ 628 #ifndef NRFX_PRS_CONFIG_LOG_LEVEL 629 #define NRFX_PRS_CONFIG_LOG_LEVEL 3 630 #endif 631 632 /** 633 * @brief NRFX_PRS_BOX_0_ENABLED 634 * 635 * Boolean. Accepted values: 0 and 1. 636 */ 637 #ifndef NRFX_PRS_BOX_0_ENABLED 638 #define NRFX_PRS_BOX_0_ENABLED 0 639 #endif 640 641 /** 642 * @brief NRFX_PRS_BOX_1_ENABLED 643 * 644 * Boolean. Accepted values: 0 and 1. 645 */ 646 #ifndef NRFX_PRS_BOX_1_ENABLED 647 #define NRFX_PRS_BOX_1_ENABLED 0 648 #endif 649 650 /** 651 * @brief NRFX_PRS_BOX_2_ENABLED 652 * 653 * Boolean. Accepted values: 0 and 1. 654 */ 655 #ifndef NRFX_PRS_BOX_2_ENABLED 656 #define NRFX_PRS_BOX_2_ENABLED 0 657 #endif 658 659 /** 660 * @brief NRFX_PRS_BOX_3_ENABLED 661 * 662 * Boolean. Accepted values: 0 and 1. 663 */ 664 #ifndef NRFX_PRS_BOX_3_ENABLED 665 #define NRFX_PRS_BOX_3_ENABLED 0 666 #endif 667 668 /** 669 * @brief NRFX_PRS_BOX_4_ENABLED 670 * 671 * Boolean. Accepted values: 0 and 1. 672 */ 673 #ifndef NRFX_PRS_BOX_4_ENABLED 674 #define NRFX_PRS_BOX_4_ENABLED 0 675 #endif 676 677 /** 678 * @brief NRFX_RRAMC_ENABLED 679 * 680 * Boolean. Accepted values: 0 and 1. 681 */ 682 #ifndef NRFX_RRAMC_ENABLED 683 #define NRFX_RRAMC_ENABLED 0 684 #endif 685 686 /** 687 * @brief NRFX_RRAMC_DEFAULT_CONFIG_IRQ_PRIORITY 688 * 689 * Integer value. Minimum: 0. Maximum: 7. 690 */ 691 #ifndef NRFX_RRAMC_DEFAULT_CONFIG_IRQ_PRIORITY 692 #define NRFX_RRAMC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 693 #endif 694 695 /** 696 * @brief NRFX_RRAMC_CONFIG_LOG_ENABLED 697 * 698 * Boolean. Accepted values: 0 and 1. 699 */ 700 #ifndef NRFX_RRAMC_CONFIG_LOG_ENABLED 701 #define NRFX_RRAMC_CONFIG_LOG_ENABLED 0 702 #endif 703 704 /** 705 * @brief NRFX_RRAMC_CONFIG_LOG_LEVEL 706 * 707 * Integer value. 708 * Supported values: 709 * - Off = 0 710 * - Error = 1 711 * - Warning = 2 712 * - Info = 3 713 * - Debug = 4 714 */ 715 #ifndef NRFX_RRAMC_CONFIG_LOG_LEVEL 716 #define NRFX_RRAMC_CONFIG_LOG_LEVEL 3 717 #endif 718 719 /** 720 * @brief NRFX_SAADC_ENABLED 721 * 722 * Boolean. Accepted values: 0 and 1. 723 */ 724 #ifndef NRFX_SAADC_ENABLED 725 #define NRFX_SAADC_ENABLED 0 726 #endif 727 728 /** 729 * @brief NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY 730 * 731 * Integer value. Minimum: 0. Maximum: 7. 732 */ 733 #ifndef NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY 734 #define NRFX_SAADC_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 735 #endif 736 737 /** 738 * @brief NRFX_SAADC_CONFIG_LOG_ENABLED 739 * 740 * Boolean. Accepted values: 0 and 1. 741 */ 742 #ifndef NRFX_SAADC_CONFIG_LOG_ENABLED 743 #define NRFX_SAADC_CONFIG_LOG_ENABLED 0 744 #endif 745 746 /** 747 * @brief NRFX_SAADC_CONFIG_LOG_LEVEL 748 * 749 * Integer value. 750 * Supported values: 751 * - Off = 0 752 * - Error = 1 753 * - Warning = 2 754 * - Info = 3 755 * - Debug = 4 756 */ 757 #ifndef NRFX_SAADC_CONFIG_LOG_LEVEL 758 #define NRFX_SAADC_CONFIG_LOG_LEVEL 3 759 #endif 760 761 /** 762 * @brief NRFX_SPIM_ENABLED 763 * 764 * Boolean. Accepted values: 0 and 1. 765 */ 766 #ifndef NRFX_SPIM_ENABLED 767 #define NRFX_SPIM_ENABLED 0 768 #endif 769 770 /** 771 * @brief NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY 772 * 773 * Integer value. Minimum: 0. Maximum: 7. 774 */ 775 #ifndef NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY 776 #define NRFX_SPIM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 777 #endif 778 779 /** 780 * @brief NRFX_SPIM_CONFIG_LOG_ENABLED 781 * 782 * Boolean. Accepted values: 0 and 1. 783 */ 784 #ifndef NRFX_SPIM_CONFIG_LOG_ENABLED 785 #define NRFX_SPIM_CONFIG_LOG_ENABLED 0 786 #endif 787 788 /** 789 * @brief NRFX_SPIM_CONFIG_LOG_LEVEL 790 * 791 * Integer value. 792 * Supported values: 793 * - Off = 0 794 * - Error = 1 795 * - Warning = 2 796 * - Info = 3 797 * - Debug = 4 798 */ 799 #ifndef NRFX_SPIM_CONFIG_LOG_LEVEL 800 #define NRFX_SPIM_CONFIG_LOG_LEVEL 3 801 #endif 802 803 /** 804 * @brief NRFX_SPIM20_ENABLED 805 * 806 * Boolean. Accepted values: 0 and 1. 807 */ 808 #ifndef NRFX_SPIM20_ENABLED 809 #define NRFX_SPIM20_ENABLED 0 810 #endif 811 812 /** 813 * @brief NRFX_SPIM21_ENABLED 814 * 815 * Boolean. Accepted values: 0 and 1. 816 */ 817 #ifndef NRFX_SPIM21_ENABLED 818 #define NRFX_SPIM21_ENABLED 0 819 #endif 820 821 /** 822 * @brief NRFX_SPIM30_ENABLED 823 * 824 * Boolean. Accepted values: 0 and 1. 825 */ 826 #ifndef NRFX_SPIM30_ENABLED 827 #define NRFX_SPIM30_ENABLED 0 828 #endif 829 830 /** 831 * @brief NRFX_SPIS_ENABLED 832 * 833 * Boolean. Accepted values: 0 and 1. 834 */ 835 #ifndef NRFX_SPIS_ENABLED 836 #define NRFX_SPIS_ENABLED 0 837 #endif 838 839 /** 840 * @brief NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY 841 * 842 * Integer value. Minimum: 0. Maximum: 7. 843 */ 844 #ifndef NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY 845 #define NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 846 #endif 847 848 /** 849 * @brief NRFX_SPIS_CONFIG_LOG_ENABLED 850 * 851 * Boolean. Accepted values: 0 and 1. 852 */ 853 #ifndef NRFX_SPIS_CONFIG_LOG_ENABLED 854 #define NRFX_SPIS_CONFIG_LOG_ENABLED 0 855 #endif 856 857 /** 858 * @brief NRFX_SPIS_CONFIG_LOG_LEVEL 859 * 860 * Integer value. 861 * Supported values: 862 * - Off = 0 863 * - Error = 1 864 * - Warning = 2 865 * - Info = 3 866 * - Debug = 4 867 */ 868 #ifndef NRFX_SPIS_CONFIG_LOG_LEVEL 869 #define NRFX_SPIS_CONFIG_LOG_LEVEL 3 870 #endif 871 872 /** 873 * @brief NRFX_SPIS20_ENABLED 874 * 875 * Boolean. Accepted values: 0 and 1. 876 */ 877 #ifndef NRFX_SPIS20_ENABLED 878 #define NRFX_SPIS20_ENABLED 0 879 #endif 880 881 /** 882 * @brief NRFX_SPIS21_ENABLED 883 * 884 * Boolean. Accepted values: 0 and 1. 885 */ 886 #ifndef NRFX_SPIS21_ENABLED 887 #define NRFX_SPIS21_ENABLED 0 888 #endif 889 890 /** 891 * @brief NRFX_SPIS30_ENABLED 892 * 893 * Boolean. Accepted values: 0 and 1. 894 */ 895 #ifndef NRFX_SPIS30_ENABLED 896 #define NRFX_SPIS30_ENABLED 0 897 #endif 898 899 /** 900 * @brief NRFX_SYSTICK_ENABLED 901 * 902 * Boolean. Accepted values: 0 and 1. 903 */ 904 #ifndef NRFX_SYSTICK_ENABLED 905 #define NRFX_SYSTICK_ENABLED 0 906 #endif 907 908 /** 909 * @brief NRFX_TEMP_ENABLED 910 * 911 * Boolean. Accepted values: 0 and 1. 912 */ 913 #ifndef NRFX_TEMP_ENABLED 914 #define NRFX_TEMP_ENABLED 0 915 #endif 916 917 /** 918 * @brief NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY 919 * 920 * Integer value. Minimum: 0. Maximum: 7. 921 */ 922 #ifndef NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY 923 #define NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 924 #endif 925 926 /** 927 * @brief NRFX_TEMP_CONFIG_LOG_ENABLED 928 * 929 * Boolean. Accepted values: 0 and 1. 930 */ 931 #ifndef NRFX_TEMP_CONFIG_LOG_ENABLED 932 #define NRFX_TEMP_CONFIG_LOG_ENABLED 0 933 #endif 934 935 /** 936 * @brief NRFX_TEMP_CONFIG_LOG_LEVEL 937 * 938 * Integer value. 939 * Supported values: 940 * - Off = 0 941 * - Error = 1 942 * - Warning = 2 943 * - Info = 3 944 * - Debug = 4 945 */ 946 #ifndef NRFX_TEMP_CONFIG_LOG_LEVEL 947 #define NRFX_TEMP_CONFIG_LOG_LEVEL 3 948 #endif 949 950 /** 951 * @brief NRFX_TIMER_ENABLED 952 * 953 * Boolean. Accepted values: 0 and 1. 954 */ 955 #ifndef NRFX_TIMER_ENABLED 956 #define NRFX_TIMER_ENABLED 0 957 #endif 958 959 /** 960 * @brief NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY 961 * 962 * Integer value. Minimum: 0. Maximum: 7. 963 */ 964 #ifndef NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY 965 #define NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 966 #endif 967 968 /** 969 * @brief NRFX_TIMER_CONFIG_LOG_ENABLED 970 * 971 * Boolean. Accepted values: 0 and 1. 972 */ 973 #ifndef NRFX_TIMER_CONFIG_LOG_ENABLED 974 #define NRFX_TIMER_CONFIG_LOG_ENABLED 0 975 #endif 976 977 /** 978 * @brief NRFX_TIMER_CONFIG_LOG_LEVEL 979 * 980 * Integer value. 981 * Supported values: 982 * - Off = 0 983 * - Error = 1 984 * - Warning = 2 985 * - Info = 3 986 * - Debug = 4 987 */ 988 #ifndef NRFX_TIMER_CONFIG_LOG_LEVEL 989 #define NRFX_TIMER_CONFIG_LOG_LEVEL 3 990 #endif 991 992 /** 993 * @brief NRFX_TIMER00_ENABLED 994 * 995 * Boolean. Accepted values: 0 and 1. 996 */ 997 #ifndef NRFX_TIMER00_ENABLED 998 #define NRFX_TIMER00_ENABLED 0 999 #endif 1000 1001 /** 1002 * @brief NRFX_TIMER10_ENABLED 1003 * 1004 * Boolean. Accepted values: 0 and 1. 1005 */ 1006 #ifndef NRFX_TIMER10_ENABLED 1007 #define NRFX_TIMER10_ENABLED 0 1008 #endif 1009 1010 /** 1011 * @brief NRFX_TIMER20_ENABLED 1012 * 1013 * Boolean. Accepted values: 0 and 1. 1014 */ 1015 #ifndef NRFX_TIMER20_ENABLED 1016 #define NRFX_TIMER20_ENABLED 0 1017 #endif 1018 1019 /** 1020 * @brief NRFX_TIMER21_ENABLED 1021 * 1022 * Boolean. Accepted values: 0 and 1. 1023 */ 1024 #ifndef NRFX_TIMER21_ENABLED 1025 #define NRFX_TIMER21_ENABLED 0 1026 #endif 1027 1028 /** 1029 * @brief NRFX_TIMER22_ENABLED 1030 * 1031 * Boolean. Accepted values: 0 and 1. 1032 */ 1033 #ifndef NRFX_TIMER22_ENABLED 1034 #define NRFX_TIMER22_ENABLED 0 1035 #endif 1036 1037 /** 1038 * @brief NRFX_TIMER23_ENABLED 1039 * 1040 * Boolean. Accepted values: 0 and 1. 1041 */ 1042 #ifndef NRFX_TIMER23_ENABLED 1043 #define NRFX_TIMER23_ENABLED 0 1044 #endif 1045 1046 /** 1047 * @brief NRFX_TIMER24_ENABLED 1048 * 1049 * Boolean. Accepted values: 0 and 1. 1050 */ 1051 #ifndef NRFX_TIMER24_ENABLED 1052 #define NRFX_TIMER24_ENABLED 0 1053 #endif 1054 1055 /** 1056 * @brief NRFX_TWIM_ENABLED 1057 * 1058 * Boolean. Accepted values: 0 and 1. 1059 */ 1060 #ifndef NRFX_TWIM_ENABLED 1061 #define NRFX_TWIM_ENABLED 0 1062 #endif 1063 1064 /** 1065 * @brief NRFX_TWIM_DEFAULT_CONFIG_IRQ_PRIORITY 1066 * 1067 * Integer value. Minimum: 0. Maximum: 7. 1068 */ 1069 #ifndef NRFX_TWIM_DEFAULT_CONFIG_IRQ_PRIORITY 1070 #define NRFX_TWIM_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 1071 #endif 1072 1073 /** 1074 * @brief NRFX_TWIM_CONFIG_LOG_ENABLED 1075 * 1076 * Boolean. Accepted values: 0 and 1. 1077 */ 1078 #ifndef NRFX_TWIM_CONFIG_LOG_ENABLED 1079 #define NRFX_TWIM_CONFIG_LOG_ENABLED 0 1080 #endif 1081 1082 /** 1083 * @brief NRFX_TWIM_CONFIG_LOG_LEVEL 1084 * 1085 * Integer value. 1086 * Supported values: 1087 * - Off = 0 1088 * - Error = 1 1089 * - Warning = 2 1090 * - Info = 3 1091 * - Debug = 4 1092 */ 1093 #ifndef NRFX_TWIM_CONFIG_LOG_LEVEL 1094 #define NRFX_TWIM_CONFIG_LOG_LEVEL 3 1095 #endif 1096 1097 /** 1098 * @brief NRFX_TWIM20_ENABLED 1099 * 1100 * Boolean. Accepted values: 0 and 1. 1101 */ 1102 #ifndef NRFX_TWIM20_ENABLED 1103 #define NRFX_TWIM20_ENABLED 0 1104 #endif 1105 1106 /** 1107 * @brief NRFX_TWIM21_ENABLED 1108 * 1109 * Boolean. Accepted values: 0 and 1. 1110 */ 1111 #ifndef NRFX_TWIM21_ENABLED 1112 #define NRFX_TWIM21_ENABLED 0 1113 #endif 1114 1115 /** 1116 * @brief NRFX_TWIM30_ENABLED 1117 * 1118 * Boolean. Accepted values: 0 and 1. 1119 */ 1120 #ifndef NRFX_TWIM30_ENABLED 1121 #define NRFX_TWIM30_ENABLED 0 1122 #endif 1123 1124 /** 1125 * @brief NRFX_TWIS_ENABLED 1126 * 1127 * Boolean. Accepted values: 0 and 1. 1128 */ 1129 #ifndef NRFX_TWIS_ENABLED 1130 #define NRFX_TWIS_ENABLED 0 1131 #endif 1132 1133 /** 1134 * @brief NRFX_TWIS_DEFAULT_CONFIG_IRQ_PRIORITY 1135 * 1136 * Integer value. Minimum: 0. Maximum: 7. 1137 */ 1138 #ifndef NRFX_TWIS_DEFAULT_CONFIG_IRQ_PRIORITY 1139 #define NRFX_TWIS_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 1140 #endif 1141 1142 /** 1143 * @brief NRFX_TWIS_CONFIG_LOG_ENABLED 1144 * 1145 * Boolean. Accepted values: 0 and 1. 1146 */ 1147 #ifndef NRFX_TWIS_CONFIG_LOG_ENABLED 1148 #define NRFX_TWIS_CONFIG_LOG_ENABLED 0 1149 #endif 1150 1151 /** 1152 * @brief NRFX_TWIS_ASSUME_INIT_AFTER_RESET_ONLY - Assume that any instance would be initialized only once. 1153 * 1154 * Boolean. Accepted values: 0 and 1. 1155 */ 1156 #ifndef NRFX_TWIS_ASSUME_INIT_AFTER_RESET_ONLY 1157 #define NRFX_TWIS_ASSUME_INIT_AFTER_RESET_ONLY 0 1158 #endif 1159 1160 /** 1161 * @brief NRFX_TWIS_NO_SYNC_MODE - Remove support for synchronous mode. 1162 * 1163 * Boolean. Accepted values: 0 and 1. 1164 */ 1165 #ifndef NRFX_TWIS_NO_SYNC_MODE 1166 #define NRFX_TWIS_NO_SYNC_MODE 0 1167 #endif 1168 1169 /** 1170 * @brief NRFX_TWIS_CONFIG_LOG_LEVEL 1171 * 1172 * Integer value. 1173 * Supported values: 1174 * - Off = 0 1175 * - Error = 1 1176 * - Warning = 2 1177 * - Info = 3 1178 * - Debug = 4 1179 */ 1180 #ifndef NRFX_TWIS_CONFIG_LOG_LEVEL 1181 #define NRFX_TWIS_CONFIG_LOG_LEVEL 3 1182 #endif 1183 1184 /** 1185 * @brief NRFX_TWIS20_ENABLED 1186 * 1187 * Boolean. Accepted values: 0 and 1. 1188 */ 1189 #ifndef NRFX_TWIS20_ENABLED 1190 #define NRFX_TWIS20_ENABLED 0 1191 #endif 1192 1193 /** 1194 * @brief NRFX_TWIS21_ENABLED 1195 * 1196 * Boolean. Accepted values: 0 and 1. 1197 */ 1198 #ifndef NRFX_TWIS21_ENABLED 1199 #define NRFX_TWIS21_ENABLED 0 1200 #endif 1201 1202 /** 1203 * @brief NRFX_TWIS30_ENABLED 1204 * 1205 * Boolean. Accepted values: 0 and 1. 1206 */ 1207 #ifndef NRFX_TWIS30_ENABLED 1208 #define NRFX_TWIS30_ENABLED 0 1209 #endif 1210 1211 /** 1212 * @brief NRFX_UARTE_ENABLED 1213 * 1214 * Boolean. Accepted values: 0 and 1. 1215 */ 1216 #ifndef NRFX_UARTE_ENABLED 1217 #define NRFX_UARTE_ENABLED 0 1218 #endif 1219 1220 /** 1221 * @brief NRFX_UARTE_CONFIG_SKIP_GPIO_CONFIG - If enabled, support for configuring GPIO pins is removed from the driver 1222 * 1223 * Boolean. Accepted values: 0 and 1. 1224 */ 1225 #ifndef NRFX_UARTE_CONFIG_SKIP_GPIO_CONFIG 1226 #define NRFX_UARTE_CONFIG_SKIP_GPIO_CONFIG 0 1227 #endif 1228 1229 /** 1230 * @brief NRFX_UARTE_CONFIG_SKIP_PSEL_CONFIG - If enabled, support for configuring PSEL registers is removed from the driver 1231 * 1232 * Boolean. Accepted values: 0 and 1. 1233 */ 1234 #ifndef NRFX_UARTE_CONFIG_SKIP_PSEL_CONFIG 1235 #define NRFX_UARTE_CONFIG_SKIP_PSEL_CONFIG 0 1236 #endif 1237 1238 /** 1239 * @brief NRFX_UARTE_CONFIG_TX_LINK - If enabled, driver supports linking of TX transfers. 1240 * 1241 * Boolean. Accepted values: 0 and 1. 1242 */ 1243 #ifndef NRFX_UARTE_CONFIG_TX_LINK 1244 #define NRFX_UARTE_CONFIG_TX_LINK 1 1245 #endif 1246 1247 /** 1248 * @brief NRFX_UARTE_DEFAULT_CONFIG_IRQ_PRIORITY 1249 * 1250 * Integer value. Minimum: 0. Maximum: 7. 1251 */ 1252 #ifndef NRFX_UARTE_DEFAULT_CONFIG_IRQ_PRIORITY 1253 #define NRFX_UARTE_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 1254 #endif 1255 1256 /** 1257 * @brief NRFX_UARTE_CONFIG_LOG_ENABLED 1258 * 1259 * Boolean. Accepted values: 0 and 1. 1260 */ 1261 #ifndef NRFX_UARTE_CONFIG_LOG_ENABLED 1262 #define NRFX_UARTE_CONFIG_LOG_ENABLED 0 1263 #endif 1264 1265 /** 1266 * @brief NRFX_UARTE_CONFIG_LOG_LEVEL 1267 * 1268 * Integer value. 1269 * Supported values: 1270 * - Off = 0 1271 * - Error = 1 1272 * - Warning = 2 1273 * - Info = 3 1274 * - Debug = 4 1275 */ 1276 #ifndef NRFX_UARTE_CONFIG_LOG_LEVEL 1277 #define NRFX_UARTE_CONFIG_LOG_LEVEL 3 1278 #endif 1279 1280 /** 1281 * @brief NRFX_UARTE20_ENABLED 1282 * 1283 * Boolean. Accepted values: 0 and 1. 1284 */ 1285 #ifndef NRFX_UARTE20_ENABLED 1286 #define NRFX_UARTE20_ENABLED 0 1287 #endif 1288 1289 /** 1290 * @brief NRFX_UARTE21_ENABLED 1291 * 1292 * Boolean. Accepted values: 0 and 1. 1293 */ 1294 #ifndef NRFX_UARTE21_ENABLED 1295 #define NRFX_UARTE21_ENABLED 0 1296 #endif 1297 1298 /** 1299 * @brief NRFX_UARTE30_ENABLED 1300 * 1301 * Boolean. Accepted values: 0 and 1. 1302 */ 1303 #ifndef NRFX_UARTE30_ENABLED 1304 #define NRFX_UARTE30_ENABLED 0 1305 #endif 1306 1307 /** 1308 * @brief NRFX_WDT_ENABLED 1309 * 1310 * Boolean. Accepted values: 0 and 1. 1311 */ 1312 #ifndef NRFX_WDT_ENABLED 1313 #define NRFX_WDT_ENABLED 0 1314 #endif 1315 1316 /** 1317 * @brief NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY 1318 * 1319 * Integer value. Minimum: 0. Maximum: 7. 1320 */ 1321 #ifndef NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY 1322 #define NRFX_WDT_DEFAULT_CONFIG_IRQ_PRIORITY NRFX_DEFAULT_IRQ_PRIORITY 1323 #endif 1324 1325 /** 1326 * @brief NRFX_WDT_CONFIG_NO_IRQ - Remove WDT IRQ handling from WDT driver 1327 * 1328 * Boolean. Accepted values: 0 and 1. 1329 */ 1330 #ifndef NRFX_WDT_CONFIG_NO_IRQ 1331 #define NRFX_WDT_CONFIG_NO_IRQ 0 1332 #endif 1333 1334 /** 1335 * @brief NRFX_WDT_CONFIG_LOG_ENABLED 1336 * 1337 * Boolean. Accepted values: 0 and 1. 1338 */ 1339 #ifndef NRFX_WDT_CONFIG_LOG_ENABLED 1340 #define NRFX_WDT_CONFIG_LOG_ENABLED 0 1341 #endif 1342 1343 /** 1344 * @brief NRFX_WDT_CONFIG_LOG_LEVEL 1345 * 1346 * Integer value. 1347 * Supported values: 1348 * - Off = 0 1349 * - Error = 1 1350 * - Warning = 2 1351 * - Info = 3 1352 * - Debug = 4 1353 */ 1354 #ifndef NRFX_WDT_CONFIG_LOG_LEVEL 1355 #define NRFX_WDT_CONFIG_LOG_LEVEL 3 1356 #endif 1357 1358 /** 1359 * @brief NRFX_WDT30_ENABLED 1360 * 1361 * Boolean. Accepted values: 0 and 1. 1362 */ 1363 #ifndef NRFX_WDT30_ENABLED 1364 #define NRFX_WDT30_ENABLED 0 1365 #endif 1366 1367 /** 1368 * @brief NRFX_WDT31_ENABLED 1369 * 1370 * Boolean. Accepted values: 0 and 1. 1371 */ 1372 #ifndef NRFX_WDT31_ENABLED 1373 #define NRFX_WDT31_ENABLED 0 1374 #endif 1375 1376 #endif // NRFX_CONFIG_NRF54L09_ENGA_APPLICATION_H__ 1377