-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhw_cpu_scs.h
3885 lines (3492 loc) · 189 KB
/
hw_cpu_scs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
/******************************************************************************
* Filename: hw_cpu_scs_h
* Revised: 2017-01-31 09:37:48 +0100 (Tue, 31 Jan 2017)
* Revision: 48345
*
* Copyright (c) 2015 - 2017, Texas Instruments Incorporated
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1) Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2) Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3) Neither the name of the ORGANIZATION nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
******************************************************************************/
#ifndef __HW_CPU_SCS_H__
#define __HW_CPU_SCS_H__
//*****************************************************************************
//
// This section defines the register offsets of
// CPU_SCS component
//
//*****************************************************************************
// Interrupt Control Type
#define CPU_SCS_O_ICTR 0x00000004
// Auxiliary Control
#define CPU_SCS_O_ACTLR 0x00000008
// SysTick Control and Status
#define CPU_SCS_O_STCSR 0x00000010
// SysTick Reload Value
#define CPU_SCS_O_STRVR 0x00000014
// SysTick Current Value
#define CPU_SCS_O_STCVR 0x00000018
// SysTick Calibration Value
#define CPU_SCS_O_STCR 0x0000001C
// Irq 0 to 31 Set Enable
#define CPU_SCS_O_NVIC_ISER0 0x00000100
// Irq 32 to 63 Set Enable
#define CPU_SCS_O_NVIC_ISER1 0x00000104
// Irq 0 to 31 Clear Enable
#define CPU_SCS_O_NVIC_ICER0 0x00000180
// Irq 32 to 63 Clear Enable
#define CPU_SCS_O_NVIC_ICER1 0x00000184
// Irq 0 to 31 Set Pending
#define CPU_SCS_O_NVIC_ISPR0 0x00000200
// Irq 32 to 63 Set Pending
#define CPU_SCS_O_NVIC_ISPR1 0x00000204
// Irq 0 to 31 Clear Pending
#define CPU_SCS_O_NVIC_ICPR0 0x00000280
// Irq 32 to 63 Clear Pending
#define CPU_SCS_O_NVIC_ICPR1 0x00000284
// Irq 0 to 31 Active Bit
#define CPU_SCS_O_NVIC_IABR0 0x00000300
// Irq 32 to 63 Active Bit
#define CPU_SCS_O_NVIC_IABR1 0x00000304
// Irq 0 to 3 Priority
#define CPU_SCS_O_NVIC_IPR0 0x00000400
// Irq 4 to 7 Priority
#define CPU_SCS_O_NVIC_IPR1 0x00000404
// Irq 8 to 11 Priority
#define CPU_SCS_O_NVIC_IPR2 0x00000408
// Irq 12 to 15 Priority
#define CPU_SCS_O_NVIC_IPR3 0x0000040C
// Irq 16 to 19 Priority
#define CPU_SCS_O_NVIC_IPR4 0x00000410
// Irq 20 to 23 Priority
#define CPU_SCS_O_NVIC_IPR5 0x00000414
// Irq 24 to 27 Priority
#define CPU_SCS_O_NVIC_IPR6 0x00000418
// Irq 28 to 31 Priority
#define CPU_SCS_O_NVIC_IPR7 0x0000041C
// Irq 32 to 35 Priority
#define CPU_SCS_O_NVIC_IPR8 0x00000420
// CPUID Base
#define CPU_SCS_O_CPUID 0x00000D00
// Interrupt Control State
#define CPU_SCS_O_ICSR 0x00000D04
// Vector Table Offset
#define CPU_SCS_O_VTOR 0x00000D08
// Application Interrupt/Reset Control
#define CPU_SCS_O_AIRCR 0x00000D0C
// System Control
#define CPU_SCS_O_SCR 0x00000D10
// Configuration Control
#define CPU_SCS_O_CCR 0x00000D14
// System Handlers 4-7 Priority
#define CPU_SCS_O_SHPR1 0x00000D18
// System Handlers 8-11 Priority
#define CPU_SCS_O_SHPR2 0x00000D1C
// System Handlers 12-15 Priority
#define CPU_SCS_O_SHPR3 0x00000D20
// System Handler Control and State
#define CPU_SCS_O_SHCSR 0x00000D24
// Configurable Fault Status
#define CPU_SCS_O_CFSR 0x00000D28
// Hard Fault Status
#define CPU_SCS_O_HFSR 0x00000D2C
// Debug Fault Status
#define CPU_SCS_O_DFSR 0x00000D30
// Mem Manage Fault Address
#define CPU_SCS_O_MMFAR 0x00000D34
// Bus Fault Address
#define CPU_SCS_O_BFAR 0x00000D38
// Auxiliary Fault Status
#define CPU_SCS_O_AFSR 0x00000D3C
// Processor Feature 0
#define CPU_SCS_O_ID_PFR0 0x00000D40
// Processor Feature 1
#define CPU_SCS_O_ID_PFR1 0x00000D44
// Debug Feature 0
#define CPU_SCS_O_ID_DFR0 0x00000D48
// Auxiliary Feature 0
#define CPU_SCS_O_ID_AFR0 0x00000D4C
// Memory Model Feature 0
#define CPU_SCS_O_ID_MMFR0 0x00000D50
// Memory Model Feature 1
#define CPU_SCS_O_ID_MMFR1 0x00000D54
// Memory Model Feature 2
#define CPU_SCS_O_ID_MMFR2 0x00000D58
// Memory Model Feature 3
#define CPU_SCS_O_ID_MMFR3 0x00000D5C
// ISA Feature 0
#define CPU_SCS_O_ID_ISAR0 0x00000D60
// ISA Feature 1
#define CPU_SCS_O_ID_ISAR1 0x00000D64
// ISA Feature 2
#define CPU_SCS_O_ID_ISAR2 0x00000D68
// ISA Feature 3
#define CPU_SCS_O_ID_ISAR3 0x00000D6C
// ISA Feature 4
#define CPU_SCS_O_ID_ISAR4 0x00000D70
// Coprocessor Access Control
#define CPU_SCS_O_CPACR 0x00000D88
// Debug Halting Control and Status
#define CPU_SCS_O_DHCSR 0x00000DF0
// Deubg Core Register Selector
#define CPU_SCS_O_DCRSR 0x00000DF4
// Debug Core Register Data
#define CPU_SCS_O_DCRDR 0x00000DF8
// Debug Exception and Monitor Control
#define CPU_SCS_O_DEMCR 0x00000DFC
// Software Trigger Interrupt
#define CPU_SCS_O_STIR 0x00000F00
//*****************************************************************************
//
// Register: CPU_SCS_O_ICTR
//
//*****************************************************************************
// Field: [2:0] INTLINESNUM
//
// Total number of interrupt lines in groups of 32.
//
// 0: 0...32
// 1: 33...64
// 2: 65...96
// 3: 97...128
// 4: 129...160
// 5: 161...192
// 6: 193...224
// 7: 225...256
#define CPU_SCS_ICTR_INTLINESNUM_W 3
#define CPU_SCS_ICTR_INTLINESNUM_M 0x00000007
#define CPU_SCS_ICTR_INTLINESNUM_S 0
//*****************************************************************************
//
// Register: CPU_SCS_O_ACTLR
//
//*****************************************************************************
// Field: [2] DISFOLD
//
// Disables folding of IT instruction.
#define CPU_SCS_ACTLR_DISFOLD 0x00000004
#define CPU_SCS_ACTLR_DISFOLD_BITN 2
#define CPU_SCS_ACTLR_DISFOLD_M 0x00000004
#define CPU_SCS_ACTLR_DISFOLD_S 2
// Field: [1] DISDEFWBUF
//
// Disables write buffer use during default memory map accesses. This causes
// all bus faults to be precise bus faults but decreases the performance of the
// processor because the stores to memory have to complete before the next
// instruction can be executed.
#define CPU_SCS_ACTLR_DISDEFWBUF 0x00000002
#define CPU_SCS_ACTLR_DISDEFWBUF_BITN 1
#define CPU_SCS_ACTLR_DISDEFWBUF_M 0x00000002
#define CPU_SCS_ACTLR_DISDEFWBUF_S 1
// Field: [0] DISMCYCINT
//
// Disables interruption of multi-cycle instructions. This increases the
// interrupt latency of the processor becuase LDM/STM completes before
// interrupt stacking occurs.
#define CPU_SCS_ACTLR_DISMCYCINT 0x00000001
#define CPU_SCS_ACTLR_DISMCYCINT_BITN 0
#define CPU_SCS_ACTLR_DISMCYCINT_M 0x00000001
#define CPU_SCS_ACTLR_DISMCYCINT_S 0
//*****************************************************************************
//
// Register: CPU_SCS_O_STCSR
//
//*****************************************************************************
// Field: [16] COUNTFLAG
//
// Returns 1 if timer counted to 0 since last time this was read. Clears on
// read by application of any part of the SysTick Control and Status Register.
// If read by the debugger using the DAP, this bit is cleared on read-only if
// the MasterType bit in the **AHB-AP** Control Register is set to 0.
// Otherwise, COUNTFLAG is not changed by the debugger read.
#define CPU_SCS_STCSR_COUNTFLAG 0x00010000
#define CPU_SCS_STCSR_COUNTFLAG_BITN 16
#define CPU_SCS_STCSR_COUNTFLAG_M 0x00010000
#define CPU_SCS_STCSR_COUNTFLAG_S 16
// Field: [2] CLKSOURCE
//
// Clock source:
//
// 0: External reference clock.
// 1: Core clock
//
// External clock is not available in this device. Writes to this field will be
// ignored.
#define CPU_SCS_STCSR_CLKSOURCE 0x00000004
#define CPU_SCS_STCSR_CLKSOURCE_BITN 2
#define CPU_SCS_STCSR_CLKSOURCE_M 0x00000004
#define CPU_SCS_STCSR_CLKSOURCE_S 2
// Field: [1] TICKINT
//
// 0: Counting down to zero does not pend the SysTick handler. Software can use
// COUNTFLAG to determine if the SysTick handler has ever counted to zero.
// 1: Counting down to zero pends the SysTick handler.
#define CPU_SCS_STCSR_TICKINT 0x00000002
#define CPU_SCS_STCSR_TICKINT_BITN 1
#define CPU_SCS_STCSR_TICKINT_M 0x00000002
#define CPU_SCS_STCSR_TICKINT_S 1
// Field: [0] ENABLE
//
// Enable SysTick counter
//
// 0: Counter disabled
// 1: Counter operates in a multi-shot way. That is, counter loads with the
// Reload value STRVR.RELOAD and then begins counting down. On reaching 0, it
// sets COUNTFLAG to 1 and optionally pends the SysTick handler, based on
// TICKINT. It then loads STRVR.RELOAD again, and begins counting.
#define CPU_SCS_STCSR_ENABLE 0x00000001
#define CPU_SCS_STCSR_ENABLE_BITN 0
#define CPU_SCS_STCSR_ENABLE_M 0x00000001
#define CPU_SCS_STCSR_ENABLE_S 0
//*****************************************************************************
//
// Register: CPU_SCS_O_STRVR
//
//*****************************************************************************
// Field: [23:0] RELOAD
//
// Value to load into the SysTick Current Value Register STCVR.CURRENT when the
// counter reaches 0.
#define CPU_SCS_STRVR_RELOAD_W 24
#define CPU_SCS_STRVR_RELOAD_M 0x00FFFFFF
#define CPU_SCS_STRVR_RELOAD_S 0
//*****************************************************************************
//
// Register: CPU_SCS_O_STCVR
//
//*****************************************************************************
// Field: [23:0] CURRENT
//
// Current value at the time the register is accessed. No read-modify-write
// protection is provided, so change with care. Writing to it with any value
// clears the register to 0. Clearing this register also clears
// STCSR.COUNTFLAG.
#define CPU_SCS_STCVR_CURRENT_W 24
#define CPU_SCS_STCVR_CURRENT_M 0x00FFFFFF
#define CPU_SCS_STCVR_CURRENT_S 0
//*****************************************************************************
//
// Register: CPU_SCS_O_STCR
//
//*****************************************************************************
// Field: [31] NOREF
//
// Reads as one. Indicates that no separate reference clock is provided.
#define CPU_SCS_STCR_NOREF 0x80000000
#define CPU_SCS_STCR_NOREF_BITN 31
#define CPU_SCS_STCR_NOREF_M 0x80000000
#define CPU_SCS_STCR_NOREF_S 31
// Field: [30] SKEW
//
// Reads as one. The calibration value is not exactly 10ms because of clock
// frequency. This could affect its suitability as a software real time clock.
#define CPU_SCS_STCR_SKEW 0x40000000
#define CPU_SCS_STCR_SKEW_BITN 30
#define CPU_SCS_STCR_SKEW_M 0x40000000
#define CPU_SCS_STCR_SKEW_S 30
// Field: [23:0] TENMS
//
// An optional Reload value to be used for 10ms (100Hz) timing, subject to
// system clock skew errors. The value read is valid only when core clock is at
// 48MHz.
#define CPU_SCS_STCR_TENMS_W 24
#define CPU_SCS_STCR_TENMS_M 0x00FFFFFF
#define CPU_SCS_STCR_TENMS_S 0
//*****************************************************************************
//
// Register: CPU_SCS_O_NVIC_ISER0
//
//*****************************************************************************
// Field: [31] SETENA31
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 31 (See EVENT:CPUIRQSEL31.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA31 0x80000000
#define CPU_SCS_NVIC_ISER0_SETENA31_BITN 31
#define CPU_SCS_NVIC_ISER0_SETENA31_M 0x80000000
#define CPU_SCS_NVIC_ISER0_SETENA31_S 31
// Field: [30] SETENA30
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 30 (See EVENT:CPUIRQSEL30.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA30 0x40000000
#define CPU_SCS_NVIC_ISER0_SETENA30_BITN 30
#define CPU_SCS_NVIC_ISER0_SETENA30_M 0x40000000
#define CPU_SCS_NVIC_ISER0_SETENA30_S 30
// Field: [29] SETENA29
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 29 (See EVENT:CPUIRQSEL29.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA29 0x20000000
#define CPU_SCS_NVIC_ISER0_SETENA29_BITN 29
#define CPU_SCS_NVIC_ISER0_SETENA29_M 0x20000000
#define CPU_SCS_NVIC_ISER0_SETENA29_S 29
// Field: [28] SETENA28
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 28 (See EVENT:CPUIRQSEL28.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA28 0x10000000
#define CPU_SCS_NVIC_ISER0_SETENA28_BITN 28
#define CPU_SCS_NVIC_ISER0_SETENA28_M 0x10000000
#define CPU_SCS_NVIC_ISER0_SETENA28_S 28
// Field: [27] SETENA27
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 27 (See EVENT:CPUIRQSEL27.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA27 0x08000000
#define CPU_SCS_NVIC_ISER0_SETENA27_BITN 27
#define CPU_SCS_NVIC_ISER0_SETENA27_M 0x08000000
#define CPU_SCS_NVIC_ISER0_SETENA27_S 27
// Field: [26] SETENA26
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 26 (See EVENT:CPUIRQSEL26.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA26 0x04000000
#define CPU_SCS_NVIC_ISER0_SETENA26_BITN 26
#define CPU_SCS_NVIC_ISER0_SETENA26_M 0x04000000
#define CPU_SCS_NVIC_ISER0_SETENA26_S 26
// Field: [25] SETENA25
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 25 (See EVENT:CPUIRQSEL25.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA25 0x02000000
#define CPU_SCS_NVIC_ISER0_SETENA25_BITN 25
#define CPU_SCS_NVIC_ISER0_SETENA25_M 0x02000000
#define CPU_SCS_NVIC_ISER0_SETENA25_S 25
// Field: [24] SETENA24
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 24 (See EVENT:CPUIRQSEL24.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA24 0x01000000
#define CPU_SCS_NVIC_ISER0_SETENA24_BITN 24
#define CPU_SCS_NVIC_ISER0_SETENA24_M 0x01000000
#define CPU_SCS_NVIC_ISER0_SETENA24_S 24
// Field: [23] SETENA23
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 23 (See EVENT:CPUIRQSEL23.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA23 0x00800000
#define CPU_SCS_NVIC_ISER0_SETENA23_BITN 23
#define CPU_SCS_NVIC_ISER0_SETENA23_M 0x00800000
#define CPU_SCS_NVIC_ISER0_SETENA23_S 23
// Field: [22] SETENA22
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 22 (See EVENT:CPUIRQSEL22.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA22 0x00400000
#define CPU_SCS_NVIC_ISER0_SETENA22_BITN 22
#define CPU_SCS_NVIC_ISER0_SETENA22_M 0x00400000
#define CPU_SCS_NVIC_ISER0_SETENA22_S 22
// Field: [21] SETENA21
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 21 (See EVENT:CPUIRQSEL21.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA21 0x00200000
#define CPU_SCS_NVIC_ISER0_SETENA21_BITN 21
#define CPU_SCS_NVIC_ISER0_SETENA21_M 0x00200000
#define CPU_SCS_NVIC_ISER0_SETENA21_S 21
// Field: [20] SETENA20
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 20 (See EVENT:CPUIRQSEL20.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA20 0x00100000
#define CPU_SCS_NVIC_ISER0_SETENA20_BITN 20
#define CPU_SCS_NVIC_ISER0_SETENA20_M 0x00100000
#define CPU_SCS_NVIC_ISER0_SETENA20_S 20
// Field: [19] SETENA19
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 19 (See EVENT:CPUIRQSEL19.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA19 0x00080000
#define CPU_SCS_NVIC_ISER0_SETENA19_BITN 19
#define CPU_SCS_NVIC_ISER0_SETENA19_M 0x00080000
#define CPU_SCS_NVIC_ISER0_SETENA19_S 19
// Field: [18] SETENA18
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 18 (See EVENT:CPUIRQSEL18.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA18 0x00040000
#define CPU_SCS_NVIC_ISER0_SETENA18_BITN 18
#define CPU_SCS_NVIC_ISER0_SETENA18_M 0x00040000
#define CPU_SCS_NVIC_ISER0_SETENA18_S 18
// Field: [17] SETENA17
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 17 (See EVENT:CPUIRQSEL17.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA17 0x00020000
#define CPU_SCS_NVIC_ISER0_SETENA17_BITN 17
#define CPU_SCS_NVIC_ISER0_SETENA17_M 0x00020000
#define CPU_SCS_NVIC_ISER0_SETENA17_S 17
// Field: [16] SETENA16
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 16 (See EVENT:CPUIRQSEL16.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA16 0x00010000
#define CPU_SCS_NVIC_ISER0_SETENA16_BITN 16
#define CPU_SCS_NVIC_ISER0_SETENA16_M 0x00010000
#define CPU_SCS_NVIC_ISER0_SETENA16_S 16
// Field: [15] SETENA15
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 15 (See EVENT:CPUIRQSEL15.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA15 0x00008000
#define CPU_SCS_NVIC_ISER0_SETENA15_BITN 15
#define CPU_SCS_NVIC_ISER0_SETENA15_M 0x00008000
#define CPU_SCS_NVIC_ISER0_SETENA15_S 15
// Field: [14] SETENA14
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 14 (See EVENT:CPUIRQSEL14.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA14 0x00004000
#define CPU_SCS_NVIC_ISER0_SETENA14_BITN 14
#define CPU_SCS_NVIC_ISER0_SETENA14_M 0x00004000
#define CPU_SCS_NVIC_ISER0_SETENA14_S 14
// Field: [13] SETENA13
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 13 (See EVENT:CPUIRQSEL13.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA13 0x00002000
#define CPU_SCS_NVIC_ISER0_SETENA13_BITN 13
#define CPU_SCS_NVIC_ISER0_SETENA13_M 0x00002000
#define CPU_SCS_NVIC_ISER0_SETENA13_S 13
// Field: [12] SETENA12
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 12 (See EVENT:CPUIRQSEL12.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA12 0x00001000
#define CPU_SCS_NVIC_ISER0_SETENA12_BITN 12
#define CPU_SCS_NVIC_ISER0_SETENA12_M 0x00001000
#define CPU_SCS_NVIC_ISER0_SETENA12_S 12
// Field: [11] SETENA11
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 11 (See EVENT:CPUIRQSEL11.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA11 0x00000800
#define CPU_SCS_NVIC_ISER0_SETENA11_BITN 11
#define CPU_SCS_NVIC_ISER0_SETENA11_M 0x00000800
#define CPU_SCS_NVIC_ISER0_SETENA11_S 11
// Field: [10] SETENA10
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 10 (See EVENT:CPUIRQSEL10.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA10 0x00000400
#define CPU_SCS_NVIC_ISER0_SETENA10_BITN 10
#define CPU_SCS_NVIC_ISER0_SETENA10_M 0x00000400
#define CPU_SCS_NVIC_ISER0_SETENA10_S 10
// Field: [9] SETENA9
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 9 (See EVENT:CPUIRQSEL9.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA9 0x00000200
#define CPU_SCS_NVIC_ISER0_SETENA9_BITN 9
#define CPU_SCS_NVIC_ISER0_SETENA9_M 0x00000200
#define CPU_SCS_NVIC_ISER0_SETENA9_S 9
// Field: [8] SETENA8
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 8 (See EVENT:CPUIRQSEL8.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA8 0x00000100
#define CPU_SCS_NVIC_ISER0_SETENA8_BITN 8
#define CPU_SCS_NVIC_ISER0_SETENA8_M 0x00000100
#define CPU_SCS_NVIC_ISER0_SETENA8_S 8
// Field: [7] SETENA7
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 7 (See EVENT:CPUIRQSEL7.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA7 0x00000080
#define CPU_SCS_NVIC_ISER0_SETENA7_BITN 7
#define CPU_SCS_NVIC_ISER0_SETENA7_M 0x00000080
#define CPU_SCS_NVIC_ISER0_SETENA7_S 7
// Field: [6] SETENA6
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 6 (See EVENT:CPUIRQSEL6.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA6 0x00000040
#define CPU_SCS_NVIC_ISER0_SETENA6_BITN 6
#define CPU_SCS_NVIC_ISER0_SETENA6_M 0x00000040
#define CPU_SCS_NVIC_ISER0_SETENA6_S 6
// Field: [5] SETENA5
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 5 (See EVENT:CPUIRQSEL5.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA5 0x00000020
#define CPU_SCS_NVIC_ISER0_SETENA5_BITN 5
#define CPU_SCS_NVIC_ISER0_SETENA5_M 0x00000020
#define CPU_SCS_NVIC_ISER0_SETENA5_S 5
// Field: [4] SETENA4
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 4 (See EVENT:CPUIRQSEL4.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA4 0x00000010
#define CPU_SCS_NVIC_ISER0_SETENA4_BITN 4
#define CPU_SCS_NVIC_ISER0_SETENA4_M 0x00000010
#define CPU_SCS_NVIC_ISER0_SETENA4_S 4
// Field: [3] SETENA3
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 3 (See EVENT:CPUIRQSEL3.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA3 0x00000008
#define CPU_SCS_NVIC_ISER0_SETENA3_BITN 3
#define CPU_SCS_NVIC_ISER0_SETENA3_M 0x00000008
#define CPU_SCS_NVIC_ISER0_SETENA3_S 3
// Field: [2] SETENA2
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 2 (See EVENT:CPUIRQSEL2.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA2 0x00000004
#define CPU_SCS_NVIC_ISER0_SETENA2_BITN 2
#define CPU_SCS_NVIC_ISER0_SETENA2_M 0x00000004
#define CPU_SCS_NVIC_ISER0_SETENA2_S 2
// Field: [1] SETENA1
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 1 (See EVENT:CPUIRQSEL1.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA1 0x00000002
#define CPU_SCS_NVIC_ISER0_SETENA1_BITN 1
#define CPU_SCS_NVIC_ISER0_SETENA1_M 0x00000002
#define CPU_SCS_NVIC_ISER0_SETENA1_S 1
// Field: [0] SETENA0
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 0 (See EVENT:CPUIRQSEL0.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER0_SETENA0 0x00000001
#define CPU_SCS_NVIC_ISER0_SETENA0_BITN 0
#define CPU_SCS_NVIC_ISER0_SETENA0_M 0x00000001
#define CPU_SCS_NVIC_ISER0_SETENA0_S 0
//*****************************************************************************
//
// Register: CPU_SCS_O_NVIC_ISER1
//
//*****************************************************************************
// Field: [1] SETENA33
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 33 (See EVENT:CPUIRQSEL33.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER1_SETENA33 0x00000002
#define CPU_SCS_NVIC_ISER1_SETENA33_BITN 1
#define CPU_SCS_NVIC_ISER1_SETENA33_M 0x00000002
#define CPU_SCS_NVIC_ISER1_SETENA33_S 1
// Field: [0] SETENA32
//
// Writing 0 to this bit has no effect, writing 1 to this bit enables the
// interrupt number 32 (See EVENT:CPUIRQSEL32.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ISER1_SETENA32 0x00000001
#define CPU_SCS_NVIC_ISER1_SETENA32_BITN 0
#define CPU_SCS_NVIC_ISER1_SETENA32_M 0x00000001
#define CPU_SCS_NVIC_ISER1_SETENA32_S 0
//*****************************************************************************
//
// Register: CPU_SCS_O_NVIC_ICER0
//
//*****************************************************************************
// Field: [31] CLRENA31
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 31 (See EVENT:CPUIRQSEL31.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA31 0x80000000
#define CPU_SCS_NVIC_ICER0_CLRENA31_BITN 31
#define CPU_SCS_NVIC_ICER0_CLRENA31_M 0x80000000
#define CPU_SCS_NVIC_ICER0_CLRENA31_S 31
// Field: [30] CLRENA30
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 30 (See EVENT:CPUIRQSEL30.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA30 0x40000000
#define CPU_SCS_NVIC_ICER0_CLRENA30_BITN 30
#define CPU_SCS_NVIC_ICER0_CLRENA30_M 0x40000000
#define CPU_SCS_NVIC_ICER0_CLRENA30_S 30
// Field: [29] CLRENA29
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 29 (See EVENT:CPUIRQSEL29.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA29 0x20000000
#define CPU_SCS_NVIC_ICER0_CLRENA29_BITN 29
#define CPU_SCS_NVIC_ICER0_CLRENA29_M 0x20000000
#define CPU_SCS_NVIC_ICER0_CLRENA29_S 29
// Field: [28] CLRENA28
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 28 (See EVENT:CPUIRQSEL28.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA28 0x10000000
#define CPU_SCS_NVIC_ICER0_CLRENA28_BITN 28
#define CPU_SCS_NVIC_ICER0_CLRENA28_M 0x10000000
#define CPU_SCS_NVIC_ICER0_CLRENA28_S 28
// Field: [27] CLRENA27
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 27 (See EVENT:CPUIRQSEL27.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA27 0x08000000
#define CPU_SCS_NVIC_ICER0_CLRENA27_BITN 27
#define CPU_SCS_NVIC_ICER0_CLRENA27_M 0x08000000
#define CPU_SCS_NVIC_ICER0_CLRENA27_S 27
// Field: [26] CLRENA26
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 26 (See EVENT:CPUIRQSEL26.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA26 0x04000000
#define CPU_SCS_NVIC_ICER0_CLRENA26_BITN 26
#define CPU_SCS_NVIC_ICER0_CLRENA26_M 0x04000000
#define CPU_SCS_NVIC_ICER0_CLRENA26_S 26
// Field: [25] CLRENA25
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 25 (See EVENT:CPUIRQSEL25.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA25 0x02000000
#define CPU_SCS_NVIC_ICER0_CLRENA25_BITN 25
#define CPU_SCS_NVIC_ICER0_CLRENA25_M 0x02000000
#define CPU_SCS_NVIC_ICER0_CLRENA25_S 25
// Field: [24] CLRENA24
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 24 (See EVENT:CPUIRQSEL24.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA24 0x01000000
#define CPU_SCS_NVIC_ICER0_CLRENA24_BITN 24
#define CPU_SCS_NVIC_ICER0_CLRENA24_M 0x01000000
#define CPU_SCS_NVIC_ICER0_CLRENA24_S 24
// Field: [23] CLRENA23
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 23 (See EVENT:CPUIRQSEL23.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA23 0x00800000
#define CPU_SCS_NVIC_ICER0_CLRENA23_BITN 23
#define CPU_SCS_NVIC_ICER0_CLRENA23_M 0x00800000
#define CPU_SCS_NVIC_ICER0_CLRENA23_S 23
// Field: [22] CLRENA22
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 22 (See EVENT:CPUIRQSEL22.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA22 0x00400000
#define CPU_SCS_NVIC_ICER0_CLRENA22_BITN 22
#define CPU_SCS_NVIC_ICER0_CLRENA22_M 0x00400000
#define CPU_SCS_NVIC_ICER0_CLRENA22_S 22
// Field: [21] CLRENA21
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 21 (See EVENT:CPUIRQSEL21.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA21 0x00200000
#define CPU_SCS_NVIC_ICER0_CLRENA21_BITN 21
#define CPU_SCS_NVIC_ICER0_CLRENA21_M 0x00200000
#define CPU_SCS_NVIC_ICER0_CLRENA21_S 21
// Field: [20] CLRENA20
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 20 (See EVENT:CPUIRQSEL20.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA20 0x00100000
#define CPU_SCS_NVIC_ICER0_CLRENA20_BITN 20
#define CPU_SCS_NVIC_ICER0_CLRENA20_M 0x00100000
#define CPU_SCS_NVIC_ICER0_CLRENA20_S 20
// Field: [19] CLRENA19
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 19 (See EVENT:CPUIRQSEL19.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA19 0x00080000
#define CPU_SCS_NVIC_ICER0_CLRENA19_BITN 19
#define CPU_SCS_NVIC_ICER0_CLRENA19_M 0x00080000
#define CPU_SCS_NVIC_ICER0_CLRENA19_S 19
// Field: [18] CLRENA18
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 18 (See EVENT:CPUIRQSEL18.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA18 0x00040000
#define CPU_SCS_NVIC_ICER0_CLRENA18_BITN 18
#define CPU_SCS_NVIC_ICER0_CLRENA18_M 0x00040000
#define CPU_SCS_NVIC_ICER0_CLRENA18_S 18
// Field: [17] CLRENA17
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 17 (See EVENT:CPUIRQSEL17.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA17 0x00020000
#define CPU_SCS_NVIC_ICER0_CLRENA17_BITN 17
#define CPU_SCS_NVIC_ICER0_CLRENA17_M 0x00020000
#define CPU_SCS_NVIC_ICER0_CLRENA17_S 17
// Field: [16] CLRENA16
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 16 (See EVENT:CPUIRQSEL16.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA16 0x00010000
#define CPU_SCS_NVIC_ICER0_CLRENA16_BITN 16
#define CPU_SCS_NVIC_ICER0_CLRENA16_M 0x00010000
#define CPU_SCS_NVIC_ICER0_CLRENA16_S 16
// Field: [15] CLRENA15
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 15 (See EVENT:CPUIRQSEL15.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA15 0x00008000
#define CPU_SCS_NVIC_ICER0_CLRENA15_BITN 15
#define CPU_SCS_NVIC_ICER0_CLRENA15_M 0x00008000
#define CPU_SCS_NVIC_ICER0_CLRENA15_S 15
// Field: [14] CLRENA14
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 14 (See EVENT:CPUIRQSEL14.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA14 0x00004000
#define CPU_SCS_NVIC_ICER0_CLRENA14_BITN 14
#define CPU_SCS_NVIC_ICER0_CLRENA14_M 0x00004000
#define CPU_SCS_NVIC_ICER0_CLRENA14_S 14
// Field: [13] CLRENA13
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 13 (See EVENT:CPUIRQSEL13.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA13 0x00002000
#define CPU_SCS_NVIC_ICER0_CLRENA13_BITN 13
#define CPU_SCS_NVIC_ICER0_CLRENA13_M 0x00002000
#define CPU_SCS_NVIC_ICER0_CLRENA13_S 13
// Field: [12] CLRENA12
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 12 (See EVENT:CPUIRQSEL12.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA12 0x00001000
#define CPU_SCS_NVIC_ICER0_CLRENA12_BITN 12
#define CPU_SCS_NVIC_ICER0_CLRENA12_M 0x00001000
#define CPU_SCS_NVIC_ICER0_CLRENA12_S 12
// Field: [11] CLRENA11
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 11 (See EVENT:CPUIRQSEL11.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA11 0x00000800
#define CPU_SCS_NVIC_ICER0_CLRENA11_BITN 11
#define CPU_SCS_NVIC_ICER0_CLRENA11_M 0x00000800
#define CPU_SCS_NVIC_ICER0_CLRENA11_S 11
// Field: [10] CLRENA10
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 10 (See EVENT:CPUIRQSEL10.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA10 0x00000400
#define CPU_SCS_NVIC_ICER0_CLRENA10_BITN 10
#define CPU_SCS_NVIC_ICER0_CLRENA10_M 0x00000400
#define CPU_SCS_NVIC_ICER0_CLRENA10_S 10
// Field: [9] CLRENA9
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 9 (See EVENT:CPUIRQSEL9.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA9 0x00000200
#define CPU_SCS_NVIC_ICER0_CLRENA9_BITN 9
#define CPU_SCS_NVIC_ICER0_CLRENA9_M 0x00000200
#define CPU_SCS_NVIC_ICER0_CLRENA9_S 9
// Field: [8] CLRENA8
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 8 (See EVENT:CPUIRQSEL8.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA8 0x00000100
#define CPU_SCS_NVIC_ICER0_CLRENA8_BITN 8
#define CPU_SCS_NVIC_ICER0_CLRENA8_M 0x00000100
#define CPU_SCS_NVIC_ICER0_CLRENA8_S 8
// Field: [7] CLRENA7
//
// Writing 0 to this bit has no effect, writing 1 to this bit disables the
// interrupt number 7 (See EVENT:CPUIRQSEL7.EV for details). Reading the bit
// returns its current enable state.
#define CPU_SCS_NVIC_ICER0_CLRENA7 0x00000080
#define CPU_SCS_NVIC_ICER0_CLRENA7_BITN 7
#define CPU_SCS_NVIC_ICER0_CLRENA7_M 0x00000080
#define CPU_SCS_NVIC_ICER0_CLRENA7_S 7
// Field: [6] CLRENA6