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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
|
//*****************************************************************************
//
// Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
//
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 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.
//
// Neither the name of Texas Instruments Incorporated 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
// OWNER 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_FLASH_CTRL_H__
#define __HW_FLASH_CTRL_H__
//*****************************************************************************
//
// The following are defines for the FLASH_CTRL register offsets.
//
//*****************************************************************************
#define FLASH_CTRL_O_FMA 0x00000000 // Flash Memory Address (FMA)
// offset 0x000 During a write
// operation this register contains
// a 4-byte-aligned address and
// specifies where the data is
// written. During erase operations
// this register contains a 1
// KB-aligned CPU byte address and
// specifies which block is erased.
// Note that the alignment
// requirements must be met by
// software or the results of the
// operation are unpredictable.
#define FLASH_CTRL_O_FMD 0x00000004 // Flash Memory Data (FMD) offset
// 0x004 This register contains the
// data to be written during the
// programming cycle or read during
// the read cycle. Note that the
// contents of this register are
// undefined for a read access of an
// execute-only block. This register
// is not used during erase cycles.
#define FLASH_CTRL_O_FMC 0x00000008 // Flash Memory Control (FMC)
// offset 0x008 When this register
// is written the Flash memory
// controller initiates the
// appropriate access cycle for the
// location specified by the Flash
// Memory Address (FMA) register .
// If the access is a write access
// the data contained in the Flash
// Memory Data (FMD) register is
// written to the specified address.
// This register must be the final
// register written and initiates
// the memory operation. The four
// control bits in the lower byte of
// this register are used to
// initiate memory operations.
#define FLASH_CTRL_O_FCRIS 0x0000000C // Flash Controller Raw Interrupt
// Status (FCRIS) offset 0x00C This
// register indicates that the Flash
// memory controller has an
// interrupt condition. An interrupt
// is sent to the interrupt
// controller only if the
// corresponding FCIM register bit
// is set.
#define FLASH_CTRL_O_FCIM 0x00000010 // Flash Controller Interrupt Mask
// (FCIM) offset 0x010 This register
// controls whether the Flash memory
// controller generates interrupts
// to the controller.
#define FLASH_CTRL_O_FCMISC 0x00000014 // Flash Controller Masked
// Interrupt Status and Clear
// (FCMISC) offset 0x014 This
// register provides two functions.
// First it reports the cause of an
// interrupt by indicating which
// interrupt source or sources are
// signalling the interrupt. Second
// it serves as the method to clear
// the interrupt reporting.
#define FLASH_CTRL_O_FMC2 0x00000020 // Flash Memory Control 2 (FMC2)
// offset 0x020 When this register
// is written the Flash memory
// controller initiates the
// appropriate access cycle for the
// location specified by the Flash
// Memory Address (FMA) register .
// If the access is a write access
// the data contained in the Flash
// Write Buffer (FWB) registers is
// written. This register must be
// the final register written as it
// initiates the memory operation.
#define FLASH_CTRL_O_FWBVAL 0x00000030 // Flash Write Buffer Valid
// (FWBVAL) offset 0x030 This
// register provides a bitwise
// status of which FWBn registers
// have been written by the
// processor since the last write of
// the Flash memory write buffer.
// The entries with a 1 are written
// on the next write of the Flash
// memory write buffer. This
// register is cleared after the
// write operation by hardware. A
// protection violation on the write
// operation also clears this
// status. Software can program the
// same 32 words to various Flash
// memory locations by setting the
// FWB[n] bits after they are
// cleared by the write operation.
// The next write operation then
// uses the same data as the
// previous one. In addition if a
// FWBn register change should not
// be written to Flash memory
// software can clear the
// corresponding FWB[n] bit to
// preserve the existing data when
// the next write operation occurs.
#define FLASH_CTRL_O_FWB1 0x00000100 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB2 0x00000104 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB3 0x00000108 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB4 0x0000010C // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB5 0x00000110 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB6 0x00000114 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB7 0x00000118 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB8 0x0000011C // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB9 0x00000120 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB10 0x00000124 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB11 0x00000128 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB12 0x0000012C // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB13 0x00000130 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB14 0x00000134 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB15 0x00000138 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB16 0x0000013C // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB17 0x00000140 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB18 0x00000144 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB19 0x00000148 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB20 0x0000014C // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB21 0x00000150 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB22 0x00000154 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB23 0x00000158 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB24 0x0000015C // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB25 0x00000160 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB26 0x00000164 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB27 0x00000168 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB28 0x0000016C // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB29 0x00000170 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB30 0x00000174 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB31 0x00000178 // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FWB32 0x0000017C // Flash Write Buffer n (FWBn)
// offset 0x100 - 0x17C These 32
// registers hold the contents of
// the data to be written into the
// Flash memory on a buffered Flash
// memory write operation. The
// offset selects one of the 32-bit
// registers. Only FWBn registers
// that have been updated since the
// preceding buffered Flash memory
// write operation are written into
// the Flash memory so it is not
// necessary to write the entire
// bank of registers in order to
// write 1 or 2 words. The FWBn
// registers are written into the
// Flash memory with the FWB0
// register corresponding to the
// address contained in FMA. FWB1 is
// written to the address FMA+0x4
// etc. Note that only data bits
// that are 0 result in the Flash
// memory being modified. A data bit
// that is 1 leaves the content of
// the Flash memory bit at its
// previous value.
#define FLASH_CTRL_O_FSIZE 0x00000FC0 // Flash Size (FSIZE) offset 0xFC0
// This register indicates the size
// of the on-chip Flash memory.
// Important: This register should
// be used to determine the size of
// the Flash memory that is
// implemented on this
// microcontroller. However to
// support legacy software the DC0
// register is available. A read of
// the DC0 register correctly
// identifies legacy memory sizes.
// Software must use the FSIZE
// register for memory sizes that
// are not listed in the DC0
// register description.
#define FLASH_CTRL_O_SSIZE 0x00000FC4 // SRAM Size (SSIZE) offset 0xFC4
// This register indicates the size
// of the on-chip SRAM. Important:
// This register should be used to
// determine the size of the SRAM
// that is implemented on this
// microcontroller. However to
// support legacy software the DC0
// register is available. A read of
// the DC0 register correctly
// identifies legacy memory sizes.
// Software must use the SSIZE
// register for memory sizes that
// are not listed in the DC0
// register description.
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FMA register.
//
//******************************************************************************
#define FLASH_CTRL_FMA_OFFSET_M 0x0003FFFF // Address Offset Address offset in
// Flash memory where operation is
// performed except for nonvolatile
// registers
#define FLASH_CTRL_FMA_OFFSET_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FMD register.
//
//******************************************************************************
#define FLASH_CTRL_FMD_DATA_M 0xFFFFFFFF // Data Value Data value for write
// operation.
#define FLASH_CTRL_FMD_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FMC register.
//
//******************************************************************************
#define FLASH_CTRL_FMC_WRKEY_M 0xFFFF0000 // Flash Memory Write Key This
// field contains a write key which
// is used to minimize the incidence
// of accidental Flash memory
// writes. The value 0xA442 must be
// written into this field for a
// Flash memory write to occur.
// Writes to the FMC register
// without this WRKEY value are
// ignored. A read of this field
// returns the value 0.
#define FLASH_CTRL_FMC_WRKEY_S 16
#define FLASH_CTRL_FMC_COMT 0x00000008 // Commit Register Value This bit
// is used to commit writes to
// Flash-memory-resident registers
// and to monitor the progress of
// that process. Value Description 1
// Set this bit to commit (write)
// the register value to a
// Flash-memory-resident register.
// When read a 1 indicates that the
// previous commit access is not
// complete. 0 A write of 0 has no
// effect on the state of this bit.
// When read a 0 indicates that the
// previous commit access is
// complete.
#define FLASH_CTRL_FMC_MERASE1 0x00000004 // Mass Erase Flash Memory This bit
// is used to mass erase the Flash
// main memory and to monitor the
// progress of that process. Value
// Description 1 Set this bit to
// erase the Flash main memory. When
// read a 1 indicates that the
// previous mass erase access is not
// complete. 0 A write of 0 has no
// effect on the state of this bit.
// When read a 0 indicates that the
// previous mass erase access is
// complete.
#define FLASH_CTRL_FMC_ERASE 0x00000002 // Erase a Page of Flash Memory
// This bit is used to erase a page
// of Flash memory and to monitor
// the progress of that process.
// Value Description 1 Set this bit
// to erase the Flash memory page
// specified by the contents of the
// FMA register. When read a 1
// indicates that the previous page
// erase access is not complete. 0 A
// write of 0 has no effect on the
// state of this bit. When read a 0
// indicates that the previous page
// erase access is complete.
#define FLASH_CTRL_FMC_WRITE 0x00000001 // Write a Word into Flash Memory
// This bit is used to write a word
// into Flash memory and to monitor
// the progress of that process.
// Value Description 1 Set this bit
// to write the data stored in the
// FMD register into the Flash
// memory location specified by the
// contents of the FMA register.
// When read a 1 indicates that the
// write update access is not
// complete. 0 A write of 0 has no
// effect on the state of this bit.
// When read a 0 indicates that the
// previous write update access is
// complete.
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FCRIS register.
//
//******************************************************************************
#define FLASH_CTRL_FCRIS_PROGRIS \
0x00002000 // Program Verify Error Raw
// Interrupt Status Value
// Description 1 An interrupt is
// pending because the verify of a
// PROGRAM operation failed. 0 An
// interrupt has not occurred. This
// bit is cleared by writing a 1 to
// the PROGMISC bit in the FCMISC
// register.
#define FLASH_CTRL_FCRIS_ERRIS 0x00000800 // Erase Verify Error Raw Interrupt
// Status Value Description 1 An
// interrupt is pending because the
// verify of an ERASE operation
// failed. 0 An interrupt has not
// occurred. This bit is cleared by
// writing a 1 to the ERMISC bit in
// the FCMISC register.
#define FLASH_CTRL_FCRIS_INVDRIS \
0x00000400 // Invalid Data Raw Interrupt
// Status Value Description 1 An
// interrupt is pending because a
// bit that was previously
// programmed as a 0 is now being
// requested to be programmed as a
// 1. 0 An interrupt has not
// occurred. This bit is cleared by
// writing a 1 to the INVMISC bit in
// the FCMISC register.
#define FLASH_CTRL_FCRIS_VOLTRIS \
0x00000200 // Pump Voltage Raw Interrupt
// Status Value Description 1 An
// interrupt is pending because the
// regulated voltage of the pump
// went out of spec during the Flash
// operation and the operation was
// terminated. 0 An interrupt has
// not occurred. This bit is cleared
// by writing a 1 to the VOLTMISC
// bit in the FCMISC register.
#define FLASH_CTRL_FCRIS_ERIS 0x00000004 // EEPROM Raw Interrupt Status This
// bit provides status EEPROM
// operation. Value Description 1 An
// EEPROM interrupt has occurred. 0
// An EEPROM interrupt has not
// occurred. This bit is cleared by
// writing a 1 to the EMISC bit in
// the FCMISC register.
#define FLASH_CTRL_FCRIS_PRIS 0x00000002 // Programming Raw Interrupt Status
// This bit provides status on
// programming cycles which are
// write or erase actions generated
// through the FMC or FMC2 register
// bits (see page 537 and page 549).
// Value Description 1 The
// programming or erase cycle has
// completed. 0 The programming or
// erase cycle has not completed.
// This status is sent to the
// interrupt controller when the
// PMASK bit in the FCIM register is
// set. This bit is cleared by
// writing a 1 to the PMISC bit in
// the FCMISC register.
#define FLASH_CTRL_FCRIS_ARIS 0x00000001 // Access Raw Interrupt Status
// Value Description 1 A program or
// erase action was attempted on a
// block of Flash memory that
// contradicts the protection policy
// for that block as set in the
// FMPPEn registers. 0 No access has
// tried to improperly program or
// erase the Flash memory. This
// status is sent to the interrupt
// controller when the AMASK bit in
// the FCIM register is set. This
// bit is cleared by writing a 1 to
// the AMISC bit in the FCMISC
// register.
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FCIM register.
//
//******************************************************************************
#define FLASH_CTRL_FCIM_ILLMASK 0x00004000 // Illegal Address Interrupt Mask
// Value Description 1 An interrupt
// is sent to the interrupt
// controller when the ILLARIS bit
// is set. 0 The ILLARIS interrupt
// is suppressed and not sent to the
// interrupt controller.
#define FLASH_CTRL_FCIM_PROGMASK \
0x00002000 // PROGVER Interrupt Mask Value
// Description 1 An interrupt is
// sent to the interrupt controller
// when the PROGRIS bit is set. 0
// The PROGRIS interrupt is
// suppressed and not sent to the
// interrupt controller.
#define FLASH_CTRL_FCIM_PREMASK 0x00001000 // PREVER Interrupt Mask Value
// Description 1 An interrupt is
// sent to the interrupt controller
// when the PRERIS bit is set. 0 The
// PRERIS interrupt is suppressed
// and not sent to the interrupt
// controller.
#define FLASH_CTRL_FCIM_ERMASK 0x00000800 // ERVER Interrupt Mask Value
// Description 1 An interrupt is
// sent to the interrupt controller
// when the ERRIS bit is set. 0 The
// ERRIS interrupt is suppressed and
// not sent to the interrupt
// controller.
#define FLASH_CTRL_FCIM_INVDMASK \
0x00000400 // Invalid Data Interrupt Mask
// Value Description 1 An interrupt
// is sent to the interrupt
// controller when the INVDRIS bit
// is set. 0 The INVDRIS interrupt
// is suppressed and not sent to the
// interrupt controller.
#define FLASH_CTRL_FCIM_VOLTMASK \
0x00000200 // VOLT Interrupt Mask Value
// Description 1 An interrupt is
// sent to the interrupt controller
// when the VOLTRIS bit is set. 0
// The VOLTRIS interrupt is
// suppressed and not sent to the
// interrupt controller.
#define FLASH_CTRL_FCIM_LOCKMASK \
0x00000100 // LOCK Interrupt Mask Value
// Description 1 An interrupt is
// sent to the interrupt controller
// when the LOCKRIS bit is set. 0
// The LOCKRIS interrupt is
// suppressed and not sent to the
// interrupt controller.
#define FLASH_CTRL_FCIM_EMASK 0x00000004 // EEPROM Interrupt Mask Value
// Description 1 An interrupt is
// sent to the interrupt controller
// when the ERIS bit is set. 0 The
// ERIS interrupt is suppressed and
// not sent to the interrupt
// controller.
#define FLASH_CTRL_FCIM_PMASK 0x00000002 // Programming Interrupt Mask This
// bit controls the reporting of the
// programming raw interrupt status
// to the interrupt controller.
// Value Description 1 An interrupt
// is sent to the interrupt
// controller when the PRIS bit is
// set. 0 The PRIS interrupt is
// suppressed and not sent to the
// interrupt controller.
#define FLASH_CTRL_FCIM_AMASK 0x00000001 // Access Interrupt Mask This bit
// controls the reporting of the
// access raw interrupt status to
// the interrupt controller. Value
// Description 1 An interrupt is
// sent to the interrupt controller
// when the ARIS bit is set. 0 The
// ARIS interrupt is suppressed and
// not sent to the interrupt
// controller.
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FCMISC register.
//
//******************************************************************************
#define FLASH_CTRL_FCMISC_ILLMISC \
0x00004000 // Illegal Address Masked Interrupt
// Status and Clear Value
// Description 1 When read a 1
// indicates that an unmasked
// interrupt was signaled. Writing a
// 1 to this bit clears ILLAMISC and
// also the ILLARIS bit in the FCRIS
// register (see page 540). 0 When
// read a 0 indicates that an
// interrupt has not occurred. A
// write of 0 has no effect on the
// state of this bit.
#define FLASH_CTRL_FCMISC_PROGMISC \
0x00002000 // PROGVER Masked Interrupt Status
// and Clear Value Description 1
// When read a 1 indicates that an
// unmasked interrupt was signaled.
// Writing a 1 to this bit clears
// PROGMISC and also the PROGRIS bit
// in the FCRIS register (see page
// 540). 0 When read a 0 indicates
// that an interrupt has not
// occurred. A write of 0 has no
// effect on the state of this bit.
#define FLASH_CTRL_FCMISC_PREMISC \
0x00001000 // PREVER Masked Interrupt Status
// and Clear Value Description 1
// When read a 1 indicates that an
// unmasked interrupt was signaled.
// Writing a 1 to this bit clears
// PREMISC and also the PRERIS bit
// in the FCRIS register . 0 When
// read a 0 indicates that an
// interrupt has not occurred. A
// write of 0 has no effect on the
// state of this bit.
#define FLASH_CTRL_FCMISC_ERMISC \
0x00000800 // ERVER Masked Interrupt Status
// and Clear Value Description 1
// When read a 1 indicates that an
// unmasked interrupt was signaled.
// Writing a 1 to this bit clears
// ERMISC and also the ERRIS bit in
// the FCRIS register 0 When read a
// 0 indicates that an interrupt has
// not occurred. A write of 0 has no
// effect on the state of this bit.
#define FLASH_CTRL_FCMISC_INVDMISC \
0x00000400 // Invalid Data Masked Interrupt
// Status and Clear Value
// Description 1 When read a 1
// indicates that an unmasked
// interrupt was signaled. Writing a
// 1 to this bit clears INVDMISC and
// also the INVDRIS bit in the FCRIS
// register (see page 540). 0 When
// read a 0 indicates that an
// interrupt has not occurred. A
// write of 0 has no effect on the
// state of this bit.
#define FLASH_CTRL_FCMISC_VOLTMISC \
0x00000200 // VOLT Masked Interrupt Status and
// Clear Value Description 1 When
// read a 1 indicates that an
// unmasked interrupt was signaled.
// Writing a 1 to this bit clears
// VOLTMISC and also the VOLTRIS bit
// in the FCRIS register (see page
// 540). 0 When read a 0 indicates
// that an interrupt has not
// occurred. A write of 0 has no
// effect on the state of this bit.
#define FLASH_CTRL_FCMISC_LOCKMISC \
0x00000100 // LOCK Masked Interrupt Status and
// Clear Value Description 1 When
// read a 1 indicates that an
// unmasked interrupt was signaled.
// Writing a 1 to this bit clears
// LOCKMISC and also the LOCKRIS bit
// in the FCRIS register (see page
// 540). 0 When read a 0 indicates
// that an interrupt has not
// occurred. A write of 0 has no
// effect on the state of this bit.
#define FLASH_CTRL_FCMISC_EMISC 0x00000004 // EEPROM Masked Interrupt Status
// and Clear Value Description 1
// When read a 1 indicates that an
// unmasked interrupt was signaled.
// Writing a 1 to this bit clears
// EMISC and also the ERIS bit in
// the FCRIS register 0 When read a
// 0 indicates that an interrupt has
// not occurred. A write of 0 has no
// effect on the state of this bit.
#define FLASH_CTRL_FCMISC_PMISC 0x00000002 // Programming Masked Interrupt
// Status and Clear Value
// Description 1 When read a 1
// indicates that an unmasked
// interrupt was signaled because a
// programming cycle completed.
// Writing a 1 to this bit clears
// PMISC and also the PRIS bit in
// the FCRIS register 0 When read a
// 0 indicates that a programming
// cycle complete interrupt has not
// occurred. A write of 0 has no
// effect on the state of this bit.
#define FLASH_CTRL_FCMISC_AMISC 0x00000001 // Access Masked Interrupt Status
// and Clear Value Description 1
// When read a 1 indicates that an
// unmasked interrupt was signaled
// because a program or erase action
// was attempted on a block of Flash
// memory that contradicts the
// protection policy for that block
// as set in the FMPPEn registers.
// Writing a 1 to this bit clears
// AMISC and also the ARIS bit in
// the FCRIS register 0 When read a
// 0 indicates that no improper
// accesses have occurred. A write
// of 0 has no effect on the state
// of this bit.
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FMC2 register.
//
//******************************************************************************
#define FLASH_CTRL_FMC2_WRKEY_M 0xFFFF0000 // Flash Memory Write Key This
// field contains a write key which
// is used to minimize the incidence
// of accidental Flash memory
// writes. The value 0xA442 must be
// written into this field for a
// write to occur. Writes to the
// FMC2 register without this WRKEY
// value are ignored. A read of this
// field returns the value 0.
#define FLASH_CTRL_FMC2_WRKEY_S 16
#define FLASH_CTRL_FMC2_WRBUF 0x00000001 // Buffered Flash Memory Write This
// bit is used to start a buffered
// write to Flash memory. Value
// Description 1 Set this bit to
// write the data stored in the FWBn
// registers to the location
// specified by the contents of the
// FMA register. When read a 1
// indicates that the previous
// buffered Flash memory write
// access is not complete. 0 A write
// of 0 has no effect on the state
// of this bit. When read a 0
// indicates that the previous
// buffered Flash memory write
// access is complete.
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWBVAL register.
//
//******************************************************************************
#define FLASH_CTRL_FWBVAL_FWBN_M \
0xFFFFFFFF // Flash Memory Write Buffer Value
// Description 1 The corresponding
// FWBn register has been updated
// since the last buffer write
// operation and is ready to be
// written to Flash memory. 0 The
// corresponding FWBn register has
// no new data to be written. Bit 0
// corresponds to FWB0 offset 0x100
// and bit 31 corresponds to FWB31
// offset 0x13C.
#define FLASH_CTRL_FWBVAL_FWBN_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FWB1 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB1_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB1_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FWB2 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB2_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB2_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FWB3 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB3_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB3_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FWB4 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB4_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB4_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FWB5 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB5_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB5_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FWB6 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB6_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB6_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FWB7 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB7_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB7_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FWB8 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB8_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB8_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the FLASH_CTRL_O_FWB9 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB9_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB9_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB10 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB10_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB10_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB11 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB11_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB11_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB12 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB12_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB12_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB13 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB13_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB13_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB14 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB14_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB14_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB15 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB15_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB15_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB16 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB16_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB16_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB17 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB17_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB17_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB18 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB18_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB18_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB19 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB19_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB19_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB20 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB20_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB20_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB21 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB21_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB21_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB22 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB22_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB22_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB23 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB23_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB23_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB24 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB24_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB24_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB25 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB25_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB25_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB26 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB26_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB26_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB27 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB27_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB27_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB28 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB28_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB28_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB29 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB29_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB29_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB30 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB30_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB30_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB31 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB31_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB31_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FWB32 register.
//
//******************************************************************************
#define FLASH_CTRL_FWB32_DATA_M 0xFFFFFFFF // Data Data to be written into the
// Flash memory.
#define FLASH_CTRL_FWB32_DATA_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_FSIZE register.
//
//******************************************************************************
#define FLASH_CTRL_FSIZE_SIZE_M 0x0000FFFF // Flash Size Indicates the size of
// the on-chip Flash memory. Value
// Description 0x0003 8 KB of Flash
// 0x0007 16 KB of Flash 0x000F 32
// KB of Flash 0x001F 64 KB of Flash
// 0x002F 96 KB of Flash 0x003F 128
// KB of Flash 0x005F 192 KB of
// Flash 0x007F 256 KB of Flash
#define FLASH_CTRL_FSIZE_SIZE_S 0
//******************************************************************************
//
// The following are defines for the bit fields in the
// FLASH_CTRL_O_SSIZE register.
//
//******************************************************************************
#define FLASH_CTRL_SSIZE_SRAM_SIZE_M \
0x0000FFFF // SRAM Size Indicates the size of
// the on-chip SRAM. Value
// Description 0x0007 2 KB of SRAM
// 0x000F 4 KB of SRAM 0x0017 6 KB
// of SRAM 0x001F 8 KB of SRAM
// 0x002F 12 KB of SRAM 0x003F 16 KB
// of SRAM 0x004F 20 KB of SRAM
// 0x005F 24 KB of SRAM 0x007F 32 KB
// of SRAM
#define FLASH_CTRL_SSIZE_SRAM_SIZE_S 0
#define FLASH_CTRL_FMC_WRKEY 0xA4420000 // FLASH write key
#define FLASH_CTRL_FMC2_WRKEY 0xA4420000 // FLASH write key
#define FLASH_CTRL_O_FWBN FLASH_CTRL_O_FWB1
#define FLASH_ERASE_SIZE 0x00000400
#define FLASH_PROTECT_SIZE 0x00000800
#define FLASH_FMP_BLOCK_0 0x00000001 // Enable for block 0
#define FLASH_FMPRE0 0x400FE200 // Flash Memory Protection Read
// Enable 0
#define FLASH_FMPRE1 0x400FE204 // Flash Memory Protection Read
// Enable 1
#define FLASH_FMPRE2 0x400FE208 // Flash Memory Protection Read
// Enable 2
#define FLASH_FMPRE3 0x400FE20C // Flash Memory Protection Read
// Enable 3
#define FLASH_FMPRE4 0x400FE210 // Flash Memory Protection Read
// Enable 4
#define FLASH_FMPRE5 0x400FE214 // Flash Memory Protection Read
// Enable 5
#define FLASH_FMPRE6 0x400FE218 // Flash Memory Protection Read
// Enable 6
#define FLASH_FMPRE7 0x400FE21C // Flash Memory Protection Read
// Enable 7
#define FLASH_FMPRE8 0x400FE220 // Flash Memory Protection Read
// Enable 8
#define FLASH_FMPRE9 0x400FE224 // Flash Memory Protection Read
// Enable 9
#define FLASH_FMPRE10 0x400FE228 // Flash Memory Protection Read
// Enable 10
#define FLASH_FMPRE11 0x400FE22C // Flash Memory Protection Read
// Enable 11
#define FLASH_FMPRE12 0x400FE230 // Flash Memory Protection Read
// Enable 12
#define FLASH_FMPRE13 0x400FE234 // Flash Memory Protection Read
// Enable 13
#define FLASH_FMPRE14 0x400FE238 // Flash Memory Protection Read
// Enable 14
#define FLASH_FMPRE15 0x400FE23C // Flash Memory Protection Read
// Enable 15
#define FLASH_FMPPE0 0x400FE400 // Flash Memory Protection Program
// Enable 0
#define FLASH_FMPPE1 0x400FE404 // Flash Memory Protection Program
// Enable 1
#define FLASH_FMPPE2 0x400FE408 // Flash Memory Protection Program
// Enable 2
#define FLASH_FMPPE3 0x400FE40C // Flash Memory Protection Program
// Enable 3
#define FLASH_FMPPE4 0x400FE410 // Flash Memory Protection Program
// Enable 4
#define FLASH_FMPPE5 0x400FE414 // Flash Memory Protection Program
// Enable 5
#define FLASH_FMPPE6 0x400FE418 // Flash Memory Protection Program
// Enable 6
#define FLASH_FMPPE7 0x400FE41C // Flash Memory Protection Program
// Enable 7
#define FLASH_FMPPE8 0x400FE420 // Flash Memory Protection Program
// Enable 8
#define FLASH_FMPPE9 0x400FE424 // Flash Memory Protection Program
// Enable 9
#define FLASH_FMPPE10 0x400FE428 // Flash Memory Protection Program
// Enable 10
#define FLASH_FMPPE11 0x400FE42C // Flash Memory Protection Program
// Enable 11
#define FLASH_FMPPE12 0x400FE430 // Flash Memory Protection Program
// Enable 12
#define FLASH_FMPPE13 0x400FE434 // Flash Memory Protection Program
// Enable 13
#define FLASH_FMPPE14 0x400FE438 // Flash Memory Protection Program
// Enable 14
#define FLASH_FMPPE15 0x400FE43C // Flash Memory Protection Program
// Enable 15
#define FLASH_USECRL 0x400FE140 // USec Reload
#define FLASH_CTRL_ERASE_SIZE 0x00000400
#endif // __HW_FLASH_CTRL_H__
|