Skip to content
Snippets Groups Projects
mk20dx128.h 123 KiB
Newer Older
  • Learn to ignore specific revisions
  • /* Teensyduino Core Library
     * http://www.pjrc.com/teensy/
     * Copyright (c) 2013 PJRC.COM, LLC.
     *
     * Permission is hereby granted, free of charge, to any person obtaining
     * a copy of this software and associated documentation files (the
     * "Software"), to deal in the Software without restriction, including
     * without limitation the rights to use, copy, modify, merge, publish,
     * distribute, sublicense, and/or sell copies of the Software, and to
     * permit persons to whom the Software is furnished to do so, subject to
     * the following conditions:
     *
     * 1. The above copyright notice and this permission notice shall be 
     * included in all copies or substantial portions of the Software.
     *
     * 2. If the Software is incorporated into a build system that allows 
     * selection among a list of target devices, then similar target
     * devices manufactured by PJRC.COM must be included in the list of
     * target devices and selectable in the same manner.
     *
     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
     * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
     * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
     * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
     * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
     * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
     * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
     * SOFTWARE.
     */
    
    #ifndef _mk20dx128_h_
    #define _mk20dx128_h_
    
    
    #define F_CPU 48000000
    #define F_BUS 48000000
    #define F_MEM 24000000
    
    37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    
    #ifndef NULL
    #define NULL ((void *)0)
    #endif
    
    #include <stdint.h>
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    // chapter 11: Port control and interrupts (PORT)
    #define PORTA_PCR0              *(volatile uint32_t *)0x40049000 // Pin Control Register n
    #define PORT_PCR_ISF            (uint32_t)0x01000000        // Interrupt Status Flag
    #define PORT_PCR_IRQC(n)        (uint32_t)(((n) & 15) << 16)    // Interrupt Configuration
    #define PORT_PCR_IRQC_MASK      (uint32_t)0x000F0000
    #define PORT_PCR_LK         (uint32_t)0x00008000        // Lock Register
    #define PORT_PCR_MUX(n)         (uint32_t)(((n) & 7) << 8)  // Pin Mux Control
    #define PORT_PCR_MUX_MASK       (uint32_t)0x00000700
    #define PORT_PCR_DSE            (uint32_t)0x00000040        // Drive Strength Enable
    #define PORT_PCR_ODE            (uint32_t)0x00000020        // Open Drain Enable
    #define PORT_PCR_PFE            (uint32_t)0x00000010        // Passive Filter Enable
    #define PORT_PCR_SRE            (uint32_t)0x00000004        // Slew Rate Enable
    #define PORT_PCR_PE         (uint32_t)0x00000002        // Pull Enable
    #define PORT_PCR_PS         (uint32_t)0x00000001        // Pull Select
    #define PORTA_PCR1              *(volatile uint32_t *)0x40049004 // Pin Control Register n
    #define PORTA_PCR2              *(volatile uint32_t *)0x40049008 // Pin Control Register n
    #define PORTA_PCR3              *(volatile uint32_t *)0x4004900C // Pin Control Register n
    #define PORTA_PCR4              *(volatile uint32_t *)0x40049010 // Pin Control Register n
    #define PORTA_PCR5              *(volatile uint32_t *)0x40049014 // Pin Control Register n
    #define PORTA_PCR6              *(volatile uint32_t *)0x40049018 // Pin Control Register n
    #define PORTA_PCR7              *(volatile uint32_t *)0x4004901C // Pin Control Register n
    #define PORTA_PCR8              *(volatile uint32_t *)0x40049020 // Pin Control Register n
    #define PORTA_PCR9              *(volatile uint32_t *)0x40049024 // Pin Control Register n
    #define PORTA_PCR10             *(volatile uint32_t *)0x40049028 // Pin Control Register n
    #define PORTA_PCR11             *(volatile uint32_t *)0x4004902C // Pin Control Register n
    #define PORTA_PCR12             *(volatile uint32_t *)0x40049030 // Pin Control Register n
    #define PORTA_PCR13             *(volatile uint32_t *)0x40049034 // Pin Control Register n
    #define PORTA_PCR14             *(volatile uint32_t *)0x40049038 // Pin Control Register n
    #define PORTA_PCR15             *(volatile uint32_t *)0x4004903C // Pin Control Register n
    #define PORTA_PCR16             *(volatile uint32_t *)0x40049040 // Pin Control Register n
    #define PORTA_PCR17             *(volatile uint32_t *)0x40049044 // Pin Control Register n
    #define PORTA_PCR18             *(volatile uint32_t *)0x40049048 // Pin Control Register n
    #define PORTA_PCR19             *(volatile uint32_t *)0x4004904C // Pin Control Register n
    #define PORTA_PCR20             *(volatile uint32_t *)0x40049050 // Pin Control Register n
    #define PORTA_PCR21             *(volatile uint32_t *)0x40049054 // Pin Control Register n
    #define PORTA_PCR22             *(volatile uint32_t *)0x40049058 // Pin Control Register n
    #define PORTA_PCR23             *(volatile uint32_t *)0x4004905C // Pin Control Register n
    #define PORTA_PCR24             *(volatile uint32_t *)0x40049060 // Pin Control Register n
    #define PORTA_PCR25             *(volatile uint32_t *)0x40049064 // Pin Control Register n
    #define PORTA_PCR26             *(volatile uint32_t *)0x40049068 // Pin Control Register n
    #define PORTA_PCR27             *(volatile uint32_t *)0x4004906C // Pin Control Register n
    #define PORTA_PCR28             *(volatile uint32_t *)0x40049070 // Pin Control Register n
    #define PORTA_PCR29             *(volatile uint32_t *)0x40049074 // Pin Control Register n
    #define PORTA_PCR30             *(volatile uint32_t *)0x40049078 // Pin Control Register n
    #define PORTA_PCR31             *(volatile uint32_t *)0x4004907C // Pin Control Register n
    #define PORTA_GPCLR             *(volatile uint32_t *)0x40049080 // Global Pin Control Low Register
    #define PORTA_GPCHR             *(volatile uint32_t *)0x40049084 // Global Pin Control High Register
    #define PORTA_ISFR              *(volatile uint32_t *)0x400490A0 // Interrupt Status Flag Register
    #define PORTB_PCR0              *(volatile uint32_t *)0x4004A000 // Pin Control Register n
    #define PORTB_PCR1              *(volatile uint32_t *)0x4004A004 // Pin Control Register n
    #define PORTB_PCR2              *(volatile uint32_t *)0x4004A008 // Pin Control Register n
    #define PORTB_PCR3              *(volatile uint32_t *)0x4004A00C // Pin Control Register n
    #define PORTB_PCR4              *(volatile uint32_t *)0x4004A010 // Pin Control Register n
    #define PORTB_PCR5              *(volatile uint32_t *)0x4004A014 // Pin Control Register n
    #define PORTB_PCR6              *(volatile uint32_t *)0x4004A018 // Pin Control Register n
    #define PORTB_PCR7              *(volatile uint32_t *)0x4004A01C // Pin Control Register n
    #define PORTB_PCR8              *(volatile uint32_t *)0x4004A020 // Pin Control Register n
    #define PORTB_PCR9              *(volatile uint32_t *)0x4004A024 // Pin Control Register n
    #define PORTB_PCR10             *(volatile uint32_t *)0x4004A028 // Pin Control Register n
    #define PORTB_PCR11             *(volatile uint32_t *)0x4004A02C // Pin Control Register n
    #define PORTB_PCR12             *(volatile uint32_t *)0x4004A030 // Pin Control Register n
    #define PORTB_PCR13             *(volatile uint32_t *)0x4004A034 // Pin Control Register n
    #define PORTB_PCR14             *(volatile uint32_t *)0x4004A038 // Pin Control Register n
    #define PORTB_PCR15             *(volatile uint32_t *)0x4004A03C // Pin Control Register n
    #define PORTB_PCR16             *(volatile uint32_t *)0x4004A040 // Pin Control Register n
    #define PORTB_PCR17             *(volatile uint32_t *)0x4004A044 // Pin Control Register n
    #define PORTB_PCR18             *(volatile uint32_t *)0x4004A048 // Pin Control Register n
    #define PORTB_PCR19             *(volatile uint32_t *)0x4004A04C // Pin Control Register n
    #define PORTB_PCR20             *(volatile uint32_t *)0x4004A050 // Pin Control Register n
    #define PORTB_PCR21             *(volatile uint32_t *)0x4004A054 // Pin Control Register n
    #define PORTB_PCR22             *(volatile uint32_t *)0x4004A058 // Pin Control Register n
    #define PORTB_PCR23             *(volatile uint32_t *)0x4004A05C // Pin Control Register n
    #define PORTB_PCR24             *(volatile uint32_t *)0x4004A060 // Pin Control Register n
    #define PORTB_PCR25             *(volatile uint32_t *)0x4004A064 // Pin Control Register n
    #define PORTB_PCR26             *(volatile uint32_t *)0x4004A068 // Pin Control Register n
    #define PORTB_PCR27             *(volatile uint32_t *)0x4004A06C // Pin Control Register n
    #define PORTB_PCR28             *(volatile uint32_t *)0x4004A070 // Pin Control Register n
    #define PORTB_PCR29             *(volatile uint32_t *)0x4004A074 // Pin Control Register n
    #define PORTB_PCR30             *(volatile uint32_t *)0x4004A078 // Pin Control Register n
    #define PORTB_PCR31             *(volatile uint32_t *)0x4004A07C // Pin Control Register n
    #define PORTB_GPCLR             *(volatile uint32_t *)0x4004A080 // Global Pin Control Low Register
    #define PORTB_GPCHR             *(volatile uint32_t *)0x4004A084 // Global Pin Control High Register
    #define PORTB_ISFR              *(volatile uint32_t *)0x4004A0A0 // Interrupt Status Flag Register
    #define PORTC_PCR0              *(volatile uint32_t *)0x4004B000 // Pin Control Register n
    #define PORTC_PCR1              *(volatile uint32_t *)0x4004B004 // Pin Control Register n
    #define PORTC_PCR2              *(volatile uint32_t *)0x4004B008 // Pin Control Register n
    #define PORTC_PCR3              *(volatile uint32_t *)0x4004B00C // Pin Control Register n
    #define PORTC_PCR4              *(volatile uint32_t *)0x4004B010 // Pin Control Register n
    #define PORTC_PCR5              *(volatile uint32_t *)0x4004B014 // Pin Control Register n
    #define PORTC_PCR6              *(volatile uint32_t *)0x4004B018 // Pin Control Register n
    #define PORTC_PCR7              *(volatile uint32_t *)0x4004B01C // Pin Control Register n
    #define PORTC_PCR8              *(volatile uint32_t *)0x4004B020 // Pin Control Register n
    #define PORTC_PCR9              *(volatile uint32_t *)0x4004B024 // Pin Control Register n
    #define PORTC_PCR10             *(volatile uint32_t *)0x4004B028 // Pin Control Register n
    #define PORTC_PCR11             *(volatile uint32_t *)0x4004B02C // Pin Control Register n
    #define PORTC_PCR12             *(volatile uint32_t *)0x4004B030 // Pin Control Register n
    #define PORTC_PCR13             *(volatile uint32_t *)0x4004B034 // Pin Control Register n
    #define PORTC_PCR14             *(volatile uint32_t *)0x4004B038 // Pin Control Register n
    #define PORTC_PCR15             *(volatile uint32_t *)0x4004B03C // Pin Control Register n
    #define PORTC_PCR16             *(volatile uint32_t *)0x4004B040 // Pin Control Register n
    #define PORTC_PCR17             *(volatile uint32_t *)0x4004B044 // Pin Control Register n
    #define PORTC_PCR18             *(volatile uint32_t *)0x4004B048 // Pin Control Register n
    #define PORTC_PCR19             *(volatile uint32_t *)0x4004B04C // Pin Control Register n
    #define PORTC_PCR20             *(volatile uint32_t *)0x4004B050 // Pin Control Register n
    #define PORTC_PCR21             *(volatile uint32_t *)0x4004B054 // Pin Control Register n
    #define PORTC_PCR22             *(volatile uint32_t *)0x4004B058 // Pin Control Register n
    #define PORTC_PCR23             *(volatile uint32_t *)0x4004B05C // Pin Control Register n
    #define PORTC_PCR24             *(volatile uint32_t *)0x4004B060 // Pin Control Register n
    #define PORTC_PCR25             *(volatile uint32_t *)0x4004B064 // Pin Control Register n
    #define PORTC_PCR26             *(volatile uint32_t *)0x4004B068 // Pin Control Register n
    #define PORTC_PCR27             *(volatile uint32_t *)0x4004B06C // Pin Control Register n
    #define PORTC_PCR28             *(volatile uint32_t *)0x4004B070 // Pin Control Register n
    #define PORTC_PCR29             *(volatile uint32_t *)0x4004B074 // Pin Control Register n
    #define PORTC_PCR30             *(volatile uint32_t *)0x4004B078 // Pin Control Register n
    #define PORTC_PCR31             *(volatile uint32_t *)0x4004B07C // Pin Control Register n
    #define PORTC_GPCLR             *(volatile uint32_t *)0x4004B080 // Global Pin Control Low Register
    #define PORTC_GPCHR             *(volatile uint32_t *)0x4004B084 // Global Pin Control High Register
    #define PORTC_ISFR              *(volatile uint32_t *)0x4004B0A0 // Interrupt Status Flag Register
    #define PORTD_PCR0              *(volatile uint32_t *)0x4004C000 // Pin Control Register n
    #define PORTD_PCR1              *(volatile uint32_t *)0x4004C004 // Pin Control Register n
    #define PORTD_PCR2              *(volatile uint32_t *)0x4004C008 // Pin Control Register n
    #define PORTD_PCR3              *(volatile uint32_t *)0x4004C00C // Pin Control Register n
    #define PORTD_PCR4              *(volatile uint32_t *)0x4004C010 // Pin Control Register n
    #define PORTD_PCR5              *(volatile uint32_t *)0x4004C014 // Pin Control Register n
    #define PORTD_PCR6              *(volatile uint32_t *)0x4004C018 // Pin Control Register n
    #define PORTD_PCR7              *(volatile uint32_t *)0x4004C01C // Pin Control Register n
    #define PORTD_PCR8              *(volatile uint32_t *)0x4004C020 // Pin Control Register n
    #define PORTD_PCR9              *(volatile uint32_t *)0x4004C024 // Pin Control Register n
    #define PORTD_PCR10             *(volatile uint32_t *)0x4004C028 // Pin Control Register n
    #define PORTD_PCR11             *(volatile uint32_t *)0x4004C02C // Pin Control Register n
    #define PORTD_PCR12             *(volatile uint32_t *)0x4004C030 // Pin Control Register n
    #define PORTD_PCR13             *(volatile uint32_t *)0x4004C034 // Pin Control Register n
    #define PORTD_PCR14             *(volatile uint32_t *)0x4004C038 // Pin Control Register n
    #define PORTD_PCR15             *(volatile uint32_t *)0x4004C03C // Pin Control Register n
    #define PORTD_PCR16             *(volatile uint32_t *)0x4004C040 // Pin Control Register n
    #define PORTD_PCR17             *(volatile uint32_t *)0x4004C044 // Pin Control Register n
    #define PORTD_PCR18             *(volatile uint32_t *)0x4004C048 // Pin Control Register n
    #define PORTD_PCR19             *(volatile uint32_t *)0x4004C04C // Pin Control Register n
    #define PORTD_PCR20             *(volatile uint32_t *)0x4004C050 // Pin Control Register n
    #define PORTD_PCR21             *(volatile uint32_t *)0x4004C054 // Pin Control Register n
    #define PORTD_PCR22             *(volatile uint32_t *)0x4004C058 // Pin Control Register n
    #define PORTD_PCR23             *(volatile uint32_t *)0x4004C05C // Pin Control Register n
    #define PORTD_PCR24             *(volatile uint32_t *)0x4004C060 // Pin Control Register n
    #define PORTD_PCR25             *(volatile uint32_t *)0x4004C064 // Pin Control Register n
    #define PORTD_PCR26             *(volatile uint32_t *)0x4004C068 // Pin Control Register n
    #define PORTD_PCR27             *(volatile uint32_t *)0x4004C06C // Pin Control Register n
    #define PORTD_PCR28             *(volatile uint32_t *)0x4004C070 // Pin Control Register n
    #define PORTD_PCR29             *(volatile uint32_t *)0x4004C074 // Pin Control Register n
    #define PORTD_PCR30             *(volatile uint32_t *)0x4004C078 // Pin Control Register n
    #define PORTD_PCR31             *(volatile uint32_t *)0x4004C07C // Pin Control Register n
    #define PORTD_GPCLR             *(volatile uint32_t *)0x4004C080 // Global Pin Control Low Register
    #define PORTD_GPCHR             *(volatile uint32_t *)0x4004C084 // Global Pin Control High Register
    #define PORTD_ISFR              *(volatile uint32_t *)0x4004C0A0 // Interrupt Status Flag Register
    #define PORTE_PCR0              *(volatile uint32_t *)0x4004D000 // Pin Control Register n
    #define PORTE_PCR1              *(volatile uint32_t *)0x4004D004 // Pin Control Register n
    #define PORTE_PCR2              *(volatile uint32_t *)0x4004D008 // Pin Control Register n
    #define PORTE_PCR3              *(volatile uint32_t *)0x4004D00C // Pin Control Register n
    #define PORTE_PCR4              *(volatile uint32_t *)0x4004D010 // Pin Control Register n
    #define PORTE_PCR5              *(volatile uint32_t *)0x4004D014 // Pin Control Register n
    #define PORTE_PCR6              *(volatile uint32_t *)0x4004D018 // Pin Control Register n
    #define PORTE_PCR7              *(volatile uint32_t *)0x4004D01C // Pin Control Register n
    #define PORTE_PCR8              *(volatile uint32_t *)0x4004D020 // Pin Control Register n
    #define PORTE_PCR9              *(volatile uint32_t *)0x4004D024 // Pin Control Register n
    #define PORTE_PCR10             *(volatile uint32_t *)0x4004D028 // Pin Control Register n
    #define PORTE_PCR11             *(volatile uint32_t *)0x4004D02C // Pin Control Register n
    #define PORTE_PCR12             *(volatile uint32_t *)0x4004D030 // Pin Control Register n
    #define PORTE_PCR13             *(volatile uint32_t *)0x4004D034 // Pin Control Register n
    #define PORTE_PCR14             *(volatile uint32_t *)0x4004D038 // Pin Control Register n
    #define PORTE_PCR15             *(volatile uint32_t *)0x4004D03C // Pin Control Register n
    #define PORTE_PCR16             *(volatile uint32_t *)0x4004D040 // Pin Control Register n
    #define PORTE_PCR17             *(volatile uint32_t *)0x4004D044 // Pin Control Register n
    #define PORTE_PCR18             *(volatile uint32_t *)0x4004D048 // Pin Control Register n
    #define PORTE_PCR19             *(volatile uint32_t *)0x4004D04C // Pin Control Register n
    #define PORTE_PCR20             *(volatile uint32_t *)0x4004D050 // Pin Control Register n
    #define PORTE_PCR21             *(volatile uint32_t *)0x4004D054 // Pin Control Register n
    #define PORTE_PCR22             *(volatile uint32_t *)0x4004D058 // Pin Control Register n
    #define PORTE_PCR23             *(volatile uint32_t *)0x4004D05C // Pin Control Register n
    #define PORTE_PCR24             *(volatile uint32_t *)0x4004D060 // Pin Control Register n
    #define PORTE_PCR25             *(volatile uint32_t *)0x4004D064 // Pin Control Register n
    #define PORTE_PCR26             *(volatile uint32_t *)0x4004D068 // Pin Control Register n
    #define PORTE_PCR27             *(volatile uint32_t *)0x4004D06C // Pin Control Register n
    #define PORTE_PCR28             *(volatile uint32_t *)0x4004D070 // Pin Control Register n
    #define PORTE_PCR29             *(volatile uint32_t *)0x4004D074 // Pin Control Register n
    #define PORTE_PCR30             *(volatile uint32_t *)0x4004D078 // Pin Control Register n
    #define PORTE_PCR31             *(volatile uint32_t *)0x4004D07C // Pin Control Register n
    #define PORTE_GPCLR             *(volatile uint32_t *)0x4004D080 // Global Pin Control Low Register
    #define PORTE_GPCHR             *(volatile uint32_t *)0x4004D084 // Global Pin Control High Register
    #define PORTE_ISFR              *(volatile uint32_t *)0x4004D0A0 // Interrupt Status Flag Register
    
    // Chapter 12: System Integration Module (SIM)
    #define SIM_SOPT1               *(volatile uint32_t *)0x40047000 // System Options Register 1
    #define SIM_SOPT1CFG            *(volatile uint32_t *)0x40047004 // SOPT1 Configuration Register
    #define SIM_SOPT2               *(volatile uint32_t *)0x40048004 // System Options Register 2
    #define SIM_SOPT2_USBSRC        (uint32_t)0x00040000        // 0=USB_CLKIN, 1=FFL/PLL 
    #define SIM_SOPT2_PLLFLLSEL     (uint32_t)0x00010000        // 0=FLL, 1=PLL
    #define SIM_SOPT2_TRACECLKSEL       (uint32_t)0x00001000        // 0=MCGOUTCLK, 1=CPU
    #define SIM_SOPT2_PTD7PAD       (uint32_t)0x00000800        // 0=normal, 1=double drive PTD7
    #define SIM_SOPT2_CLKOUTSEL(n)      (uint32_t)(((n) & 7) << 5)  // Selects the clock to output on the CLKOUT pin.
    #define SIM_SOPT2_RTCCLKOUTSEL      (uint32_t)0x00000010        // RTC clock out select
    #define SIM_SOPT4               *(volatile uint32_t *)0x4004800C // System Options Register 4
    #define SIM_SOPT5               *(volatile uint32_t *)0x40048010 // System Options Register 5
    #define SIM_SOPT7               *(volatile uint32_t *)0x40048018 // System Options Register 7
    #define SIM_SDID                *(const    uint32_t *)0x40048024 // System Device Identification Register
    #define SIM_SCGC4               *(volatile uint32_t *)0x40048034 // System Clock Gating Control Register 4
    #define SIM_SCGC4_VREF          (uint32_t)0x00100000        // VREF Clock Gate Control
    #define SIM_SCGC4_CMP           (uint32_t)0x00080000        // Comparator Clock Gate Control
    #define SIM_SCGC4_USBOTG        (uint32_t)0x00040000        // USB Clock Gate Control
    #define SIM_SCGC4_UART2         (uint32_t)0x00001000        // UART2 Clock Gate Control
    #define SIM_SCGC4_UART1         (uint32_t)0x00000800        // UART1 Clock Gate Control
    #define SIM_SCGC4_UART0         (uint32_t)0x00000400        // UART0 Clock Gate Control
    #define SIM_SCGC4_I2C0          (uint32_t)0x00000040        // I2C0 Clock Gate Control
    #define SIM_SCGC4_CMT           (uint32_t)0x00000004        // CMT Clock Gate Control
    #define SIM_SCGC4_EWM           (uint32_t)0x00000002        // EWM Clock Gate Control
    #define SIM_SCGC5               *(volatile uint32_t *)0x40048038 // System Clock Gating Control Register 5
    #define SIM_SCGC5_PORTE         (uint32_t)0x00002000        // Port E Clock Gate Control
    #define SIM_SCGC5_PORTD         (uint32_t)0x00001000        // Port D Clock Gate Control
    #define SIM_SCGC5_PORTC         (uint32_t)0x00000800        // Port C Clock Gate Control
    #define SIM_SCGC5_PORTB         (uint32_t)0x00000400        // Port B Clock Gate Control
    #define SIM_SCGC5_PORTA         (uint32_t)0x00000200        // Port A Clock Gate Control
    #define SIM_SCGC5_TSI           (uint32_t)0x00000020        // Touch Sense Input TSI Clock Gate Control
    #define SIM_SCGC5_LPTIMER       (uint32_t)0x00000001        // Low Power Timer Access Control
    #define SIM_SCGC6               *(volatile uint32_t *)0x4004803C // System Clock Gating Control Register 6
    #define SIM_SCGC6_RTC           (uint32_t)0x20000000        // RTC Access
    #define SIM_SCGC6_ADC0          (uint32_t)0x08000000        // ADC0 Clock Gate Control
    #define SIM_SCGC6_FTM1          (uint32_t)0x02000000        // FTM1 Clock Gate Control
    #define SIM_SCGC6_FTM0          (uint32_t)0x01000000        // FTM0 Clock Gate Control
    #define SIM_SCGC6_PIT           (uint32_t)0x00800000        // PIT Clock Gate Control
    #define SIM_SCGC6_PDB           (uint32_t)0x00400000        // PDB Clock Gate Control
    #define SIM_SCGC6_USBDCD        (uint32_t)0x00200000        // USB DCD Clock Gate Control
    #define SIM_SCGC6_CRC           (uint32_t)0x00040000        // CRC Clock Gate Control
    #define SIM_SCGC6_I2S           (uint32_t)0x00008000        // I2S Clock Gate Control
    #define SIM_SCGC6_SPI0          (uint32_t)0x00001000        // SPI0 Clock Gate Control
    #define SIM_SCGC6_DMAMUX        (uint32_t)0x00000002        // DMA Mux Clock Gate Control
    #define SIM_SCGC6_FTFL          (uint32_t)0x00000001        // Flash Memory Clock Gate Control
    #define SIM_SCGC7               *(volatile uint32_t *)0x40048040 // System Clock Gating Control Register 7
    #define SIM_SCGC7_DMA           (uint32_t)0x00000020        // DMA Clock Gate Control
    #define SIM_CLKDIV1             *(volatile uint32_t *)0x40048044 // System Clock Divider Register 1
    #define SIM_CLKDIV1_OUTDIV1(n)      (uint32_t)(((n) & 0x0F) << 28)  // divide value for the core/system clock
    #define SIM_CLKDIV1_OUTDIV2(n)      (uint32_t)(((n) & 0x0F) << 24)  // divide value for the peripheral clock
    #define SIM_CLKDIV1_OUTDIV4(n)      (uint32_t)(((n) & 0x0F) << 16)  // divide value for the flash clock
    #define SIM_CLKDIV2             *(volatile uint32_t *)0x40048048 // System Clock Divider Register 2
    #define SIM_CLKDIV2_USBDIV(n)       (uint32_t)(((n) & 0x07) << 1)
    #define SIM_CLKDIV2_USBFRAC     (uint32_t)0x01
    #define SIM_FCFG1               *(const    uint32_t *)0x4004804C // Flash Configuration Register 1
    #define SIM_FCFG2               *(const    uint32_t *)0x40048050 // Flash Configuration Register 2
    #define SIM_UIDH                *(const    uint32_t *)0x40048054 // Unique Identification Register High
    #define SIM_UIDMH               *(const    uint32_t *)0x40048058 // Unique Identification Register Mid-High
    #define SIM_UIDML               *(const    uint32_t *)0x4004805C // Unique Identification Register Mid Low
    #define SIM_UIDL                *(const    uint32_t *)0x40048060 // Unique Identification Register Low
    
    // Chapter 13: Reset Control Module (RCM)
    #define RCM_SRS0                *(volatile uint8_t  *)0x4007F000 // System Reset Status Register 0
    #define RCM_SRS1                *(volatile uint8_t  *)0x4007F001 // System Reset Status Register 1
    #define RCM_RPFC                *(volatile uint8_t  *)0x4007F004 // Reset Pin Filter Control Register
    #define RCM_RPFW                *(volatile uint8_t  *)0x4007F005 // Reset Pin Filter Width Register
    #define RCM_MR                  *(volatile uint8_t  *)0x4007F007 // Mode Register
    
    // Chapter 14: System Mode Controller
    #define SMC_PMPROT              *(volatile uint8_t  *)0x4007E000 // Power Mode Protection Register
    #define SMC_PMPROT_AVLP         (uint8_t)0x20           // Allow very low power modes
    #define SMC_PMPROT_ALLS         (uint8_t)0x08           // Allow low leakage stop mode
    #define SMC_PMPROT_AVLLS        (uint8_t)0x02           // Allow very low leakage stop mode
    #define SMC_PMCTRL              *(volatile uint8_t  *)0x4007E001 // Power Mode Control Register
    #define SMC_PMCTRL_LPWUI        (uint8_t)0x80           // Low Power Wake Up on Interrupt
    #define SMC_PMCTRL_RUNM(n)      (uint8_t)(((n) & 0x03) << 5)    // Run Mode Control
    #define SMC_PMCTRL_STOPA        (uint8_t)0x08           // Stop Aborted
    #define SMC_PMCTRL_STOPM(n)     (uint8_t)((n) & 0x07)       // Stop Mode Control
    #define SMC_VLLSCTRL            *(volatile uint8_t  *)0x4007E002 // VLLS Control Register
    #define SMC_VLLSCTRL_PORPO      (uint8_t)0x20           // POR Power Option
    #define SMC_VLLSCTRL_VLLSM(n)       (uint8_t)((n) & 0x07)       // VLLS Mode Control
    #define SMC_PMSTAT              *(volatile uint8_t  *)0x4007E003 // Power Mode Status Register
    #define SMC_PMSTAT_RUN          (uint8_t)0x01           // Current power mode is RUN
    #define SMC_PMSTAT_STOP         (uint8_t)0x02           // Current power mode is STOP
    #define SMC_PMSTAT_VLPR         (uint8_t)0x04           // Current power mode is VLPR
    #define SMC_PMSTAT_VLPW         (uint8_t)0x08           // Current power mode is VLPW
    #define SMC_PMSTAT_VLPS         (uint8_t)0x10           // Current power mode is VLPS
    #define SMC_PMSTAT_LLS          (uint8_t)0x20           // Current power mode is LLS
    #define SMC_PMSTAT_VLLS         (uint8_t)0x40           // Current power mode is VLLS
    
    // Chapter 15: Power Management Controller
    #define PMC_LVDSC1              *(volatile uint8_t  *)0x4007D000 // Low Voltage Detect Status And Control 1 register
    #define PMC_LVDSC1_LVDF         (uint8_t)0x80           // Low-Voltage Detect Flag
    #define PMC_LVDSC1_LVDACK       (uint8_t)0x40           // Low-Voltage Detect Acknowledge
    #define PMC_LVDSC1_LVDIE        (uint8_t)0x20           // Low-Voltage Detect Interrupt Enable
    #define PMC_LVDSC1_LVDRE        (uint8_t)0x10           // Low-Voltage Detect Reset Enable
    #define PMC_LVDSC1_LVDV(n)      (uint8_t)((n) & 0x03)       // Low-Voltage Detect Voltage Select
    #define PMC_LVDSC2              *(volatile uint8_t  *)0x4007D001 // Low Voltage Detect Status And Control 2 register
    #define PMC_LVDSC2_LVWF         (uint8_t)0x80           // Low-Voltage Warning Flag
    #define PMC_LVDSC2_LVWACK       (uint8_t)0x40           // Low-Voltage Warning Acknowledge
    #define PMC_LVDSC2_LVWIE        (uint8_t)0x20           // Low-Voltage Warning Interrupt Enable
    #define PMC_LVDSC2_LVWV(n)      (uint8_t)((n) & 0x03)       // Low-Voltage Warning Voltage Select
    #define PMC_REGSC               *(volatile uint8_t  *)0x4007D002 // Regulator Status And Control register
    #define PMC_REGSC_BGEN          (uint8_t)0x10           // Bandgap Enable In VLPx Operation
    #define PMC_REGSC_ACKISO        (uint8_t)0x08           // Acknowledge Isolation
    #define PMC_REGSC_REGONS        (uint8_t)0x04           // Regulator In Run Regulation Status
    #define PMC_REGSC_BGBE          (uint8_t)0x01           // Bandgap Buffer Enable
    
    // Chapter 16: Low-Leakage Wakeup Unit (LLWU)
    #define LLWU_PE1                *(volatile uint8_t  *)0x4007C000 // LLWU Pin Enable 1 register
    #define LLWU_PE2                *(volatile uint8_t  *)0x4007C001 // LLWU Pin Enable 2 register
    #define LLWU_PE3                *(volatile uint8_t  *)0x4007C002 // LLWU Pin Enable 3 register
    #define LLWU_PE4                *(volatile uint8_t  *)0x4007C003 // LLWU Pin Enable 4 register
    #define LLWU_ME                 *(volatile uint8_t  *)0x4007C004 // LLWU Module Enable register
    #define LLWU_F1                 *(volatile uint8_t  *)0x4007C005 // LLWU Flag 1 register
    #define LLWU_F2                 *(volatile uint8_t  *)0x4007C006 // LLWU Flag 2 register
    #define LLWU_F3                 *(volatile uint8_t  *)0x4007C007 // LLWU Flag 3 register
    #define LLWU_FILT1              *(volatile uint8_t  *)0x4007C008 // LLWU Pin Filter 1 register
    #define LLWU_FILT2              *(volatile uint8_t  *)0x4007C009 // LLWU Pin Filter 2 register
    #define LLWU_RST                *(volatile uint8_t  *)0x4007C00A // LLWU Reset Enable register
    
    // Chapter 17: Miscellaneous Control Module (MCM)
    #define MCM_PLASC               *(volatile uint16_t *)0xE0080008 // Crossbar Switch (AXBS) Slave Configuration
    #define MCM_PLAMC               *(volatile uint16_t *)0xE008000A // Crossbar Switch (AXBS) Master Configuration
    #define MCM_PLACR               *(volatile uint32_t *)0xE008000C // Crossbar Switch (AXBS) Control Register
    
    // Chapter 20: Direct Memory Access Multiplexer (DMAMUX)
    #define DMAMUX0_CHCFG0          *(volatile uint8_t  *)0x40021000 // Channel Configuration register
    #define DMAMUX0_CHCFG1          *(volatile uint8_t  *)0x40021001 // Channel Configuration register
    #define DMAMUX0_CHCFG2          *(volatile uint8_t  *)0x40021002 // Channel Configuration register
    #define DMAMUX0_CHCFG3          *(volatile uint8_t  *)0x40021003 // Channel Configuration register
    #define DMAMUX0_CHCFG4          *(volatile uint8_t  *)0x40021004 // Channel Configuration register
    #define DMAMUX0_CHCFG5          *(volatile uint8_t  *)0x40021005 // Channel Configuration register
    #define DMAMUX0_CHCFG6          *(volatile uint8_t  *)0x40021006 // Channel Configuration register
    #define DMAMUX0_CHCFG7          *(volatile uint8_t  *)0x40021007 // Channel Configuration register
    #define DMAMUX0_CHCFG8          *(volatile uint8_t  *)0x40021008 // Channel Configuration register
    #define DMAMUX0_CHCFG9          *(volatile uint8_t  *)0x40021009 // Channel Configuration register
    #define DMAMUX0_CHCFG10         *(volatile uint8_t  *)0x4002100A // Channel Configuration register
    #define DMAMUX0_CHCFG11         *(volatile uint8_t  *)0x4002100B // Channel Configuration register
    #define DMAMUX0_CHCFG12         *(volatile uint8_t  *)0x4002100C // Channel Configuration register
    #define DMAMUX0_CHCFG13         *(volatile uint8_t  *)0x4002100D // Channel Configuration register
    #define DMAMUX0_CHCFG14         *(volatile uint8_t  *)0x4002100E // Channel Configuration register
    #define DMAMUX0_CHCFG15         *(volatile uint8_t  *)0x4002100F // Channel Configuration register
    #define DMAMUX_DISABLE          0
    #define DMAMUX_TRIG         64
    #define DMAMUX_ENABLE           128
    #define DMAMUX_SOURCE_UART0_RX      2
    #define DMAMUX_SOURCE_UART0_TX      3
    #define DMAMUX_SOURCE_UART1_RX      4
    #define DMAMUX_SOURCE_UART1_TX      5
    #define DMAMUX_SOURCE_UART2_RX      6
    #define DMAMUX_SOURCE_UART2_TX      7
    #define DMAMUX_SOURCE_I2S0_RX       14
    #define DMAMUX_SOURCE_I2S0_TX       15
    #define DMAMUX_SOURCE_SPI0_RX       16
    #define DMAMUX_SOURCE_SPI0_TX       17
    #define DMAMUX_SOURCE_I2C0      22
    #define DMAMUX_SOURCE_FTM0_CH0      24
    #define DMAMUX_SOURCE_FTM0_CH1      25
    #define DMAMUX_SOURCE_FTM0_CH2      26
    #define DMAMUX_SOURCE_FTM0_CH3      27
    #define DMAMUX_SOURCE_FTM0_CH4      28
    #define DMAMUX_SOURCE_FTM0_CH5      29
    #define DMAMUX_SOURCE_FTM0_CH6      30
    #define DMAMUX_SOURCE_FTM0_CH7      31
    #define DMAMUX_SOURCE_FTM1_CH0      32
    #define DMAMUX_SOURCE_FTM1_CH1      33
    #define DMAMUX_SOURCE_ADC0      40
    #define DMAMUX_SOURCE_CMP0      42
    #define DMAMUX_SOURCE_CMP1      43
    #define DMAMUX_SOURCE_CMT       47
    #define DMAMUX_SOURCE_PDB       48
    #define DMAMUX_SOURCE_PORTA     49
    #define DMAMUX_SOURCE_PORTB     50
    #define DMAMUX_SOURCE_PORTC     51
    #define DMAMUX_SOURCE_PORTD     52
    #define DMAMUX_SOURCE_PORTE     53
    #define DMAMUX_SOURCE_ALWAYS0       54
    #define DMAMUX_SOURCE_ALWAYS1       55
    #define DMAMUX_SOURCE_ALWAYS2       56
    #define DMAMUX_SOURCE_ALWAYS3       57
    #define DMAMUX_SOURCE_ALWAYS4       58
    #define DMAMUX_SOURCE_ALWAYS5       59
    #define DMAMUX_SOURCE_ALWAYS6       60
    #define DMAMUX_SOURCE_ALWAYS7       61
    #define DMAMUX_SOURCE_ALWAYS8       62
    #define DMAMUX_SOURCE_ALWAYS9       63
    
    // Chapter 21: Direct Memory Access Controller (eDMA)
    #define DMA_CR                  *(volatile uint32_t *)0x40008000 // Control Register
    #define DMA_ES                  *(volatile uint32_t *)0x40008004 // Error Status Register
    #define DMA_ERQ                 *(volatile uint32_t *)0x4000800C // Enable Request Register
    #define DMA_EEI                 *(volatile uint32_t *)0x40008014 // Enable Error Interrupt Register
    #define DMA_CEEI                *(volatile uint8_t  *)0x40008018 // Clear Enable Error Interrupt Register
    #define DMA_SEEI                *(volatile uint8_t  *)0x40008019 // Set Enable Error Interrupt Register
    #define DMA_CERQ                *(volatile uint8_t  *)0x4000801A // Clear Enable Request Register
    #define DMA_SERQ                *(volatile uint8_t  *)0x4000801B // Set Enable Request Register
    #define DMA_CDNE                *(volatile uint8_t  *)0x4000801C // Clear DONE Status Bit Register
    #define DMA_SSRT                *(volatile uint8_t  *)0x4000801D // Set START Bit Register
    #define DMA_CERR                *(volatile uint8_t  *)0x4000801E // Clear Error Register
    #define DMA_CINT                *(volatile uint8_t  *)0x4000801F // Clear Interrupt Request Register
    #define DMA_INT                 *(volatile uint32_t *)0x40008024 // Interrupt Request Register
    #define DMA_ERR                 *(volatile uint32_t *)0x4000802C // Error Register
    #define DMA_HRS                 *(volatile uint32_t *)0x40008034 // Hardware Request Status Register
    #define DMA_DCHPRI3             *(volatile uint8_t  *)0x40008100 // Channel n Priority Register
    #define DMA_DCHPRI2             *(volatile uint8_t  *)0x40008101 // Channel n Priority Register
    #define DMA_DCHPRI1             *(volatile uint8_t  *)0x40008102 // Channel n Priority Register
    #define DMA_DCHPRI0             *(volatile uint8_t  *)0x40008103 // Channel n Priority Register
    
    #define DMA_TCD_ATTR_SMOD(n)        (((n) & 0x1F) << 11)
    #define DMA_TCD_ATTR_SSIZE(n)       (((n) & 0x7) << 8)
    #define DMA_TCD_ATTR_DMOD(n)        (((n) & 0x1F) << 3)
    #define DMA_TCD_ATTR_DSIZE(n)       (((n) & 0x7) << 0)
    #define DMA_TCD_ATTR_SIZE_8BIT      0
    #define DMA_TCD_ATTR_SIZE_16BIT     1
    #define DMA_TCD_ATTR_SIZE_32BIT     2
    #define DMA_TCD_ATTR_SIZE_16BYTE    4
    #define DMA_TCD_ATTR_SIZE_32BYTE    5
    #define DMA_TCD_CSR_BWC(n)      (((n) & 0x3) << 14)
    #define DMA_TCD_CSR_MAJORLINKCH(n)  (((n) & 0x3) << 8)
    #define DMA_TCD_CSR_DONE        0x0080
    #define DMA_TCD_CSR_ACTIVE      0x0040
    #define DMA_TCD_CSR_MAJORELINK      0x0020
    #define DMA_TCD_CSR_ESG         0x0010
    #define DMA_TCD_CSR_DREQ        0x0008
    #define DMA_TCD_CSR_INTHALF     0x0004
    #define DMA_TCD_CSR_INTMAJOR        0x0002
    #define DMA_TCD_CSR_START       0x0001
    
    #define DMA_TCD0_SADDR          *(volatile const void * volatile *)0x40009000 // TCD Source Address
    #define DMA_TCD0_SOFF           *(volatile int16_t *)0x40009004  // TCD Signed Source Address Offset
    #define DMA_TCD0_ATTR           *(volatile uint16_t *)0x40009006 // TCD Transfer Attributes
    #define DMA_TCD0_NBYTES_MLNO    *(volatile uint32_t *)0x40009008 // TCD Minor Byte Count (Minor Loop Disabled)
    #define DMA_TCD0_NBYTES_MLOFFNO *(volatile uint32_t *)0x40009008 // TCD Signed Minor Loop Offset (Minor Loop Enabled and Offset Disabled)
    #define DMA_TCD0_NBYTES_MLOFFYES *(volatile uint32_t *)0x40009008 // TCD Signed Minor Loop Offset (Minor Loop and Offset Enabled)
    #define DMA_TCD0_SLAST          *(volatile int32_t *)0x4000900C  // TCD Last Source Address Adjustment
    #define DMA_TCD0_DADDR          *(volatile void * volatile *)0x40009010 // TCD Destination Address
    #define DMA_TCD0_DOFF           *(volatile int16_t *)0x40009014  // TCD Signed Destination Address Offset
    #define DMA_TCD0_CITER_ELINKYES *(volatile uint16_t *)0x40009016 // TCD Current Minor Loop Link, Major Loop Count, Channel Linking Enabled
    #define DMA_TCD0_CITER_ELINKNO  *(volatile uint16_t *)0x40009016 // ??
    #define DMA_TCD0_DLASTSGA       *(volatile int32_t *)0x40009018  // TCD Last Destination Address Adjustment/Scatter Gather Address
    #define DMA_TCD0_CSR            *(volatile uint16_t *)0x4000901C // TCD Control and Status
    #define DMA_TCD0_BITER_ELINKYES *(volatile uint16_t *)0x4000901E // TCD Beginning Minor Loop Link, Major Loop Count, Channel Linking Enabled
    #define DMA_TCD0_BITER_ELINKNO  *(volatile uint16_t *)0x4000901E // TCD Beginning Minor Loop Link, Major Loop Count, Channel Linking Disabled
    
    #define DMA_TCD1_SADDR          *(volatile const void * volatile *)0x40009020 // TCD Source Address
    #define DMA_TCD1_SOFF           *(volatile int16_t *)0x40009024  // TCD Signed Source Address Offset
    #define DMA_TCD1_ATTR           *(volatile uint16_t *)0x40009026 // TCD Transfer Attributes
    #define DMA_TCD1_NBYTES_MLNO    *(volatile uint32_t *)0x40009028 // TCD Minor Byte Count, Minor Loop Disabled
    #define DMA_TCD1_NBYTES_MLOFFNO *(volatile uint32_t *)0x40009028 // TCD Signed Minor Loop Offset, Minor Loop Enabled and Offset Disabled
    #define DMA_TCD1_NBYTES_MLOFFYES *(volatile uint32_t *)0x40009028 // TCD Signed Minor Loop Offset, Minor Loop and Offset Enabled
    #define DMA_TCD1_SLAST          *(volatile int32_t *)0x4000902C  // TCD Last Source Address Adjustment
    #define DMA_TCD1_DADDR          *(volatile void * volatile *)0x40009030 // TCD Destination Address
    #define DMA_TCD1_DOFF           *(volatile int16_t *)0x40009034  // TCD Signed Destination Address Offset
    #define DMA_TCD1_CITER_ELINKYES *(volatile uint16_t *)0x40009036 // TCD Current Minor Loop Link, Major Loop Count, Channel Linking Enabled
    #define DMA_TCD1_CITER_ELINKNO  *(volatile uint16_t *)0x40009036 // ??
    #define DMA_TCD1_DLASTSGA       *(volatile int32_t *)0x40009038  // TCD Last Destination Address Adjustment/Scatter Gather Address
    #define DMA_TCD1_CSR            *(volatile uint16_t *)0x4000903C // TCD Control and Status
    #define DMA_TCD1_BITER_ELINKYES *(volatile uint16_t *)0x4000903E // TCD Beginning Minor Loop Link, Major Loop Count Channel Linking Enabled
    #define DMA_TCD1_BITER_ELINKNO  *(volatile uint16_t *)0x4000903E // TCD Beginning Minor Loop Link, Major Loop Count, Channel Linking Disabled
    
    #define DMA_TCD2_SADDR          *(volatile const void * volatile *)0x40009040 // TCD Source Address
    #define DMA_TCD2_SOFF           *(volatile int16_t *)0x40009044  // TCD Signed Source Address Offset
    #define DMA_TCD2_ATTR           *(volatile uint16_t *)0x40009046 // TCD Transfer Attributes
    #define DMA_TCD2_NBYTES_MLNO    *(volatile uint32_t *)0x40009048 // TCD Minor Byte Count, Minor Loop Disabled
    #define DMA_TCD2_NBYTES_MLOFFNO *(volatile uint32_t *)0x40009048 // TCD Signed Minor Loop Offset, Minor Loop Enabled and Offset Disabled
    #define DMA_TCD2_NBYTES_MLOFFYES *(volatile uint32_t *)0x40009048 // TCD Signed Minor Loop Offset, Minor Loop and Offset Enabled
    #define DMA_TCD2_SLAST          *(volatile int32_t *)0x4000904C  // TCD Last Source Address Adjustment
    #define DMA_TCD2_DADDR          *(volatile void * volatile *)0x40009050 // TCD Destination Address
    #define DMA_TCD2_DOFF           *(volatile int16_t *)0x40009054  // TCD Signed Destination Address Offset
    #define DMA_TCD2_CITER_ELINKYES *(volatile uint16_t *)0x40009056 // TCD Current Minor Loop Link, Major Loop Count, Channel Linking Enabled
    #define DMA_TCD2_CITER_ELINKNO  *(volatile uint16_t *)0x40009056 // ??
    #define DMA_TCD2_DLASTSGA       *(volatile int32_t *)0x40009058  // TCD Last Destination Address Adjustment/Scatter Gather Address
    #define DMA_TCD2_CSR            *(volatile uint16_t *)0x4000905C // TCD Control and Status
    #define DMA_TCD2_BITER_ELINKYES *(volatile uint16_t *)0x4000905E // TCD Beginning Minor Loop Link, Major Loop Count, Channel Linking Enabled
    #define DMA_TCD2_BITER_ELINKNO  *(volatile uint16_t *)0x4000905E // TCD Beginning Minor Loop Link, Major Loop Count, Channel Linking Disabled
    
    #define DMA_TCD3_SADDR          *(volatile const void * volatile *)0x40009060 // TCD Source Address
    #define DMA_TCD3_SOFF           *(volatile int16_t *)0x40009064  // TCD Signed Source Address Offset
    #define DMA_TCD3_ATTR           *(volatile uint16_t *)0x40009066 // TCD Transfer Attributes
    #define DMA_TCD3_NBYTES_MLNO    *(volatile uint32_t *)0x40009068 // TCD Minor Byte Count, Minor Loop Disabled
    #define DMA_TCD3_NBYTES_MLOFFNO *(volatile uint32_t *)0x40009068 // TCD Signed Minor Loop Offset, Minor Loop Enabled and Offset Disabled
    #define DMA_TCD3_NBYTES_MLOFFYES *(volatile uint32_t *)0x40009068 // TCD Signed Minor Loop Offset, Minor Loop and Offset Enabled
    #define DMA_TCD3_SLAST          *(volatile int32_t *)0x4000906C  // TCD Last Source Address Adjustment
    #define DMA_TCD3_DADDR          *(volatile void * volatile *)0x40009070 // TCD Destination Address
    #define DMA_TCD3_DOFF           *(volatile int16_t *)0x40009074  // TCD Signed Destination Address Offset
    #define DMA_TCD3_CITER_ELINKYES *(volatile uint16_t *)0x40009076 // TCD Current Minor Loop Link, Major Loop Count, Channel Linking Enabled
    #define DMA_TCD3_CITER_ELINKNO  *(volatile uint16_t *)0x40009076 // ??
    #define DMA_TCD3_DLASTSGA       *(volatile int32_t *)0x40009078  // TCD Last Destination Address Adjustment/Scatter Gather Address
    #define DMA_TCD3_CSR            *(volatile uint16_t *)0x4000907C // TCD Control and Status
    #define DMA_TCD3_BITER_ELINKYES *(volatile uint16_t *)0x4000907E // TCD Beginning Minor Loop Link, Major Loop Count ,Channel Linking Enabled
    #define DMA_TCD3_BITER_ELINKNO  *(volatile uint16_t *)0x4000907E // TCD Beginning Minor Loop Link, Major Loop Count ,Channel Linking Disabled
    
    // Chapter 22: External Watchdog Monitor (EWM)
    #define EWM_CTRL                *(volatile uint8_t  *)0x40061000 // Control Register
    #define EWM_SERV                *(volatile uint8_t  *)0x40061001 // Service Register
    #define EWM_CMPL                *(volatile uint8_t  *)0x40061002 // Compare Low Register
    #define EWM_CMPH                *(volatile uint8_t  *)0x40061003 // Compare High Register
    
    // Chapter 23: Watchdog Timer (WDOG)
    #define WDOG_STCTRLH            *(volatile uint16_t *)0x40052000 // Watchdog Status and Control Register High
    #define WDOG_STCTRLH_DISTESTWDOG    (uint16_t)0x4000        // Allows the WDOG's functional test mode to be disabled permanently.
    #define WDOG_STCTRLH_BYTESEL(n)     (uint16_t)(((n) & 3) << 12) // selects the byte to be tested when the watchdog is in the byte test mode.
    #define WDOG_STCTRLH_TESTSEL        (uint16_t)0x0800
    #define WDOG_STCTRLH_TESTWDOG       (uint16_t)0x0400
    #define WDOG_STCTRLH_WAITEN     (uint16_t)0x0080
    #define WDOG_STCTRLH_STOPEN     (uint16_t)0x0040
    #define WDOG_STCTRLH_DBGEN      (uint16_t)0x0020
    #define WDOG_STCTRLH_ALLOWUPDATE    (uint16_t)0x0010
    #define WDOG_STCTRLH_WINEN      (uint16_t)0x0008
    #define WDOG_STCTRLH_IRQRSTEN       (uint16_t)0x0004
    #define WDOG_STCTRLH_CLKSRC     (uint16_t)0x0002
    #define WDOG_STCTRLH_WDOGEN     (uint16_t)0x0001
    #define WDOG_STCTRLL            *(volatile uint16_t *)0x40052002 // Watchdog Status and Control Register Low
    #define WDOG_TOVALH             *(volatile uint16_t *)0x40052004 // Watchdog Time-out Value Register High
    #define WDOG_TOVALL             *(volatile uint16_t *)0x40052006 // Watchdog Time-out Value Register Low
    #define WDOG_WINH               *(volatile uint16_t *)0x40052008 // Watchdog Window Register High
    #define WDOG_WINL               *(volatile uint16_t *)0x4005200A // Watchdog Window Register Low
    #define WDOG_REFRESH            *(volatile uint16_t *)0x4005200C // Watchdog Refresh register
    #define WDOG_UNLOCK             *(volatile uint16_t *)0x4005200E // Watchdog Unlock register
    #define WDOG_UNLOCK_SEQ1        (uint16_t)0xC520
    #define WDOG_UNLOCK_SEQ2        (uint16_t)0xD928
    #define WDOG_TMROUTH            *(volatile uint16_t *)0x40052010 // Watchdog Timer Output Register High
    #define WDOG_TMROUTL            *(volatile uint16_t *)0x40052012 // Watchdog Timer Output Register Low
    #define WDOG_RSTCNT             *(volatile uint16_t *)0x40052014 // Watchdog Reset Count register
    #define WDOG_PRESC              *(volatile uint16_t *)0x40052016 // Watchdog Prescaler register
    
    // Chapter 24: Multipurpose Clock Generator (MCG)
    #define MCG_C1                  *(volatile uint8_t  *)0x40064000 // MCG Control 1 Register
    #define MCG_C1_IREFSTEN         (uint8_t)0x01           // Internal Reference Stop Enable, Controls whether or not the internal reference clock remains enabled when the MCG enters Stop mode.
    #define MCG_C1_IRCLKEN          (uint8_t)0x02           // Internal Reference Clock Enable, Enables the internal reference clock for use as MCGIRCLK.
    #define MCG_C1_IREFS            (uint8_t)0x04           // Internal Reference Select, Selects the reference clock source for the FLL.
    #define MCG_C1_FRDIV(n)         (uint8_t)(((n) & 0x07) << 3)    // FLL External Reference Divider, Selects the amount to divide down the external reference clock for the FLL
    #define MCG_C1_CLKS(n)          (uint8_t)(((n) & 0x03) << 6)    // Clock Source Select, Selects the clock source for MCGOUTCLK
    #define MCG_C2                  *(volatile uint8_t  *)0x40064001 // MCG Control 2 Register
    #define MCG_C2_IRCS         (uint8_t)0x01           // Internal Reference Clock Select, Selects between the fast or slow internal reference clock source.
    #define MCG_C2_LP           (uint8_t)0x02           // Low Power Select, Controls whether the FLL or PLL is disabled in BLPI and BLPE modes.
    #define MCG_C2_EREFS            (uint8_t)0x04           // External Reference Select, Selects the source for the external reference clock. 
    #define MCG_C2_HGO0         (uint8_t)0x08           // High Gain Oscillator Select, Controls the crystal oscillator mode of operation
    #define MCG_C2_RANGE0(n)        (uint8_t)(((n) & 0x03) << 4)    // Frequency Range Select, Selects the frequency range for the crystal oscillator
    #define MCG_C2_LOCRE0           (uint8_t)0x80           // Loss of Clock Reset Enable, Determines whether an interrupt or a reset request is made following a loss of OSC0 
    #define MCG_C3                  *(volatile uint8_t  *)0x40064002 // MCG Control 3 Register
    #define MCG_C3_SCTRIM(n)        (uint8_t)(n)            // Slow Internal Reference Clock Trim Setting
    #define MCG_C4                  *(volatile uint8_t  *)0x40064003 // MCG Control 4 Register
    #define MCG_C4_SCFTRIM          (uint8_t)0x01           // Slow Internal Reference Clock Fine Trim
    #define MCG_C4_FCTRIM(n)        (uint8_t)(((n) & 0x0F) << 1)    // Fast Internal Reference Clock Trim Setting
    #define MCG_C4_DRST_DRS(n)      (uint8_t)(((n) & 0x03) << 5)    // DCO Range Select
    #define MCG_C4_DMX32            (uint8_t)0x80           // DCO Maximum Frequency with 32.768 kHz Reference, controls whether the DCO frequency range is narrowed
    #define MCG_C5                  *(volatile uint8_t  *)0x40064004 // MCG Control 5 Register
    #define MCG_C5_PRDIV0(n)        (uint8_t)((n) & 0x1F)       // PLL External Reference Divider
    #define MCG_C5_PLLSTEN0         (uint8_t)0x20           // PLL Stop Enable
    #define MCG_C5_PLLCLKEN0        (uint8_t)0x40           // PLL Clock Enable
    #define MCG_C6                  *(volatile uint8_t  *)0x40064005 // MCG Control 6 Register
    #define MCG_C6_VDIV0(n)         (uint8_t)((n) & 0x1F)       // VCO 0 Divider
    #define MCG_C6_CME0         (uint8_t)0x20           // Clock Monitor Enable
    #define MCG_C6_PLLS         (uint8_t)0x40           // PLL Select, Controls whether the PLL or FLL output is selected as the MCG source when CLKS[1:0]=00. 
    #define MCG_C6_LOLIE0           (uint8_t)0x80           // Loss of Lock Interrrupt Enable
    #define MCG_S                   *(volatile uint8_t  *)0x40064006 // MCG Status Register
    #define MCG_S_IRCST         (uint8_t)0x01           // Internal Reference Clock Status
    #define MCG_S_OSCINIT0          (uint8_t)0x02           // OSC Initialization,  resets to 0, is set to 1 after the initialization cycles of the crystal oscillator
    #define MCG_S_CLKST(n)          (uint8_t)(((n) & 0x03) << 2)    // Clock Mode Status, 0=FLL is selected, 1= Internal ref, 2=External ref, 3=PLL
    #define MCG_S_CLKST_MASK        (uint8_t)0x0C
    #define MCG_S_IREFST            (uint8_t)0x10           // Internal Reference Status
    #define MCG_S_PLLST         (uint8_t)0x20           // PLL Select Status
    #define MCG_S_LOCK0         (uint8_t)0x40           // Lock Status, 0=PLL Unlocked, 1=PLL Locked
    #define MCG_S_LOLS0         (uint8_t)0x80           // Loss of Lock Status
    #define MCG_SC                  *(volatile uint8_t  *)0x40064008 // MCG Status and Control Register
    #define MCG_SC_LOCS0            (uint8_t)0x01           // OSC0 Loss of Clock Status
    #define MCG_SC_FCRDIV(n)        (uint8_t)(((n) & 0x07) << 1)    // Fast Clock Internal Reference Divider
    #define MCG_SC_FLTPRSRV         (uint8_t)0x10           // FLL Filter Preserve Enable
    #define MCG_SC_ATMF         (uint8_t)0x20           // Automatic Trim Machine Fail Flag
    #define MCG_SC_ATMS         (uint8_t)0x40           // Automatic Trim Machine Select
    #define MCG_SC_ATME         (uint8_t)0x80           // Automatic Trim Machine Enable
    #define MCG_ATCVH               *(volatile uint8_t  *)0x4006400A // MCG Auto Trim Compare Value High Register
    #define MCG_ATCVL               *(volatile uint8_t  *)0x4006400B // MCG Auto Trim Compare Value Low Register
    #define MCG_C7                  *(volatile uint8_t  *)0x4006400C // MCG Control 7 Register
    #define MCG_C8                  *(volatile uint8_t  *)0x4006400D // MCG Control 8 Register
    
    // Chapter 25: Oscillator (OSC)
    #define OSC0_CR                 *(volatile uint8_t  *)0x40065000 // OSC Control Register
    #define OSC_SC16P           (uint8_t)0x01           // Oscillator 16 pF Capacitor Load Configure
    #define OSC_SC8P            (uint8_t)0x02           // Oscillator 8 pF Capacitor Load Configure
    #define OSC_SC4P            (uint8_t)0x04           // Oscillator 4 pF Capacitor Load Configure
    #define OSC_SC2P            (uint8_t)0x08           // Oscillator 2 pF Capacitor Load Configure
    #define OSC_EREFSTEN            (uint8_t)0x20           // External Reference Stop Enable, Controls whether or not the external reference clock (OSCERCLK) remains enabled when MCU enters Stop mode.
    #define OSC_ERCLKEN         (uint8_t)0x80           // External Reference Enable, Enables external reference clock (OSCERCLK).
    
    // Chapter 27: Flash Memory Controller (FMC)
    #define FMC_PFAPR       *(volatile uint32_t *)0x4001F000    // Flash Access Protection
    #define FMC_PFB0CR      *(volatile uint32_t *)0x4001F004    // Flash Control
    #define FMC_TAGVDW0S0       *(volatile uint32_t *)0x4001F100    // Cache Tag Storage
    #define FMC_TAGVDW0S1       *(volatile uint32_t *)0x4001F104    // Cache Tag Storage
    #define FMC_TAGVDW1S0       *(volatile uint32_t *)0x4001F108    // Cache Tag Storage
    #define FMC_TAGVDW1S1       *(volatile uint32_t *)0x4001F10C    // Cache Tag Storage
    #define FMC_TAGVDW2S0       *(volatile uint32_t *)0x4001F110    // Cache Tag Storage
    #define FMC_TAGVDW2S1       *(volatile uint32_t *)0x4001F114    // Cache Tag Storage
    #define FMC_TAGVDW3S0       *(volatile uint32_t *)0x4001F118    // Cache Tag Storage
    #define FMC_TAGVDW3S1       *(volatile uint32_t *)0x4001F11C    // Cache Tag Storage
    #define FMC_DATAW0S0        *(volatile uint32_t *)0x4001F200    // Cache Data Storage
    #define FMC_DATAW0S1        *(volatile uint32_t *)0x4001F204    // Cache Data Storage
    #define FMC_DATAW1S0        *(volatile uint32_t *)0x4001F208    // Cache Data Storage
    #define FMC_DATAW1S1        *(volatile uint32_t *)0x4001F20C    // Cache Data Storage
    #define FMC_DATAW2S0        *(volatile uint32_t *)0x4001F210    // Cache Data Storage
    #define FMC_DATAW2S1        *(volatile uint32_t *)0x4001F214    // Cache Data Storage
    #define FMC_DATAW3S0        *(volatile uint32_t *)0x4001F218    // Cache Data Storage
    #define FMC_DATAW3S1        *(volatile uint32_t *)0x4001F21C    // Cache Data Storage
    
    // Chapter 28: Flash Memory Module (FTFL)
    #define FTFL_FSTAT      *(volatile uint8_t  *)0x40020000      // Flash Status Register
    #define FTFL_FSTAT_CCIF         (uint8_t)0x80           // Command Complete Interrupt Flag
    #define FTFL_FSTAT_RDCOLERR     (uint8_t)0x40           // Flash Read Collision Error Flag
    #define FTFL_FSTAT_ACCERR       (uint8_t)0x20           // Flash Access Error Flag
    #define FTFL_FSTAT_FPVIOL       (uint8_t)0x10           // Flash Protection Violation Flag
    #define FTFL_FSTAT_MGSTAT0      (uint8_t)0x01           // Memory Controller Command Completion Status Flag
    #define FTFL_FCNFG      *(volatile uint8_t  *)0x40020001      // Flash Configuration Register
    #define FTFL_FCNFG_CCIE         (uint8_t)0x80           // Command Complete Interrupt Enable
    #define FTFL_FCNFG_RDCOLLIE     (uint8_t)0x40           // Read Collision Error Interrupt Enable
    #define FTFL_FCNFG_ERSAREQ      (uint8_t)0x20           // Erase All Request
    #define FTFL_FCNFG_ERSSUSP      (uint8_t)0x10           // Erase Suspend
    #define FTFL_FCNFG_PFLSH        (uint8_t)0x04           // Flash memory configuration
    #define FTFL_FCNFG_RAMRDY       (uint8_t)0x02           // RAM Ready
    #define FTFL_FCNFG_EEERDY       (uint8_t)0x01           // EEPROM Ready
    #define FTFL_FSEC               *(const    uint8_t  *)0x40020002      // Flash Security Register
    #define FTFL_FOPT               *(const    uint8_t  *)0x40020003      // Flash Option Register
    #define FTFL_FCCOB3             *(volatile uint8_t  *)0x40020004      // Flash Common Command Object Registers
    #define FTFL_FCCOB2             *(volatile uint8_t  *)0x40020005
    #define FTFL_FCCOB1             *(volatile uint8_t  *)0x40020006
    #define FTFL_FCCOB0             *(volatile uint8_t  *)0x40020007
    #define FTFL_FCCOB7             *(volatile uint8_t  *)0x40020008
    #define FTFL_FCCOB6             *(volatile uint8_t  *)0x40020009
    #define FTFL_FCCOB5             *(volatile uint8_t  *)0x4002000A
    #define FTFL_FCCOB4             *(volatile uint8_t  *)0x4002000B
    #define FTFL_FCCOBB             *(volatile uint8_t  *)0x4002000C
    #define FTFL_FCCOBA             *(volatile uint8_t  *)0x4002000D
    #define FTFL_FCCOB9             *(volatile uint8_t  *)0x4002000E
    #define FTFL_FCCOB8             *(volatile uint8_t  *)0x4002000F
    #define FTFL_FPROT3             *(volatile uint8_t  *)0x40020010      // Program Flash Protection Registers
    #define FTFL_FPROT2             *(volatile uint8_t  *)0x40020011      // Program Flash Protection Registers
    #define FTFL_FPROT1             *(volatile uint8_t  *)0x40020012      // Program Flash Protection Registers
    #define FTFL_FPROT0             *(volatile uint8_t  *)0x40020013      // Program Flash Protection Registers
    #define FTFL_FEPROT             *(volatile uint8_t  *)0x40020016      // EEPROM Protection Register
    #define FTFL_FDPROT             *(volatile uint8_t  *)0x40020017      // Data Flash Protection Register
    
    // Chapter 30: Cyclic Redundancy Check (CRC)
    #define CRC_CRC                 *(volatile uint32_t *)0x40032000 // CRC Data register
    #define CRC_GPOLY               *(volatile uint32_t *)0x40032004 // CRC Polynomial register
    #define CRC_CTRL                *(volatile uint32_t *)0x40032008 // CRC Control register
    
    // Chapter 31: Analog-to-Digital Converter (ADC)
    #define ADC0_SC1A               *(volatile uint32_t *)0x4003B000 // ADC status and control registers 1
    #define ADC0_SC1B               *(volatile uint32_t *)0x4003B004 // ADC status and control registers 1
    #define ADC_SC1_COCO            (uint32_t)0x80          // Conversion complete flag
    #define ADC_SC1_AIEN            (uint32_t)0x40          // Interrupt enable
    #define ADC_SC1_DIFF            (uint32_t)0x20          // Differential mode enable
    #define ADC_SC1_ADCH(n)         (uint32_t)((n) & 0x1F)      // Input channel select
    #define ADC0_CFG1               *(volatile uint32_t *)0x4003B008 // ADC configuration register 1
    #define ADC_CFG1_ADLPC          (uint32_t)0x80          // Low-power configuration
    #define ADC_CFG1_ADIV(n)        (uint32_t)(((n) & 3) << 5)  // Clock divide select, 0=direct, 1=div2, 2=div4, 3=div8
    #define ADC_CFG1_ADLSMP         (uint32_t)0x10          // Sample time configuration, 0=Short, 1=Long
    #define ADC_CFG1_MODE(n)        (uint32_t)(((n) & 3) << 2)  // Conversion mode, 0=8 bit, 1=12 bit, 2=10 bit, 3=16 bit
    #define ADC_CFG1_ADICLK(n)      (uint32_t)(((n) & 3) << 0)  // Input clock, 0=bus, 1=bus/2, 2=OSCERCLK, 3=async
    #define ADC0_CFG2               *(volatile uint32_t *)0x4003B00C // Configuration register 2
    #define ADC_CFG2_MUXSEL         (uint32_t)0x10          // 0=a channels, 1=b channels
    #define ADC_CFG2_ADACKEN        (uint32_t)0x08          // async clock enable
    #define ADC_CFG2_ADHSC          (uint32_t)0x04          // High speed configuration
    #define ADC_CFG2_ADLSTS(n)      (uint32_t)(((n) & 3) << 0)  // Sample time, 0=24 cycles, 1=12 cycles, 2=6 cycles, 3=2 cycles
    #define ADC0_RA                 *(volatile uint32_t *)0x4003B010 // ADC data result register
    #define ADC0_RB                 *(volatile uint32_t *)0x4003B014 // ADC data result register
    #define ADC0_CV1                *(volatile uint32_t *)0x4003B018 // Compare value registers
    #define ADC0_CV2                *(volatile uint32_t *)0x4003B01C // Compare value registers
    #define ADC0_SC2                *(volatile uint32_t *)0x4003B020 // Status and control register 2
    #define ADC_SC2_ADACT           (uint32_t)0x80          // Conversion active
    #define ADC_SC2_ADTRG           (uint32_t)0x40          // Conversion trigger select, 0=software, 1=hardware
    #define ADC_SC2_ACFE            (uint32_t)0x20          // Compare function enable
    #define ADC_SC2_ACFGT           (uint32_t)0x10          // Compare function greater than enable
    #define ADC_SC2_ACREN           (uint32_t)0x08          // Compare function range enable
    #define ADC_SC2_DMAEN           (uint32_t)0x04          // DMA enable
    #define ADC_SC2_REFSEL(n)       (uint32_t)(((n) & 3) << 0)  // Voltage reference, 0=vcc/external, 1=1.2 volts
    #define ADC0_SC3                *(volatile uint32_t *)0x4003B024 // Status and control register 3
    #define ADC_SC3_CAL         (uint32_t)0x80          // Calibration, 1=begin, stays set while cal in progress
    #define ADC_SC3_CALF            (uint32_t)0x40          // Calibration failed flag
    #define ADC_SC3_ADCO            (uint32_t)0x08          // Continuous conversion enable
    #define ADC_SC3_AVGE            (uint32_t)0x04          // Hardware average enable
    #define ADC_SC3_AVGS(n)         (uint32_t)(((n) & 3) << 0)  // avg select, 0=4 samples, 1=8 samples, 2=16 samples, 3=32 samples
    #define ADC0_OFS                *(volatile uint32_t *)0x4003B028 // ADC offset correction register
    #define ADC0_PG                 *(volatile uint32_t *)0x4003B02C // ADC plus-side gain register
    #define ADC0_MG                 *(volatile uint32_t *)0x4003B030 // ADC minus-side gain register
    #define ADC0_CLPD               *(volatile uint32_t *)0x4003B034 // ADC plus-side general calibration value register
    #define ADC0_CLPS               *(volatile uint32_t *)0x4003B038 // ADC plus-side general calibration value register
    #define ADC0_CLP4               *(volatile uint32_t *)0x4003B03C // ADC plus-side general calibration value register
    #define ADC0_CLP3               *(volatile uint32_t *)0x4003B040 // ADC plus-side general calibration value register
    #define ADC0_CLP2               *(volatile uint32_t *)0x4003B044 // ADC plus-side general calibration value register
    #define ADC0_CLP1               *(volatile uint32_t *)0x4003B048 // ADC plus-side general calibration value register
    #define ADC0_CLP0               *(volatile uint32_t *)0x4003B04C // ADC plus-side general calibration value register
    #define ADC0_CLMD               *(volatile uint32_t *)0x4003B054 // ADC minus-side general calibration value register
    #define ADC0_CLMS               *(volatile uint32_t *)0x4003B058 // ADC minus-side general calibration value register
    #define ADC0_CLM4               *(volatile uint32_t *)0x4003B05C // ADC minus-side general calibration value register
    #define ADC0_CLM3               *(volatile uint32_t *)0x4003B060 // ADC minus-side general calibration value register
    #define ADC0_CLM2               *(volatile uint32_t *)0x4003B064 // ADC minus-side general calibration value register
    #define ADC0_CLM1               *(volatile uint32_t *)0x4003B068 // ADC minus-side general calibration value register
    #define ADC0_CLM0               *(volatile uint32_t *)0x4003B06C // ADC minus-side general calibration value register
    //#define MCG_C2_RANGE0(n)      (uint8_t)(((n) & 0x03) << 4)    // Frequency Range Select, Selects the frequency range for the crystal oscillator
    //#define MCG_C2_LOCRE0         (uint8_t)0x80           // Loss of Clock Reset Enable, Determines whether an interrupt or a reset request is made following a loss of OSC0 
    
    // Chapter 32: Comparator (CMP)
    #define CMP0_CR0                *(volatile uint8_t  *)0x40073000 // CMP Control Register 0
    #define CMP0_CR1                *(volatile uint8_t  *)0x40073001 // CMP Control Register 1
    #define CMP0_FPR                *(volatile uint8_t  *)0x40073002 // CMP Filter Period Register
    #define CMP0_SCR                *(volatile uint8_t  *)0x40073003 // CMP Status and Control Register
    #define CMP0_DACCR              *(volatile uint8_t  *)0x40073004 // DAC Control Register
    #define CMP0_MUXCR              *(volatile uint8_t  *)0x40073005 // MUX Control Register
    #define CMP1_CR0                *(volatile uint8_t  *)0x40073008 // CMP Control Register 0
    #define CMP1_CR1                *(volatile uint8_t  *)0x40073009 // CMP Control Register 1
    #define CMP1_FPR                *(volatile uint8_t  *)0x4007300A // CMP Filter Period Register
    #define CMP1_SCR                *(volatile uint8_t  *)0x4007300B // CMP Status and Control Register
    #define CMP1_DACCR              *(volatile uint8_t  *)0x4007300C // DAC Control Register
    #define CMP1_MUXCR              *(volatile uint8_t  *)0x4007300D // MUX Control Register
    
    // Chapter 33: Voltage Reference (VREFV1)
    #define VREF_TRM                *(volatile uint8_t  *)0x40074000 // VREF Trim Register
    #define VREF_SC                 *(volatile uint8_t  *)0x40074001 // VREF Status and Control Register
    
    // Chapter 34: Programmable Delay Block (PDB)
    #define PDB0_SC                 *(volatile uint32_t *)0x40036000 // Status and Control Register
    #define PDB_SC_LDMOD(n)         (((n) & 3) << 18)   // Load Mode Select
    #define PDB_SC_PDBEIE           0x00020000      // Sequence Error Interrupt Enable
    #define PDB_SC_SWTRIG           0x00010000      // Software Trigger
    #define PDB_SC_DMAEN            0x00008000      // DMA Enable
    #define PDB_SC_PRESCALER(n)     (((n) & 7) << 12)   // Prescaler Divider Select
    #define PDB_SC_TRGSEL(n)        (((n) & 15) << 8)   // Trigger Input Source Select
    #define PDB_SC_PDBEN            0x00000080      // PDB Enable
    #define PDB_SC_PDBIF            0x00000040      // PDB Interrupt Flag
    #define PDB_SC_PDBIE            0x00000020      // PDB Interrupt Enable.
    #define PDB_SC_MULT(n)          (((n) & 3) << 2)    // Multiplication Factor
    #define PDB_SC_CONT         0x00000002      // Continuous Mode Enable
    #define PDB_SC_LDOK         0x00000001      // Load OK
    #define PDB0_MOD                *(volatile uint32_t *)0x40036004 // Modulus Register
    #define PDB0_CNT                *(volatile uint32_t *)0x40036008 // Counter Register
    #define PDB0_IDLY               *(volatile uint32_t *)0x4003600C // Interrupt Delay Register
    #define PDB0_CH0C1              *(volatile uint32_t *)0x40036010 // Channel n Control Register 1
    #define PDB0_CH0S               *(volatile uint32_t *)0x40036014 // Channel n Status Register
    #define PDB0_CH0DLY0            *(volatile uint32_t *)0x40036018 // Channel n Delay 0 Register
    #define PDB0_CH0DLY1            *(volatile uint32_t *)0x4003601C // Channel n Delay 1 Register
    #define PDB0_POEN               *(volatile uint32_t *)0x40036190 // Pulse-Out n Enable Register
    #define PDB0_PO0DLY             *(volatile uint32_t *)0x40036194 // Pulse-Out n Delay Register
    #define PDB0_PO1DLY             *(volatile uint32_t *)0x40036198 // Pulse-Out n Delay Register
    
    // Chapter 35: FlexTimer Module (FTM)
    #define FTM0_SC                 *(volatile uint32_t *)0x40038000 // Status And Control
    #define FTM_SC_TOF          0x80                // Timer Overflow Flag
    #define FTM_SC_TOIE         0x40                // Timer Overflow Interrupt Enable
    #define FTM_SC_CPWMS            0x20                // Center-Aligned PWM Select
    #define FTM_SC_CLKS(n)          (((n) & 3) << 3)        // Clock Source Selection
    #define FTM_SC_PS(n)            (((n) & 7) << 0)        // Prescale Factor Selection
    #define FTM0_CNT                *(volatile uint32_t *)0x40038004 // Counter
    #define FTM0_MOD                *(volatile uint32_t *)0x40038008 // Modulo
    #define FTM0_C0SC       *(volatile uint32_t *)0x4003800C // Channel 0 Status And Control
    #define FTM0_C0V        *(volatile uint32_t *)0x40038010 // Channel 0 Value
    #define FTM0_C1SC       *(volatile uint32_t *)0x40038014 // Channel 1 Status And Control
    #define FTM0_C1V        *(volatile uint32_t *)0x40038018 // Channel 1 Value
    #define FTM0_C2SC       *(volatile uint32_t *)0x4003801C // Channel 2 Status And Control
    #define FTM0_C2V        *(volatile uint32_t *)0x40038020 // Channel 2 Value
    #define FTM0_C3SC       *(volatile uint32_t *)0x40038024 // Channel 3 Status And Control
    #define FTM0_C3V        *(volatile uint32_t *)0x40038028 // Channel 3 Value
    #define FTM0_C4SC       *(volatile uint32_t *)0x4003802C // Channel 4 Status And Control
    #define FTM0_C4V        *(volatile uint32_t *)0x40038030 // Channel 4 Value
    #define FTM0_C5SC       *(volatile uint32_t *)0x40038034 // Channel 5 Status And Control
    #define FTM0_C5V        *(volatile uint32_t *)0x40038038 // Channel 5 Value
    #define FTM0_C6SC       *(volatile uint32_t *)0x4003803C // Channel 6 Status And Control
    #define FTM0_C6V        *(volatile uint32_t *)0x40038040 // Channel 6 Value
    #define FTM0_C7SC       *(volatile uint32_t *)0x40038044 // Channel 7 Status And Control
    #define FTM0_C7V        *(volatile uint32_t *)0x40038048 // Channel 7 Value
    #define FTM0_CNTIN              *(volatile uint32_t *)0x4003804C // Counter Initial Value
    #define FTM0_STATUS             *(volatile uint32_t *)0x40038050 // Capture And Compare Status
    #define FTM0_MODE               *(volatile uint32_t *)0x40038054 // Features Mode Selection
    #define FTM_MODE_FAULTIE        0x80                // Fault Interrupt Enable
    #define FTM_MODE_FAULTM(n)      (((n) & 3) << 5)        // Fault Control Mode
    #define FTM_MODE_CAPTEST        0x10                // Capture Test Mode Enable
    #define FTM_MODE_PWMSYNC        0x08                // PWM Synchronization Mode
    #define FTM_MODE_WPDIS          0x04                // Write Protection Disable
    #define FTM_MODE_INIT           0x02                // Initialize The Channels Output
    #define FTM_MODE_FTMEN          0x01                // FTM Enable
    #define FTM0_SYNC               *(volatile uint32_t *)0x40038058 // Synchronization
    #define FTM_SYNC_SWSYNC         0x80                // 
    #define FTM_SYNC_TRIG2          0x40                // 
    #define FTM_SYNC_TRIG1          0x20                // 
    #define FTM_SYNC_TRIG0          0x10                // 
    #define FTM_SYNC_SYNCHOM        0x08                // 
    #define FTM_SYNC_REINIT         0x04                // 
    #define FTM_SYNC_CNTMAX         0x02                // 
    #define FTM_SYNC_CNTMIN         0x01                // 
    #define FTM0_OUTINIT            *(volatile uint32_t *)0x4003805C // Initial State For Channels Output
    #define FTM0_OUTMASK            *(volatile uint32_t *)0x40038060 // Output Mask
    #define FTM0_COMBINE            *(volatile uint32_t *)0x40038064 // Function For Linked Channels
    #define FTM0_DEADTIME           *(volatile uint32_t *)0x40038068 // Deadtime Insertion Control
    #define FTM0_EXTTRIG            *(volatile uint32_t *)0x4003806C // FTM External Trigger
    #define FTM0_POL                *(volatile uint32_t *)0x40038070 // Channels Polarity
    #define FTM0_FMS                *(volatile uint32_t *)0x40038074 // Fault Mode Status
    #define FTM0_FILTER             *(volatile uint32_t *)0x40038078 // Input Capture Filter Control
    #define FTM0_FLTCTRL            *(volatile uint32_t *)0x4003807C // Fault Control
    #define FTM0_QDCTRL             *(volatile uint32_t *)0x40038080 // Quadrature Decoder Control And Status
    #define FTM0_CONF               *(volatile uint32_t *)0x40038084 // Configuration
    #define FTM0_FLTPOL             *(volatile uint32_t *)0x40038088 // FTM Fault Input Polarity
    #define FTM0_SYNCONF            *(volatile uint32_t *)0x4003808C // Synchronization Configuration
    #define FTM0_INVCTRL            *(volatile uint32_t *)0x40038090 // FTM Inverting Control
    #define FTM0_SWOCTRL            *(volatile uint32_t *)0x40038094 // FTM Software Output Control
    #define FTM0_PWMLOAD            *(volatile uint32_t *)0x40038098 // FTM PWM Load
    #define FTM1_SC                 *(volatile uint32_t *)0x40039000 // Status And Control
    #define FTM1_CNT                *(volatile uint32_t *)0x40039004 // Counter
    #define FTM1_MOD                *(volatile uint32_t *)0x40039008 // Modulo
    #define FTM1_C0SC       *(volatile uint32_t *)0x4003900C // Channel 0 Status And Control
    #define FTM1_C0V        *(volatile uint32_t *)0x40039010 // Channel 0 Value
    #define FTM1_C1SC       *(volatile uint32_t *)0x40039014 // Channel 1 Status And Control
    #define FTM1_C1V        *(volatile uint32_t *)0x40039018 // Channel 1 Value
    #define FTM1_CNTIN              *(volatile uint32_t *)0x4003904C // Counter Initial Value
    #define FTM1_STATUS             *(volatile uint32_t *)0x40039050 // Capture And Compare Status
    #define FTM1_MODE               *(volatile uint32_t *)0x40039054 // Features Mode Selection
    #define FTM1_SYNC               *(volatile uint32_t *)0x40039058 // Synchronization
    #define FTM1_OUTINIT            *(volatile uint32_t *)0x4003905C // Initial State For Channels Output
    #define FTM1_OUTMASK            *(volatile uint32_t *)0x40039060 // Output Mask
    #define FTM1_COMBINE            *(volatile uint32_t *)0x40039064 // Function For Linked Channels
    #define FTM1_DEADTIME           *(volatile uint32_t *)0x40039068 // Deadtime Insertion Control
    #define FTM1_EXTTRIG            *(volatile uint32_t *)0x4003906C // FTM External Trigger
    #define FTM1_POL                *(volatile uint32_t *)0x40039070 // Channels Polarity
    #define FTM1_FMS                *(volatile uint32_t *)0x40039074 // Fault Mode Status
    #define FTM1_FILTER             *(volatile uint32_t *)0x40039078 // Input Capture Filter Control
    #define FTM1_FLTCTRL            *(volatile uint32_t *)0x4003907C // Fault Control
    #define FTM1_QDCTRL             *(volatile uint32_t *)0x40039080 // Quadrature Decoder Control And Status
    #define FTM1_CONF               *(volatile uint32_t *)0x40039084 // Configuration
    #define FTM1_FLTPOL             *(volatile uint32_t *)0x40039088 // FTM Fault Input Polarity
    #define FTM1_SYNCONF            *(volatile uint32_t *)0x4003908C // Synchronization Configuration
    #define FTM1_INVCTRL            *(volatile uint32_t *)0x40039090 // FTM Inverting Control
    #define FTM1_SWOCTRL            *(volatile uint32_t *)0x40039094 // FTM Software Output Control
    #define FTM1_PWMLOAD            *(volatile uint32_t *)0x40039098 // FTM PWM Load
    
    // Chapter 36: Periodic Interrupt Timer (PIT)
    #define PIT_MCR                 *(volatile uint32_t *)0x40037000 // PIT Module Control Register
    #define PIT_LDVAL0              *(volatile uint32_t *)0x40037100 // Timer Load Value Register
    #define PIT_CVAL0               *(volatile uint32_t *)0x40037104 // Current Timer Value Register
    #define PIT_TCTRL0              *(volatile uint32_t *)0x40037108 // Timer Control Register
    #define PIT_TFLG0               *(volatile uint32_t *)0x4003710C // Timer Flag Register
    #define PIT_LDVAL1              *(volatile uint32_t *)0x40037110 // Timer Load Value Register
    #define PIT_CVAL1               *(volatile uint32_t *)0x40037114 // Current Timer Value Register
    #define PIT_TCTRL1              *(volatile uint32_t *)0x40037118 // Timer Control Register
    #define PIT_TFLG1               *(volatile uint32_t *)0x4003711C // Timer Flag Register
    #define PIT_LDVAL2              *(volatile uint32_t *)0x40037120 // Timer Load Value Register
    #define PIT_CVAL2               *(volatile uint32_t *)0x40037124 // Current Timer Value Register
    #define PIT_TCTRL2              *(volatile uint32_t *)0x40037128 // Timer Control Register
    #define PIT_TFLG2               *(volatile uint32_t *)0x4003712C // Timer Flag Register
    #define PIT_LDVAL3              *(volatile uint32_t *)0x40037130 // Timer Load Value Register
    #define PIT_CVAL3               *(volatile uint32_t *)0x40037134 // Current Timer Value Register
    #define PIT_TCTRL3              *(volatile uint32_t *)0x40037138 // Timer Control Register
    #define PIT_TFLG3               *(volatile uint32_t *)0x4003713C // Timer Flag Register
    
    // Chapter 37: Low-Power Timer (LPTMR)
    #define LPTMR0_CSR              *(volatile uint32_t *)0x40040000 // Low Power Timer Control Status Register
    #define LPTMR0_PSR              *(volatile uint32_t *)0x40040004 // Low Power Timer Prescale Register
    #define LPTMR0_CMR              *(volatile uint32_t *)0x40040008 // Low Power Timer Compare Register
    #define LPTMR0_CNR              *(volatile uint32_t *)0x4004000C // Low Power Timer Counter Register
    
    // Chapter 38: Carrier Modulator Transmitter (CMT)
    #define CMT_CGH1                *(volatile uint8_t  *)0x40062000 // CMT Carrier Generator High Data Register 1
    #define CMT_CGL1                *(volatile uint8_t  *)0x40062001 // CMT Carrier Generator Low Data Register 1
    #define CMT_CGH2                *(volatile uint8_t  *)0x40062002 // CMT Carrier Generator High Data Register 2
    #define CMT_CGL2                *(volatile uint8_t  *)0x40062003 // CMT Carrier Generator Low Data Register 2
    #define CMT_OC                  *(volatile uint8_t  *)0x40062004 // CMT Output Control Register
    #define CMT_MSC                 *(volatile uint8_t  *)0x40062005 // CMT Modulator Status and Control Register
    #define CMT_CMD1                *(volatile uint8_t  *)0x40062006 // CMT Modulator Data Register Mark High
    #define CMT_CMD2                *(volatile uint8_t  *)0x40062007 // CMT Modulator Data Register Mark Low
    #define CMT_CMD3                *(volatile uint8_t  *)0x40062008 // CMT Modulator Data Register Space High
    #define CMT_CMD4                *(volatile uint8_t  *)0x40062009 // CMT Modulator Data Register Space Low
    #define CMT_PPS                 *(volatile uint8_t  *)0x4006200A // CMT Primary Prescaler Register
    #define CMT_DMA                 *(volatile uint8_t  *)0x4006200B // CMT Direct Memory Access Register
    
    // Chapter 39: Real Time Clock (RTC)
    #define RTC_TSR                 *(volatile uint32_t *)0x4003D000 // RTC Time Seconds Register
    #define RTC_TPR                 *(volatile uint32_t *)0x4003D004 // RTC Time Prescaler Register
    #define RTC_TAR                 *(volatile uint32_t *)0x4003D008 // RTC Time Alarm Register
    #define RTC_TCR                 *(volatile uint32_t *)0x4003D00C // RTC Time Compensation Register
    #define RTC_TCR_CIC(n)          (((n) & 255) << 24)     // Compensation Interval Counter
    #define RTC_TCR_TCV(n)          (((n) & 255) << 16)     // Time Compensation Value
    #define RTC_TCR_CIR(n)          (((n) & 255) << 8)      // Compensation Interval Register
    #define RTC_TCR_TCR(n)          (((n) & 255) << 0)      // Time Compensation Register
    #define RTC_CR                  *(volatile uint32_t *)0x4003D010 // RTC Control Register
    #define RTC_CR_SC2P         (uint32_t)0x00002000        // 
    #define RTC_CR_SC4P         (uint32_t)0x00001000        // 
    #define RTC_CR_SC8P         (uint32_t)0x00000800        // 
    #define RTC_CR_SC16P            (uint32_t)0x00000400        // 
    #define RTC_CR_CLKO         (uint32_t)0x00000200        // 
    #define RTC_CR_OSCE         (uint32_t)0x00000100        // 
    #define RTC_CR_UM           (uint32_t)0x00000008        // 
    #define RTC_CR_SUP          (uint32_t)0x00000004        // 
    #define RTC_CR_WPE          (uint32_t)0x00000002        // 
    #define RTC_CR_SWR          (uint32_t)0x00000001        // 
    #define RTC_SR                  *(volatile uint32_t *)0x4003D014 // RTC Status Register
    #define RTC_SR_TCE          (uint32_t)0x00000010        // 
    #define RTC_SR_TAF          (uint32_t)0x00000004        // 
    #define RTC_SR_TOF          (uint32_t)0x00000002        // 
    #define RTC_SR_TIF          (uint32_t)0x00000001        // 
    #define RTC_LR                  *(volatile uint32_t *)0x4003D018 // RTC Lock Register
    #define RTC_IER                 *(volatile uint32_t *)0x4003D01C // RTC Interrupt Enable Register
    #define RTC_WAR                 *(volatile uint32_t *)0x4003D800 // RTC Write Access Register
    #define RTC_RAR                 *(volatile uint32_t *)0x4003D804 // RTC Read Access Register
    
    // Chapter 40: Universal Serial Bus OTG Controller (USBOTG)
    #define USB0_PERID              *(const    uint8_t  *)0x40072000 // Peripheral ID register
    #define USB0_IDCOMP             *(const    uint8_t  *)0x40072004 // Peripheral ID Complement register
    #define USB0_REV                *(const    uint8_t  *)0x40072008 // Peripheral Revision register
    #define USB0_ADDINFO            *(volatile uint8_t  *)0x4007200C // Peripheral Additional Info register
    #define USB0_OTGISTAT           *(volatile uint8_t  *)0x40072010 // OTG Interrupt Status register
    #define USB_OTGISTAT_IDCHG      (uint8_t)0x80           //
    #define USB_OTGISTAT_ONEMSEC        (uint8_t)0x40           //
    #define USB_OTGISTAT_LINE_STATE_CHG (uint8_t)0x20           //
    #define USB_OTGISTAT_SESSVLDCHG     (uint8_t)0x08           //
    #define USB_OTGISTAT_B_SESS_CHG     (uint8_t)0x04           //
    #define USB_OTGISTAT_AVBUSCHG       (uint8_t)0x01           //
    #define USB0_OTGICR             *(volatile uint8_t  *)0x40072014 // OTG Interrupt Control Register
    #define USB_OTGICR_IDEN         (uint8_t)0x80           // 
    #define USB_OTGICR_ONEMSECEN        (uint8_t)0x40           // 
    #define USB_OTGICR_LINESTATEEN      (uint8_t)0x20           // 
    #define USB_OTGICR_SESSVLDEN        (uint8_t)0x08           // 
    #define USB_OTGICR_BSESSEN      (uint8_t)0x04           // 
    #define USB_OTGICR_AVBUSEN      (uint8_t)0x01           // 
    #define USB0_OTGSTAT            *(volatile uint8_t  *)0x40072018 // OTG Status register
    #define USB_OTGSTAT_ID          (uint8_t)0x80           // 
    #define USB_OTGSTAT_ONEMSECEN       (uint8_t)0x40           // 
    #define USB_OTGSTAT_LINESTATESTABLE (uint8_t)0x20           // 
    #define USB_OTGSTAT_SESS_VLD        (uint8_t)0x08           // 
    #define USB_OTGSTAT_BSESSEND        (uint8_t)0x04           // 
    #define USB_OTGSTAT_AVBUSVLD        (uint8_t)0x01           // 
    #define USB0_OTGCTL             *(volatile uint8_t  *)0x4007201C // OTG Control Register
    #define USB_OTGCTL_DPHIGH       (uint8_t)0x80           // 
    #define USB_OTGCTL_DPLOW        (uint8_t)0x20           // 
    #define USB_OTGCTL_DMLOW        (uint8_t)0x10           // 
    #define USB_OTGCTL_OTGEN        (uint8_t)0x04           // 
    #define USB0_ISTAT              *(volatile uint8_t  *)0x40072080 // Interrupt Status Register
    #define USB_ISTAT_STALL         (uint8_t)0x80           // 
    #define USB_ISTAT_ATTACH        (uint8_t)0x40           // 
    #define USB_ISTAT_RESUME        (uint8_t)0x20           // 
    #define USB_ISTAT_SLEEP         (uint8_t)0x10           // 
    #define USB_ISTAT_TOKDNE        (uint8_t)0x08           // 
    #define USB_ISTAT_SOFTOK        (uint8_t)0x04           // 
    #define USB_ISTAT_ERROR         (uint8_t)0x02           // 
    #define USB_ISTAT_USBRST        (uint8_t)0x01           // 
    #define USB0_INTEN              *(volatile uint8_t  *)0x40072084 // Interrupt Enable Register
    #define USB_INTEN_STALLEN       (uint8_t)0x80           // 
    #define USB_INTEN_ATTACHEN      (uint8_t)0x40           // 
    #define USB_INTEN_RESUMEEN      (uint8_t)0x20           // 
    #define USB_INTEN_SLEEPEN       (uint8_t)0x10           // 
    #define USB_INTEN_TOKDNEEN      (uint8_t)0x08           // 
    #define USB_INTEN_SOFTOKEN      (uint8_t)0x04           // 
    #define USB_INTEN_ERROREN       (uint8_t)0x02           // 
    #define USB_INTEN_USBRSTEN      (uint8_t)0x01           // 
    #define USB0_ERRSTAT            *(volatile uint8_t  *)0x40072088 // Error Interrupt Status Register
    #define USB_ERRSTAT_BTSERR      (uint8_t)0x80           // 
    #define USB_ERRSTAT_DMAERR      (uint8_t)0x20           // 
    #define USB_ERRSTAT_BTOERR      (uint8_t)0x10           // 
    #define USB_ERRSTAT_DFN8        (uint8_t)0x08           // 
    #define USB_ERRSTAT_CRC16       (uint8_t)0x04           // 
    #define USB_ERRSTAT_CRC5EOF     (uint8_t)0x02           // 
    #define USB_ERRSTAT_PIDERR      (uint8_t)0x01           // 
    #define USB0_ERREN              *(volatile uint8_t  *)0x4007208C // Error Interrupt Enable Register
    #define USB_ERREN_BTSERREN      (uint8_t)0x80           // 
    #define USB_ERREN_DMAERREN      (uint8_t)0x20           // 
    #define USB_ERREN_BTOERREN      (uint8_t)0x10           //