forked from alifsemi/alif_ensemble-cmsis-dfp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlifSemiconductor.Ensemble.pdsc
1991 lines (1882 loc) · 136 KB
/
AlifSemiconductor.Ensemble.pdsc
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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="1.7.40" xs:noNamespaceSchemaLocation="https://raw.githubusercontent.com/Open-CMSIS-Pack/Open-CMSIS-Pack-Spec/v1.7.40/schema/PACK.xsd">
<vendor>AlifSemiconductor</vendor>
<name>Ensemble</name>
<description>Alif Semiconductor Ensemble Device Family Pack</description>
<url>https://github.com/alifsemi/alif_ensemble-cmsis-dfp/raw/main/</url>
<supportContact>support@alifsemi.com</supportContact>
<!-- optional license file -->
<!--
<license>
</license>
-->
<releases>
<release version="2.0.0-dev">
Proposal development...
- change component class for drivers that comply to CMSIS defined APIs
- update to CMSIS-Compiler 2.0.0 or higher
- add CMSIS GPIO driver that uses GPIO interface specification introduced by CMSIS 6
</release>
<release version="1.3.1" tag="v1.3.1" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.3.1/AlifSemiconductor.Ensemble.1.3.1.pack" date="2024-10-29">
- Power off will wait till all queued data is transmitted in UART
- update se services to FWv1.101
- Build fix for LP timer as retargetting uart.
- BECP-2265 Support for OV5675 Camera Sensor
- Add LPSPI Blocking mode macro in RTE_Device.h
- Add ifdef guards for M55 SYSTEM_CLOCK
- LLVM CLang fixes - add copy and zero table handling for llvm clang builds
- Fix CMSIS_6 related Warnings
</release>
<release version="1.3.0" tag="v1.3.0" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.3.0/AlifSemiconductor.Ensemble.1.3.0.pack" date="2024-10-04">
- ICM42670 driver
- New component for MIPI DPHY
- Support for ILI9488 1-lane Display
- Support for AR0145 Camera Sensor
- Support for OV5647 Camera Sensor
- Updated I3C Driver
- Baremetal FATFS demo for SD
- Update SE services to v1.100.0
</release>
<release version="1.2.2" tag="v1.2.2" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.2.2/AlifSemiconductor.Ensemble.1.2.2.pack" date="2024-08-13">
- update SD Driver for various fixes
- Add emmc init sequence
- Low Capacity SD card support
</release>
<release version="1.2.1" tag="v1.2.1" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.2.1/AlifSemiconductor.Ensemble.1.2.1.pack" date="2024-06-27">
- update SE services to 1.97.0
</release>
<release version="1.2.0" tag="v1.2.0" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.2.0/AlifSemiconductor.Ensemble.1.2.0.pack" date="2024-06-19">
- CANFD Blocking mode support
- FreeRTOS test apps for DMA, I2S, ADC
- Add Support for RAW8 and RGB565 for MT9M114
- MT9M114-mipi, HM0360 Camera sensor support
- Polling mode driver for PDM, CAN-FD, I2S, LPSPI
- SDMMC Driver IRQ mode support
- Updates in DMA, SPI, I2S, UART, SD, CAN-FD driver
- Updates in UART, I2C, ADC, PM, SDC, CAN-FD applications
- Auto timing calculation for CSI
- Compiler warnings and Error Fixes
- Change SDMMC default clock to 50MHz
- Update SE services to v1.96.0
</release>
<release version="1.1.3" tag="v1.1.3" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.1.3/AlifSemiconductor.Ensemble.1.1.3.pack" date="2024-05-13">
- Fix FLM file format issue
- Minor updates to Demo_pm_baremetal and mhu_sender sources
- Update SE services to v1.0.94
</release>
<release version="1.1.2" tag="v1.1.2" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.1.2/AlifSemiconductor.Ensemble.1.1.2.pack" date="2024-04-19">
- Update SE services to v1.0.93
</release>
<release version="1.1.1" tag="v1.1.1" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.1.1/AlifSemiconductor.Ensemble.1.1.1.pack" date="2024-03-25">
- Update SE services to v1.0.92
- Update drivers and testapps
- Rename HSCMP component as CMP
</release>
<release version="1.0.0" date="2023-11-15">
Initial release
</release>
</releases>
<keywords>
<!-- keywords for indexing -->
<keyword>Alif Semiconductor</keyword>
<keyword>Ensemble</keyword>
</keywords>
<!-- devices section : Describes Alif Semiconductor Fusion Processor SOC -->
<devices>
<!-- ******************** Alif Semiconductor Fusion Processor ******************** -->
<family Dfamily="Ensemble" Dvendor="Alif Semiconductor:165">
<!--book name="Device/AlifSemi/Documents/Arm Cortex-M55 Processor Datasheet.pdf" title="Arm Cortex-M55 Processor Datasheet"/-->
<!-- Debug configuration settings -->
<!-- Removing SDF file till MDK fixes it -->
<!--<debugconfig sdf="Boards/Alif Semiconductor/Fusion/Fusion.sdf" dormant="true"/>-->
<debugconfig dormant="true"/>
<description>
The Alif Semiconductor Ensemble family of Microcontrollers and Fusion processors are built on the latest generation embedded processing technology that scale from single Arm® Cortex-M55 MCUs to a new class of multi-core devices — fusion processors — that blend up to two Cortex-M55 MCU cores, up to two Cortex-A32 microprocessors (MPU) cores capable of running high-level operating systems, and up to two Arm Ethos-U55 microNPUs for artificial intelligence (AI) and machine learning (ML) acceleration. Ensemble family devices contain an advanced secure enclave that provides multiple layers of security, such as device integrity protection, secure identity and strong root-of-trust, secure lifecycle management, large on-chip SRAM and nonvolatile memory, accelerated graphics, imaging, and class-leading power characteristics.
</description>
<algorithm name="Flash/algorithms/Ensemble.FLM" start="0x80000000" size="0x00580000" RAMstart="0x00000000" RAMsize="0x20000" default="1"/>
<algorithm name="Flash/algorithms/Ensemble_IS25WX256.FLM" start="0xC0000000" size="0x02000000" RAMstart="0x00000000" RAMsize="0x40000" default="1"/>
<sequences>
<sequence name="DebugDeviceUnlock">
<block>
DAP_Delay(500000); // Delay for 500ms
</block>
</sequence>
</sequences>
<subFamily DsubFamily="E7">
<!-- ****************************** E7 ******************************* -->
<!-- Device processor attributes -->
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="400000000" Pname="M55_HP"/>
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="160000000" Pname="M55_HE"/>
<!-- DebugConfig for E7 -->
<debugconfig sdf="Debug/SDF/E7/Ensemble E7.sdf" dormant="true"/>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<!-- On-Chip RAM Regions 13.5MB-->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM6_A" start="0x62000000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM6_B" start="0x62400000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM7" start="0x63000000" size="0x00080000" access="rwx" default="1"/>
<memory name="SRAM8" start="0x63200000" size="0x00200000" access="rwx" default="1"/>
<memory name="SRAM9" start="0x60000000" size="0x000C0000" access="rwx" default="1"/>
<compile Pname="M55_HP" Pdefine="M55_HP"/>
<compile Pname="M55_HE" Pdefine="M55_HE"/>
<!-- Cortex-M55 Access Ports -->
<accessportV2 __apid="0" address="0x00200000"/>
<accessportV2 __apid="1" address="0x00300000"/>
<!-- Documents -->
<book name="https://alifsemi.com/download/ADTS0005" title="E7 Datasheet"/>
<book name="https://alifsemi.com/download/AHRM0005" title="E7 Hardware Reference Manual"/>
<book name="https://alifsemi.com/download/ASRM0001" title="Software Reference Manual"/>
<!-- Device properties, header files and preprocessor defines -->
<feature type="XTAL" n="38400000" name="High-Frequency Crystal Oscillator"/>
<feature type="IntRC" n="76800000" name="High-Frequency Internal RC Oscillator"/>
<feature type="PLL" n="1" name="Internal PLL with 3 clock outputs"/>
<feature type="PowerMode" n="5" name="GO, READY, IDLE, STANDBY, STOP"/>
<feature type="PowerOther" n="1" name="POR"/>
<feature type="PowerOther" n="1" name="BOR"/>
<!--Security-->
<feature type="CoreOther" n="1" name="Full Secure Enclave"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HE"/>
<feature type="CoreOther" n="2" name="CRC Calculation Unit"/>
<!--External Memory-->
<feature type="ComOther" n="2" name="Cryptographic Octal SPI (OSPI)"/>
<feature type="SDIO" n="1" m="8" name="SD/eMMC/SDIO Interface"/>
<!-- Serial Connectivity -->
<feature type="UART" n="8" m="2500000" name="UART Interface"/>
<feature type="UART" n="1" m="1000000" name="Low Power UART Interface"/>
<feature type="SPI" n="4" m="50000000" name="SPI Interface"/>
<feature type="SPI" n="1" m="20000000" name="Low Power SPI Interface"/>
<feature type="I2C" n="4" name="Inter-Integrated Circuit (I2C)"/>
<feature type="I2C" n="1" name="Low Power Inter-Integrated Circuit (LPI2C)"/>
<feature type="ComOther" n="1" name="MIPI I3C"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
<!--High Speed Connectivity-->
<feature type="USBOTG" n="1" name="USB 2.0 Host and Device (DRD) with PHY"/>
<feature type="ETH" n="1" m="100000000" name="Ethernet Media Access Controller (ETH)"/>
<!--Graphics-->
<feature type="Other" n="1" name="2D Graphics Processing Unit (GPU2D)"/>
<!--Display-->
<feature type="GLCD" n="1" m="1280.800" name="Display Parallel Interface"/>
<feature type="Other" n="1" name="MIPI DSI"/>
<!--Camera-->
<feature type="Camera" n="1" m="16" name="Camera Parallel Interface"/>
<feature type="Camera" n="1" m="8" name="Low Power Camera Parallel Interface"/>
<feature type="Other" n="1" name="MIPI CSI-2"/>
<!--Audio-->
<feature type="I2S" n="4" name="Inter-IC Sound (I2S)"/>
<feature type="I2S" n="1" name="Low Power Inter-IC Sound (I2S)"/>
<feature type="ComOther" n="1" m="8" name="Pulse Density Modulation (PDM) Microphone Interface"/>
<feature type="ComOther" n="1" m="8" name="Low Power Pulse Density Modulation (LPPDM) Microphone Interface"/>
<!--Timers-->
<feature type="Timer" n="12" m="32" name="Universal Timer"/>
<feature type="Timer" n="4" m="32" name="Low Power Timer"/>
<feature type="TimerOther" n="4" m="32" name="Quadrature Encoding Counter"/>
<feature type="TimerOther" n="1" m="32" name="Real-Time Counter"/>
<feature type="WDT" n="2" name="Local Watchdog Timer"/>
<!-- Analog -->
<feature type="TempSens" n="1" name="Temperature Sensor"/>
<feature type="ADC" n="3" m="12" name="6 Single-ended or 3 Differential Input ADC, SAR"/>
<feature type="ADC" n="1" m="24" name="4 Differential Input ADC, Sigma-Delta"/>
<feature type="DAC" n="2" m="12" name="Digital-to-Analog Converter"/>
<feature type="AnalogOther" n="4" name="High-Speed Comparator"/>
<feature type="AnalogOther" n="1" name="Low Power Comparator"/>
<!--GPIO-->
<feature type="IOs" n="120" name="General Purpose I/Os, 1.8 V tolerant"/>
<feature type="IOs" n="8" name="General Purpose Flex I/Os, selectable 1.8 V or 3.3 V tolerant"/>
<!--Operation Range-->
<feature type="VCC" n="1.71" m="4.2"/>
<feature type="Temp" n="-40" m="75"/>
<device Dname="AE722F80F55D5AS">
<compile Pname="M55_HP" header="Device/core/M55_HP/include/M55_HP.h" define="M55_HP"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE722F80F55D5AS_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE722F80F55D5AS_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="CSP" n="208" name="WLCSP Package"/>
</device>
<device Dname="AE722F80F55D5LS">
<compile Pname="M55_HP" header="Device/core/M55_HP/include/M55_HP.h" define="M55_HP"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE722F80F55D5LS_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE722F80F55D5LS_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="BGA" n="194" name="FBGA Package"/>
</device>
</subFamily>
<subFamily DsubFamily="E5">
<!-- ****************************** E5 ******************************* -->
<!-- Device processor attributes -->
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="400000000" Pname="M55_HP"/>
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="160000000" Pname="M55_HE"/>
<!-- DebugConfig for E5 -->
<debugconfig sdf="Debug/SDF/E5/Ensemble E5.sdf" dormant="true"/>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<compile Pname="M55_HP" Pdefine="M55_HP"/>
<compile Pname="M55_HE" Pdefine="M55_HE"/>
<!-- Cortex-M55 Access Ports -->
<accessportV2 __apid="0" address="0x00200000"/>
<accessportV2 __apid="1" address="0x00300000"/>
<!-- Documents -->
<book name="https://alifsemi.com/download/ADTS0006" title="E5 Datasheet"/>
<book name="https://alifsemi.com/download/AHRM0006" title="E5 Hardware Reference Manual"/>
<book name="https://alifsemi.com/download/ASRM0001" title="Software Reference Manual"/>
<!-- Device properties, header files and preprocessor defines -->
<feature type="XTAL" n="38400000" name="High-Frequency Crystal Oscillator"/>
<feature type="IntRC" n="76800000" name="High-Frequency Internal RC Oscillator"/>
<feature type="PLL" n="1" name="Internal PLL with 3 clock outputs"/>
<feature type="PowerMode" n="5" name="GO, READY, IDLE, STANDBY, STOP"/>
<feature type="PowerOther" n="1" name="POR"/>
<feature type="PowerOther" n="1" name="BOR"/>
<!--Security-->
<feature type="CoreOther" n="1" name="Full Secure Enclave"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HE"/>
<feature type="CoreOther" n="2" name="CRC Calculation Unit"/>
<!--External Memory-->
<feature type="ComOther" n="2" name="Cryptographic Octal SPI (OSPI)"/>
<feature type="SDIO" n="1" m="8" name="SD/eMMC/SDIO Interface"/>
<!-- Serial Connectivity -->
<feature type="UART" n="8" m="2500000" name="UART Interface"/>
<feature type="UART" n="1" m="1000000" name="Low Power UART Interface"/>
<feature type="SPI" n="4" m="50000000" name="SPI Interface"/>
<feature type="SPI" n="1" m="20000000" name="Low Power SPI Interface"/>
<feature type="I2C" n="4" name="Inter-Integrated Circuit (I2C)"/>
<feature type="I2C" n="1" name="Low Power Inter-Integrated Circuit (LPI2C)"/>
<feature type="ComOther" n="1" name="MIPI I3C"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
<!--High Speed Connectivity-->
<feature type="USBOTG" n="1" name="USB 2.0 Host and Device (DRD) with PHY"/>
<feature type="ETH" n="1" m="100000000" name="Ethernet Media Access Controller (ETH)"/>
<!--Graphics-->
<feature type="Other" n="1" name="2D Graphics Processing Unit (GPU2D)"/>
<!--Display-->
<feature type="GLCD" n="1" m="1280.800" name="Display Parallel Interface"/>
<feature type="Other" n="1" name="MIPI DSI"/>
<!--Camera-->
<feature type="Camera" n="1" m="16" name="Camera Parallel Interface"/>
<feature type="Camera" n="1" m="8" name="Low Power Camera Parallel Interface"/>
<feature type="Other" n="1" name="MIPI CSI-2"/>
<!--Audio-->
<feature type="I2S" n="4" name="Inter-IC Sound (I2S)"/>
<feature type="I2S" n="1" name="Low Power Inter-IC Sound (I2S)"/>
<feature type="ComOther" n="1" m="8" name="Pulse Density Modulation (PDM) Microphone Interface"/>
<feature type="ComOther" n="1" m="8" name="Low Power Pulse Density Modulation (LPPDM) Microphone Interface"/>
<!--Timers-->
<feature type="Timer" n="12" m="32" name="Universal Timer"/>
<feature type="Timer" n="4" m="32" name="Low Power Timer"/>
<feature type="TimerOther" n="4" m="32" name="Quadrature Encoding Counter"/>
<feature type="TimerOther" n="1" m="32" name="Real-Time Counter"/>
<feature type="WDT" n="2" name="Local Watchdog Timer"/>
<!-- Analog -->
<feature type="TempSens" n="1" name="Temperature Sensor"/>
<feature type="ADC" n="3" m="12" name="6 Single-ended or 3 Differential Input ADC, SAR"/>
<feature type="ADC" n="1" m="24" name="4 Differential Input ADC, Sigma-Delta"/>
<feature type="DAC" n="2" m="12" name="Digital-to-Analog Converter"/>
<feature type="AnalogOther" n="4" name="High-Speed Comparator"/>
<feature type="AnalogOther" n="1" name="Low Power Comparator"/>
<!--GPIO-->
<feature type="IOs" n="120" name="General Purpose I/Os, 1.8 V tolerant"/>
<feature type="IOs" n="8" name="General Purpose Flex I/Os, selectable 1.8 V or 3.3 V tolerant"/>
<!--Operation Range-->
<feature type="VCC" n="1.71" m="4.2"/>
<feature type="Temp" n="-40" m="75"/>
<device Dname="AE512F80F55D5AS">
<book name="https://www.alifsemi.com/download/2022" title="E5/C5 Datasheet"/>
<!-- On-Chip RAM Regions 13.5MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM6_A" start="0x62000000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM6_B" start="0x62400000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM7" start="0x63000000" size="0x00080000" access="rwx" default="1"/>
<memory name="SRAM8" start="0x63200000" size="0x00200000" access="rwx" default="1"/>
<memory name="SRAM9" start="0x60000000" size="0x000C0000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/M55_HP/include/M55_HP.h" define="M55_HP"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE512F80F55D5AS_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE512F80F55D5AS_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="CSP" n="208" name="WLCSP Package"/>
</device>
<device Dname="AE512F80F5582AS">
<!--On-Chip RAM Regions 8.25MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/M55_HP/include/M55_HP.h" define="M55_HP"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE512F80F5582AS_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE512F80F5582AS_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="CSP" n="208" name="WLCSP Package"/>
</device>
<device Dname="AE512F80F55D5LS">
<book name="https://www.alifsemi.com/download/2022" title="E5/C5 Datasheet"/>
<!-- On-Chip RAM Regions 13.5MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM6_A" start="0x62000000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM6_B" start="0x62400000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM7" start="0x63000000" size="0x00080000" access="rwx" default="1"/>
<memory name="SRAM8" start="0x63200000" size="0x00200000" access="rwx" default="1"/>
<memory name="SRAM9" start="0x60000000" size="0x000C0000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/M55_HP/include/M55_HP.h" define="M55_HP"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE512F80F55D5LS_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE512F80F55D5LS_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="BGA" n="194" name="FBGA Package"/>
</device>
<device Dname="AE512F80F5582LS">
<book name="https://www.alifsemi.com/download/2022" title="E5/C5 Datasheet"/>
<!-- On-Chip RAM Regions 8.25MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/M55_HP/include/M55_HP.h" define="M55_HP"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE512F80F5582LS_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE512F80F5582LS_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="BGA" n="194" name="FBGA Package"/>
</device>
</subFamily>
<subFamily DsubFamily="E3">
<!-- ****************************** E3 ******************************* -->
<!-- Device processor attributes -->
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="400000000" Pname="M55_HP"/>
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="160000000" Pname="M55_HE"/>
<compile Pname="M55_HP" Pdefine="M55_HP"/>
<compile Pname="M55_HE" Pdefine="M55_HE"/>
<!-- Cortex-M55 Access Ports -->
<accessportV2 __apid="0" address="0x00200000"/>
<accessportV2 __apid="1" address="0x00300000"/>
<!-- Documents -->
<book name="https://alifsemi.com/download/ADTS0007" title="E3 Datasheet"/>
<book name="https://alifsemi.com/download/AERR0007" title="E3 Errata and Specification Changes"/>
<book name="https://alifsemi.com/download/AHRM0007" title="E3 Hardware Reference Manual"/>
<book name="https://alifsemi.com/download/ASRM0001" title="Software Reference Manual"/>
<!-- Device properties, header files and preprocessor defines -->
<feature type="XTAL" n="38400000" name="High-Frequency Crystal Oscillator"/>
<feature type="IntRC" n="76800000" name="High-Frequency Internal RC Oscillator"/>
<feature type="PLL" n="1" name="Internal PLL with 3 clock outputs"/>
<feature type="PowerMode" n="5" name="GO, READY, IDLE, STANDBY, STOP"/>
<feature type="PowerOther" n="1" name="POR"/>
<feature type="PowerOther" n="1" name="BOR"/>
<!--Security-->
<feature type="CoreOther" n="1" name="Full Secure Enclave"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HE"/>
<feature type="CoreOther" n="2" name="CRC Calculation Unit"/>
<!--External Memory-->
<feature type="ComOther" n="2" name="Cryptographic Octal SPI (OSPI)"/>
<feature type="SDIO" n="1" m="8" name="SD/eMMC/SDIO Interface"/>
<!-- Serial Connectivity -->
<feature type="UART" n="8" m="2500000" name="UART Interface"/>
<feature type="UART" n="1" m="1000000" name="Low Power UART Interface"/>
<feature type="SPI" n="4" m="50000000" name="SPI Interface"/>
<feature type="SPI" n="1" m="20000000" name="Low Power SPI Interface"/>
<feature type="I2C" n="4" name="Inter-Integrated Circuit (I2C)"/>
<feature type="I2C" n="1" name="Low Power Inter-Integrated Circuit (LPI2C)"/>
<feature type="ComOther" n="1" name="MIPI I3C"/>
<!--High Speed Connectivity-->
<feature type="USBOTG" n="1" name="USB 2.0 Host and Device (DRD) with PHY"/>
<feature type="ETH" n="1" m="100000000" name="Ethernet Media Access Controller (ETH)"/>
<!--Graphics-->
<feature type="Other" n="1" name="2D Graphics Processing Unit (GPU2D)"/>
<!--Display-->
<feature type="GLCD" n="1" m="1280.800" name="Display Parallel Interface"/>
<feature type="Other" n="1" name="MIPI DSI"/>
<!--Camera-->
<feature type="Camera" n="1" m="16" name="Camera Parallel Interface"/>
<feature type="Camera" n="1" m="8" name="Low Power Camera Parallel Interface"/>
<feature type="Other" n="1" name="MIPI CSI-2"/>
<!--Audio-->
<feature type="I2S" n="4" name="Inter-IC Sound (I2S)"/>
<feature type="I2S" n="1" name="Low Power Inter-IC Sound (I2S)"/>
<feature type="ComOther" n="1" m="8" name="Pulse Density Modulation (PDM) Microphone Interface"/>
<feature type="ComOther" n="1" m="8" name="Low Power Pulse Density Modulation (LPPDM) Microphone Interface"/>
<!--Timers-->
<feature type="Timer" n="12" m="32" name="Universal Timer"/>
<feature type="Timer" n="4" m="32" name="Low Power Timer"/>
<feature type="TimerOther" n="4" m="32" name="Quadrature Encoding Counter"/>
<feature type="TimerOther" n="1" m="32" name="Real-Time Counter"/>
<feature type="WDT" n="2" name="Local Watchdog Timer"/>
<!-- Analog -->
<feature type="TempSens" n="1" name="Temperature Sensor"/>
<feature type="ADC" n="3" m="12" name="6 Single-ended or 3 Differential Input ADC, SAR"/>
<feature type="ADC" n="1" m="24" name="4 Differential Input ADC, Sigma-Delta"/>
<feature type="DAC" n="2" m="12" name="Digital-to-Analog Converter"/>
<feature type="AnalogOther" n="4" name="High-Speed Comparator"/>
<feature type="AnalogOther" n="1" name="Low Power Comparator"/>
<!--GPIO-->
<feature type="IOs" n="120" name="General Purpose I/Os, 1.8 V tolerant"/>
<feature type="IOs" n="8" name="General Purpose Flex I/Os, selectable 1.8 V or 3.3 V tolerant"/>
<!--Operation Range-->
<feature type="VCC" n="1.71" m="4.2"/>
<feature type="Temp" n="-40" m="85"/>
<device Dname="AE302F80F55D5AE">
<!-- DebugConfig for E3 -->
<debugconfig sdf="Debug/SDF/E3/Ensemble E3.sdf" dormant="true"/>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<!-- On-Chip RAM Regions 13.5 MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM6_A" start="0x62000000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM6_B" start="0x62400000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM7" start="0x63000000" size="0x00080000" access="rwx" default="1"/>
<memory name="SRAM8" start="0x63200000" size="0x00200000" access="rwx" default="1"/>
<memory name="SRAM9" start="0x60000000" size="0x000C0000" access="rwx" default="1"/>
<compile Pname="M55_HP" header="Device/core/M55_HP/include/M55_HP.h" define="M55_HP"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE302F80F55D5AE_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE302F80F55D5AE_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="CSP" n="208" name="WLCSP Package"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
</device>
<device Dname="AE302F80F5582AE">
<!-- DebugConfig for E3 -->
<debugconfig sdf="Debug/SDF/E3/Ensemble E3.sdf" dormant="true"/>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<!-- On-Chip RAM Regions 8.25MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/M55_HP/include/M55_HP.h" define="M55_HP"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE302F80F5582AE_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE302F80F5582AE_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="CSP" n="208" name="WLCSP Package"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
</device>
<device Dname="AE302F80F55D5LE">
<!-- DebugConfig for E3 -->
<debugconfig sdf="Debug/SDF/E3/Ensemble E3.sdf" dormant="true"/>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<!-- On-Chip RAM Regions 13.5MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM6_A" start="0x62000000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM6_B" start="0x62400000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM7" start="0x63000000" size="0x00080000" access="rwx" default="1"/>
<memory name="SRAM8" start="0x63200000" size="0x00200000" access="rwx" default="1"/>
<memory name="SRAM9" start="0x60000000" size="0x000C0000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/M55_HP/include/M55_HP.h" define="M55_HP"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE302F80F55D5LE_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE302F80F55D5LE_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="BGA" n="194" name="FBGA Package"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
</device>
<device Dname="AE302F80F5582LE">
<!-- DebugConfig for E3 -->
<debugconfig sdf="Debug/SDF/E3/Ensemble E3.sdf" dormant="true"/>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<!-- On-Chip RAM Regions 8.25MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/M55_HP/include/M55_HP.h" define="M55_HP"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE302F80F5582LE_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE302F80F5582LE_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="BGA" n="194" name="FBGA Package"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
</device>
<device Dname="AE302F80C1557LE">
<!-- DebugConfig for E3(1.5MiB MRAM) -->
<debugconfig sdf="Debug/SDF/E3 (1.5MiB MRAM)/Ensemble E3 (1.5MiB MRAM).sdf" dormant="true"/>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00180000" access="rx" default="1"/>
<!-- On-Chip RAM Regions 5.75MB-->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/M55_HP/include/M55_HP.h" define="M55_HP"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE302F80C1557LE_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE302F80C1557LE_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="BGA" n="194" name="FBGA Package"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
</device>
<device Dname="AE302F40C1537LE">
<!-- DebugConfig for E3(1.5MiB MRAM) -->
<debugconfig sdf="Debug/SDF/E3 (1.5MiB MRAM)/Ensemble E3 (1.5MiB MRAM).sdf" dormant="true"/>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00180000" access="rx" default="1"/>
<!--On-Chip RAM Regions 3.75MB -->
<memory name="SRAM0" start="0x02000000" size="0x00200000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/M55_HP/include/M55_HP.h" define="M55_HP"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE302F40C1537LE_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE302F40C1537LE_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="BGA" n="194" name="FBGA Package"/>
</device>
</subFamily>
<!-- ToDo : Add E1 subfamily-->
<subFamily DsubFamily="E1">
<!-- ****************************** E1 ******************************* -->
<!-- Device processor attributes -->
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="160000000" Pname="M55_HE"/>
<!-- DebugConfig for E1 -->
<debugconfig sdf="Debug/SDF/E1/Ensemble E1.sdf" dormant="true"/>
<compile Pname="M55_HE" Pdefine="M55_HE"/>
<!-- Cortex-M55 Access Ports -->
<accessportV2 __apid="0" address="0x00300000"/>
<!-- Documents -->
<book name="https://alifsemi.com/download/ADTS0008" title="E1 Datasheet"/>
<book name="https://alifsemi.com/download/AHRM0008" title="E1 HWRM"/>
<book name="https://alifsemi.com/download/ASRM0001" title="Software Reference Manual"/>
<!-- Device properties, header files and preprocessor defines -->
<feature type="XTAL" n="38400000" name="High-Frequency Crystal Oscillator"/>
<feature type="IntRC" n="76800000" name="High-Frequency Internal RC Oscillator"/>
<feature type="PLL" n="1" name="Internal PLL with 3 clock outputs"/>
<feature type="PowerMode" n="5" name="GO, READY, IDLE, STANDBY, STOP"/>
<feature type="PowerOther" n="1" name="POR"/>
<feature type="PowerOther" n="1" name="BOR"/>
<!--Security-->
<feature type="CoreOther" n="1" name="Full Secure Enclave"/>
<feature type="CoreOther" n="2" name="CRC Calculation Unit"/>
<!--External Memory-->
<feature type="ComOther" n="1" name="Cryptographic Octal SPI (OSPI)"/>
<feature type="SDIO" n="1" m="8" name="SD/eMMC/SDIO Interface"/>
<!-- Serial Connectivity -->
<feature type="UART" n="6" m="2500000" name="UART Interface"/>
<feature type="UART" n="1" m="1000000" name="Low Power UART Interface"/>
<feature type="SPI" n="4" m="50000000" name="SPI Interface"/>
<feature type="SPI" n="1" m="20000000" name="Low Power SPI Interface"/>
<feature type="I2C" n="4" name="Inter-Integrated Circuit (I2C)"/>
<feature type="I2C" n="1" name="Low Power Inter-Integrated Circuit (LPI2C)"/>
<feature type="ComOther" n="1" name="MIPI I3C"/>
<!--High Speed Connectivity-->
<feature type="USBOTG" n="1" name="USB 2.0 Host and Device (DRD) with PHY"/>
<!--Camera-->
<feature type="Camera" n="1" m="8" name="Low Power Camera Parallel Interface"/>
<!--Audio-->
<feature type="I2S" n="4" name="Inter-IC Sound (I2S)"/>
<feature type="I2S" n="1" name="Low Power Inter-IC Sound (I2S)"/>
<feature type="ComOther" n="1" m="8" name="Pulse Density Modulation (PDM) Microphone Interface"/>
<feature type="ComOther" n="1" m="8" name="Low Power Pulse Density Modulation (LPPDM) Microphone Interface"/>
<!--Timers-->
<feature type="Timer" n="8" m="32" name="Universal Timer"/>
<feature type="Timer" n="2" m="32" name="Low Power Timer"/>
<feature type="TimerOther" n="4" m="32" name="Quadrature Encoding Counter"/>
<feature type="TimerOther" n="1" m="32" name="Real-Time Counter"/>
<feature type="WDT" n="1" name="Local Watchdog Timer"/>
<!-- Analog -->
<feature type="TempSens" n="1" name="Temperature Sensor"/>
<feature type="ADC" n="2" m="12" name="6 Single-ended or 3 Differential Input ADC, SAR"/>
<feature type="ADC" n="1" m="24" name="4 Differential Input ADC, Sigma-Delta"/>
<feature type="DAC" n="1" m="12" name="Digital-to-Analog Converter"/>
<feature type="AnalogOther" n="2" name="High-Speed Comparator"/>
<feature type="AnalogOther" n="1" name="Low Power Comparator"/>
<!--GPIO-->
<feature type="IOs" n="120" name="General Purpose I/Os, 1.8 V tolerant"/>
<feature type="IOs" n="8" name="General Purpose Flex I/Os, selectable 1.8 V or 3.3 V tolerant"/>
<!--Operation Range-->
<feature type="VCC" n="1.71" m="4.2"/>
<feature type="Temp" n="-40" m="105"/>
<device Dname="AE101F4071542LH">
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00180000" access="rx" default="1"/>
<!--On-Chip RAM Regions 4.25MB -->
<memory name="SRAM0" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<compile Pname="M55_HE" header="Device/core/M55_HE/include/M55_HE.h" define="M55_HE"/>
<debug svd="Debug/SVD/AE101F4071542LH_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="BGA" n="194" name="FBGA Package"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HE"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
<feature type="Other" n="1" name="2D Graphics Processing Unit (GPU2D)"/>
<feature type="GLCD" n="1" m="1280.800" name="Display Parallel Interface"/>
<feature type="Other" n="1" name="MIPI DSI"/>
</device>
</subFamily>
</family>
</devices>
<!-- examples section: Contains Example projects for DevKit-E7 -->
<examples>
<!--<example name="LED Blinky M55-HE" doc="Abstract.txt" folder="Examples/LED_Blinky">
<description>LED Blinky app running on M55-HE</description>
<board name="DevKit-E7" vendor="Alif Semiconductor"/>
<project>
<environment name="uv" load="LED_Blinky.uvprojx"/>
</project>
<attributes>
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM"/>
<component Cclass="Device" Cgroup="SOC Peripherals" Csub="GPIO" Cvendor="Alif Semiconductor"/>
<component Cclass="Device" Cgroup="Conf" Csub="RTE_Device" Cvendor="Alif Semiconductor"/>
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="Alif Semiconductor"/>
<component Cclass="SOC Peripherals TestApp" Cgroup="TestApp" Csub="LED Blinky" Cvendor="Alif Semiconductor"/>
</attributes>
</example>-->
<example name="Blinky_M55_HE" doc="Abstract.txt" folder="Boards/DevKit-e7/Examples/BareMetal_LED_Blinky">
<description>LED Blinky app running out of MRAM on M55-HE</description>
<board name="DevKit-E7" vendor="Alif Semiconductor"/>
<project>
<environment name="uv" load="BareMetal_LED_Blinky.uvprojx"/>
</project>
<attributes>
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM"/>
<component Cclass="Device" Cgroup="SOC Peripherals" Csub="GPIO" Cvendor="Alif Semiconductor"/>
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="Alif Semiconductor"/>
</attributes>
</example>
<example name="Blinky_M55_HE_TCM" doc="Abstract.txt" folder="Boards/DevKit-e7/Examples/BareMetal_LED_Blinky_TCM">
<description>LED Blinky app running out of TCM on M55-HE</description>
<board name="DevKit-E7" vendor="Alif Semiconductor"/>
<project>
<environment name="uv" load="BareMetal_LED_Blinky_TCM.uvprojx"/>
</project>
<attributes>
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM"/>
<component Cclass="Device" Cgroup="SOC Peripherals" Csub="GPIO" Cvendor="Alif Semiconductor"/>
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="Alif Semiconductor"/>
</attributes>
</example>
<example name="HelloWorld_M55_HP" doc="Abstract.txt" folder="Boards/DevKit-e7/Examples/Hello_World">
<description>Hello World app running out of MRAM on M55-HP</description>
<board name="DevKit-E7" vendor="Alif Semiconductor"/>
<project>
<environment name="uv" load="Hello_World.uvprojx"/>
</project>
<attributes>
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM"/>
<component Cclass="Device" Cgroup="SOC Peripherals" Csub="PINCONF" Cvendor="Alif Semiconductor"/>
<component Cclass="Device" Cgroup="SOC Peripherals" Csub="USART" Cvendor="Alif Semiconductor"/>
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="Alif Semiconductor"/>
</attributes>
</example>
</examples>
<!-- conditions section -->
<boards>
<!-- revision="C" salesContact="TBD" orderForm="TBD"-->
<!--<image small="Images/DK_small.png" large="Images/DK_large.png"/>-->
<board vendor="Alif Semiconductor" name="DevKit-E7" revision="Gen 2">
<description>Development Kit E7 Gen 2 (FBGA194)</description>
<book category="overview" name="https://alifsemi.com/support/kits/ensemble-devkit-gen2/" title="Ensemble DevKit Gen 2 Web Page"/>
<mountedDevice deviceIndex="0" Dvendor="Alif Semiconductor:165" Dname="AE722F80F55D5LS"/>
<compatibleDevice deviceIndex="0" Dvendor="Alif Semiconductor:165" Dname="AE512F80F55D5LS"/>
<compatibleDevice deviceIndex="1" Dvendor="Alif Semiconductor:165" Dname="AE512F80F5582LS"/>
<compatibleDevice deviceIndex="2" Dvendor="Alif Semiconductor:165" Dname="AE302F80F55D5LE"/>
<compatibleDevice deviceIndex="3" Dvendor="Alif Semiconductor:165" Dname="AE302F80F5582LE"/>
<compatibleDevice deviceIndex="4" Dvendor="Alif Semiconductor:165" Dname="AE302F80C1557LE"/>
<compatibleDevice deviceIndex="5" Dvendor="Alif Semiconductor:165" Dname="AE302F40C1537LE"/>
<debugInterface adapter="JTAG/SW" connector="20-pin Arm Coresight JTAG Connector (1.27 mm)"/>
<debugInterface adapter="JTAG/SW" connector="10-pin Arm Coresight JTAG Connector (1.27 mm)"/>
<feature type="XTAL" n="38400000"/>
<feature type="PWR" n="4.75" m="5.25"/>
<feature type="PWRSock" n="1" name="2.1-mm DC barrel Jack, center positive"/>
<feature type="Batt" n="1" name="CR2032 Battery for RTC and VBATT peripherals"/>
<feature type="Curr" n="0.6" m="1"/>
<feature type="RAM" n="1" name="32MB Octal SPI HyperRAM PSRAM"/>
<feature type="ROM" n="1" name="32MB Octal SPI Flash"/>
<feature type="MemCard" n="2" name="Micro SD Card Holder"/>
<feature type="DIO" n="30" name="Digital IOs on 2 x 20 pin header (2.54 mm pitch)"/>
<feature type="DIO" n="32" name="Digital IOs on 2 x 20 pin header (2.54 mm pitch) 1.8V/3.3V/5.0V"/>
<feature type="DIO" n="32" name="Digital IOs on 2 x 20 pin header (2.54 mm pitch) for Parallel Camera or Display"/>
<feature type="DIO" n="12" name="IOs for Click Module on 2 x 8 pin header (2.54 mm pitch)"/>
<feature type="AIO" n="32" name="24 x Analog IOs and 8 x Digital IOs on 2 x 20 pin header (2.54 mm pitch)"/>
<feature type="USB" n="1" name="High-Speed USB Device, Micro-AB receptacle"/>
<feature type="USB" n="1" name="High-Speed USB Device, Micro-AB receptacle, PGM and UART interface via onboard USB-to-UART bridge"/>
<feature type="USB" n="1" name="High-Speed USB Host, Type-A receptacle"/>
<feature type="ETH" n="1" m="100000000" name="RJ-45 receptacle, 10/100 Ethernet"/>
<feature type="Accelerometer" n="1" name="3-axis Digital Accelerometer in ICM-42670-P"/>
<feature type="Gyro" n="1" name="3-axis Digital Gyroscope in ICM-42670-P"/>
<feature type="Accelerometer" n="1" name="3-axis Digital Accelerometer in BMI323"/>
<feature type="Gyro" n="1" name="3-axis Digital Gyroscope in BMI323"/>
<feature type="TempSens" n="1" name="16-bit Digital Temperature Sensor in BMI323"/>
<feature type="SensOther" n="2" name="I2S Digital MICs"/>
<feature type="SensOther" n="2" name="PDM Digital MICs"/>
<feature type="Joystick" n="1" name="5-position Joystick"/>
<feature type="Button" n="1" name="Reset Push-button"/>
<feature type="LED" n="2" name="Multicolor LEDs"/>
<feature type="Camera" n="1" name="2-Lane MIPI CSI Connector for OnSemi ARX3A0 0.3MP 1/10.3 MONO"/>
<feature type="GLCD" n="1" m="480.800" name="4.3-inch Color TFT LCD with Capacitive Touchscreen"/>
</board>
</boards>
<!-- conditions section -->
<conditions>
<!-- compiler -->
<condition id="ARMCC6">
<accept Tcompiler="ARMCC" Toptions="AC6"/>
<!--<accept Tcompiler="ARMCC" Toptions="AC6LTO"/>-->
</condition>
<condition id="GCC">
<require Tcompiler="GCC"/>
</condition>
<condition id="M55_HP CMSIS-Core">
<description>Generic Alif Semiconductor M55_HP device startup and depends on CMSIS Core</description>
<require Dvendor="Alif Semiconductor:165"/>
<accept Pname="M55_HP" Dname="AE722F80*"/>
<accept Pname="M55_HP" Dname="AE512F80*"/>
<accept Pname="M55_HP" Dname="AE302F*"/>
<require Cclass="CMSIS" Cgroup="CORE"/>
</condition>
<condition id="M55_HE CMSIS-Core">
<description>Generic Alif Semiconductor M55_HP device startup and depends on CMSIS Core</description>
<require Dvendor="Alif Semiconductor:165"/>
<accept Pname="M55_HE" Dname="AE722F80*"/>
<accept Pname="M55_HE" Dname="AE512F80*"/>
<accept Pname="M55_HE" Dname="AE302F*"/>
<accept Pname="M55_HE" Dname="AE101F*"/>
<require Cclass="CMSIS" Cgroup="CORE"/>
</condition>
<condition id="Ensemble">
<description>Alif Semiconductor Ensemble Series devices</description>
<require Dvendor="Alif Semiconductor:165"/>
<accept Dvendor="Alif Semiconductor:165" Dname="AE722F80*"/>
<accept Dvendor="Alif Semiconductor:165" Dname="AE512F80*"/>
<accept Dvendor="Alif Semiconductor:165" Dname="AE302F*"/>
<accept Dvendor="Alif Semiconductor:165" Dname="AE101F*"/>
<deny Cclass="Device" Cgroup="SDK Utilities"/>
</condition>
<condition id="Ensemble CMSIS_Driver">
<description>Requirement for CMSIS Driver</description>
<require condition="Ensemble"/>
<require Cclass="CMSIS" Cgroup="CORE"/>
<require Cclass="Device" Cgroup="Startup"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="PINCONF"/>
<!--<require Cclass="Device" Cgroup="Conf" Csub="RTE_Device"/>-->
</condition>
<condition id="Ensemble Camera Driver">
<description>Requirement for CMSIS CAMERA Driver</description>
<require condition="Ensemble"/>
<require Cclass="CMSIS" Cgroup="CORE"/>
<require Cclass="Device" Cgroup="Startup"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="PINCONF"/>
</condition>
<condition id="Analog Components Driver">
<description>Requirement for Analog Components Driver</description>
<require condition="Ensemble CMSIS_Driver"/>
</condition>
<condition id="ILI LCD Driver">
<description>Requirement for ILI9806E LCD Driver</description>
<require condition="Ensemble CMSIS_Driver"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="GPIO"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="MIPI DSI"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="CDC"/>
</condition>
<condition id="ILI Parallel LCD Driver">
<description>Requirement for ILI6122 LCD Driver</description>
<require condition="Ensemble CMSIS_Driver"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="GPIO"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="CDC"/>
</condition>
<condition id="IMU Driver">
<description>Requirement for ILI6122 LCD Driver</description>
<require condition="Ensemble CMSIS_Driver"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="I3C"/>
</condition>
<condition id="GT911 Touch Driver">
<description>Requirement for GT911 Touch Driver</description>
<require condition="Ensemble CMSIS_Driver"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="GPIO"/>
<!-- <accept Cclass="Device" Cgroup="SOC Peripherals" Csub="I2C"/> -->
<accept Cclass="CMSIS Driver" Cgroup="I2C"/>
<accept Cclass="Device" Cgroup="SOC Peripherals" Csub="I2C_I3C"/>
<accept Cclass="Device" Cgroup="SOC Peripherals" Csub="I3C"/>
</condition>
<condition id="MIPI CSI2 Driver">
<description>Requirement for MIPI CSI2 Driver</description>
<require condition="Ensemble CMSIS_Driver"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="CPI"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="MIPI DSI CSI2 DPHY"/>
</condition>
<condition id="MIPI DSI Driver">
<description>Requirement for MIPI DSI Driver</description>
<require condition="Ensemble CMSIS_Driver"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="CDC"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="MIPI DSI CSI2 DPHY"/>
</condition>
<condition id="I2S Driver">
<description>Requirement for I2S Driver</description>
<require condition="Ensemble CMSIS_Driver"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="DMA"/>
</condition>
<condition id="MIPI DPHY Driver">
<description>Requirement for MIPI DPHY Driver</description>
<require condition="Ensemble CMSIS_Driver"/>
</condition>
<condition id="OSPI XIP UTILITY">
<description>Requirement OSPI XIP utility </description>
<require condition="Ensemble"/>
<require Cclass="Device" Cgroup="OSPI FLASH XIP" Csub="core"/>
</condition>
<condition id="Camera Sensor Driver">
<description>Requirement for Camera SENSOR Driver</description>
<require condition="Ensemble"/>
<require Cclass="CMSIS" Cgroup="CORE"/>
<require Cclass="Device" Cgroup="Startup"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="PINCONF"/>
<accept Cclass="Device" Cgroup="SOC Peripherals" Csub="I3C"/>
<accept Cclass="Device" Cgroup="SOC Peripherals" Csub="I2C_I3C"/>
<!-- <accept Cclass="Device" Cgroup="SOC Peripherals" Csub="I2C"/> -->
<accept Cclass="CMSIS Driver" Cgroup="I2C"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="CPI"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="GPIO"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="MIPI CSI2"/>
</condition>
<condition id="SE SERVICES MHU">
<description>Requirement SE SERVICES MHU </description>
<require condition="Ensemble"/>
<require Cclass="CMSIS" Cgroup="CORE"/>
<require Cclass="Device" Cgroup="Startup"/>
</condition>
<!-- <condition id="SE SERVICES LIB">
<description>Requirement OSPI XIP utility library</description>
<require condition="SE SERVICES MHU"/>
<require condition="ARMCC6"/>
<require Cclass="Device" Cgroup="SE Services" Csub="MHU Driver"/>
</condition> -->
<condition id="SE SERVICES SRC">
<description>Requirement SE SERVICES SRC</description>
<require condition="SE SERVICES MHU"/>
<require Cclass="Device" Cgroup="SOC Peripherals" Csub="MHU"/>
</condition>
<condition id="SE SERVICES INIT">
<description>Requirement SE SERVICES SRC</description>
<require condition="SE SERVICES SRC"/>
<require Cclass="Device" Cgroup="SE runtime Services" Csub="core"/>
</condition>
<condition id="Retarget IO STDIN">
<description>Requirement for Retarget IO STDIN</description>
<require condition="Ensemble CMSIS_Driver"/>
<require Cclass="CMSIS Driver" Cgroup="USART"/>
<require Cclass="CMSIS-Compiler" Cgroup="STDIN" Csub="Custom"/>
</condition>
<condition id="Retarget IO STDOUT">
<description>Requirement for Retarget IO STDOUT</description>
<require condition="Ensemble CMSIS_Driver"/>
<require Cclass="CMSIS Driver" Cgroup="USART"/>
<require Cclass="CMSIS-Compiler" Cgroup="STDOUT" Csub="Custom"/>
</condition>
<condition id="Retarget IO STDERR">
<description>Requirement for Retarget IO STDERR</description>
<require condition="Ensemble CMSIS_Driver"/>
<require Cclass="CMSIS Driver" Cgroup="USART"/>
<require Cclass="CMSIS-Compiler" Cgroup="STDERR" Csub="Custom"/>
</condition>
</conditions>
<!-- component section -->
<components>
<!-- Add HP CM55 -->
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cversion="1.3.0" condition="M55_HP CMSIS-Core">
<description>System and Startup for M55_HP device</description>
<files>
<!-- include folder / device header file -->
<file category="include" name="Device/common/include/"/>
<!-- startup / system file -->
<file category="sourceC" name="Device/core/M55_HP/source/startup_M55_HP.c"/>
<file category="linkerScript" name="Device/E7/AE722F80F55D5XX/linker_script/ARM/M55_HP.sct" version="1.3.0" attr="config" condition="ARMCC6"/>
<file category="linkerScript" name="Device/E7/AE722F80F55D5XX/linker_script/GCC/gcc_M55_HP.ld" version="1.3.0" attr="config" condition="GCC"/>
<file category="sourceC" name="Device/common/source/system_M55.c"/>
<file category="header" name="Device/E7/AE722F80F55D5XX/RTE_Device.h" version="1.3.0" attr="config"/>
<file category="header" name="Device/core/M55_HP/include/M55_HP_map.h" version="1.3.0" attr="config"/>
<file category="header" name="Device/core/M55_HP/config/M55_HP_Config.h" version="1.3.0" attr="config"/>
<file category="header" name="Device/common/include/global_map.h" version="1.3.0" attr="config"/>
<file category="header" name="Device/common/config/app_map.h" version="1.3.0" attr="config"/>
<file category="sourceC" name="Device/common/source/clk.c"/>
<file category="sourceC" name="Device/common/source/system_utils.c"/>
<file category="sourceC" name="Device/common/source/tgu_M55.c"/>
<file category="sourceC" name="Device/common/source/tcm_partition.c"/>
<file category="sourceC" name="Device/common/source/mpu_M55.c"/>
<!-- SAU configuration -->
<file category="header" name="Device/core/M55_HP/config/partition_M55_HP.h" version="1.3.0" attr="config"/>
<!-- Baremetal Templates -->
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/ADC_Baremetal.c" attr="template" select="ADC Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/ADC_Click_Board_Baremetal.c" attr="template" select="ADC Click Board Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/ADC_Ext_Trigger_Baremetal.c" attr="template" select="ADC External Trigger Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/CANFD_Bus_Monitor.c" attr="template" select="CANFD Bus Monitor Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/CANFD_NormalMode.c" attr="template" select="CANFD Data Transfer Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/CANFD_Ext_Loopback.c" attr="template" select="CANFD External Loopback Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/CANFD_Int_Loopback.c" attr="template" select="CANFD Internal Loopback Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/CANFD_BlockingMode.c" attr="template" select="CANFD Polling Mode Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/CDC200_Baremetal.c" attr="template" select="CDC200 Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/CMP_baremetal.c" attr="template" select="CMP Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/CRC_baremetal.c" attr="template" select="CRC Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/Dac_baremetal.c" attr="template" select="DAC Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/dma_testmemcpy.c" attr="template" select="DMA Mem-Mem Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/DPHY_Loopback_Test_Baremetal.c" attr="template" select="DPHY Loopback Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/DPHY_Loopback_test.c" attr="template" select="DPHY Loopback Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/GT911_Baremetal.c" attr="template" select="GT911 Touch Screen Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/HWSEM_Baremetal.c" attr="template" select="HWSEM Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/i2c_baremetal.c" attr="template" select="I2C Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/i2c_using_i3c_Baremetal.c" attr="template" select="I2C using I3C Baremetal Demo"/>
<file category="source" name="Boards/DevKit-e7/Templates/Baremetal/mix_bus_i2c_i3c_baremetal.c" attr="template" select="I2C-I3C Mix Bus Baremetal Demo"/>