FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
STM32CubeMP13/Projects/Release_Notes.html at main · STMicroelectronics/STM32CubeMP13 · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
STMicroelectronics
/
STM32CubeMP13
Public
Notifications
You must be signed in to change notification settings
Fork
11
Star
27
Code
Issues
4
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
STM32CubeMP13
/
Projects
/
Release_Notes.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
1397 lines (1397 loc) · 46.7 KB
Breadcrumbs
STM32CubeMP13
/
Projects
/
Release_Notes.html
Copy path
File metadata and controls
1397 lines (1397 loc) · 46.7 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<!DOCTYPE html
>
<
html
xmlns
="
http://www.w3.org/1999/xhtml
"
lang
="
en
"
xml:lang
="
en
"
>
<
head
>
<
meta
charset
="
utf-8
"
/>
<
meta
name
="
generator
"
content
="
pandoc
"
/>
<
meta
name
="
viewport
"
content
="
width=device-width, initial-scale=1.0, user-scalable=yes
"
/>
<
title
>
Release Notes for Projects of STM32CubeMP13 Firmware
Package
</
title
>
<
style
>
code
{
white-space
:
pre-wrap;}
span
.
smallcaps
{
font-variant
:
small-caps;}
div
.
columns
{
display
:
flex;
gap
:
min
(
4
vw
,
1.5
em
);}
div
.
column
{
flex
:
auto;
overflow-x
:
auto;}
div
.
hanging-indent
{
margin-left
:
1.5
em
;
text-indent
:
-1.5
em
;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul
.
task-list
[
class
]{
list-style
:
none;}
ul
.
task-list
li
input
[
type
=
"checkbox"
] {
font-size
:
inherit;
width
:
0.8
em
;
margin
:
0
0.8
em
0.2
em
-1.6
em
;
vertical-align
:
middle;
}
.
display
.
math
{
display
:
block;
text-align
:
center;
margin
:
0.5
rem
auto;}
</
style
>
<
link
rel
="
stylesheet
"
href
="
_htmresc/mini-st_2020.css
"
/>
<
link
rel
="
icon
"
type
="
image/x-icon
"
href
="
_htmresc/favicon.png
"
/>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</
head
>
<
body
>
<
div
class
="
row
"
>
<
div
class
="
col-sm-12 col-lg-4
"
>
<
center
>
<
h1
id
="
release-notes-for-stm32cubemp13-firmware-projects
"
>
Release Notes
for
<
mark
>
STM32CubeMP13 Firmware Projects
</
mark
>
</
h1
>
<
p
>
Copyright © 2023 STMicroelectronics
<
br
/>
</
p
>
<
a
href
="
https://www.st.com
"
class
="
logo
"
>
<
img
src
="
_htmresc/st_logo_2020.png
"
alt
="
ST logo
"
/>
</
a
>
</
center
>
<
h1
id
="
purpose
"
>
Purpose
</
h1
>
<
p
>
The projects are a set of applicative tasks that aim to explain and
provide use cases of the different products features based on the
products hardware (Boards, STM32 Core(s) features, interconnections and
peripherals) and built around the different firmware components. They
can be directly used or adapted by the STM32Cube13 Firmware Package
users. They provide basic functionalities, show main features or
demonstrate performance. They are provided with preconfigured projects
for the main supported toolchains.
</
p
>
<
p
>
In the STM32CubeMP13 Firmware Package, the projects are organized in
a sequential scheme based on the following levels:
</
p
>
<
ul
>
<
li
>
Boards : Hardware platform (discovery boards)
</
li
>
<
li
>
Project Category:
<
ul
>
<
li
>
Applications
</
li
>
<
li
>
Examples
</
li
>
<
li
>
External Loader
</
li
>
<
li
>
Templates
</
li
>
</
ul
>
</
li
>
</
ul
>
<
p
>
The exhaustive list of projects is provided in this table:
<
a
href
="
STM32CubeProjectsList.html
"
>
STM32CubeProjectsList
</
a
>
.
</
p
>
</
div
>
<
section
id
="
update-history
"
class
="
col-sm-12 col-lg-8
"
>
<
h1
>
Update History
</
h1
>
<
div
class
="
collapse
"
>
<
input
type
="
checkbox
"
id
="
collapse-section0
"
checked
aria-hidden
="
true
"
>
<
label
for
="
collapse-section0
"
checked
aria-hidden
="
true
"
>
<
strong
>
V1.2.0
/ 30-Oct-2024
</
strong
>
</
label
>
<
div
>
<
h2
id
="
main-changes
"
>
Main Changes
</
h2
>
<
p
>
<
strong
>
Maintenance DV
</
strong
>
of STM32CubeMP13 Projects (STM32Cube
for STM32MP13 Series)
</
p
>
<
h2
id
="
contents
"
>
Contents
</
h2
>
<
h3
id
="
projects
"
>
Projects
</
h3
>
<
p
>
<
small
>
The components flagged by “
<
span
class
="
icon-st-update
"
>
</
span
>
” have changed since the previous release.
“
<
span
class
="
icon-st-add
"
>
</
span
>
” are new.
</
small
>
</
p
>
<
table
>
<
caption
>
Projects
<
strong
>
STM32MP135C-DK
</
strong
>
</
caption
>
<
thead
>
<
tr
class
="
header
"
>
<
th
style
="
text-align: left;
"
>
Board
</
th
>
<
th
style
="
text-align: left;
"
>
Project category
</
th
>
<
th
style
="
text-align: left;
"
>
Version
</
th
>
<
th
style
="
text-align: center;
"
>
Path
</
th
>
</
tr
>
</
thead
>
<
tbody
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Examples
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Examples
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Applications
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Applications
</
td
>
</
tr
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
External Loader
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/External_Loader
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Templates
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Templates
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
ul
>
<
li
>
LWIP examples are added in applications.
</
li
>
<
li
>
LWIP example with 2 ETH interface demo in applications.
</
li
>
<
li
>
Free RTOS examples are added in applications.
</
li
>
<
li
>
Example added to demonstrate USB host lib capabilities in
appllications.
</
li
>
<
li
>
Source code of External Loader is provided which contains
Ext_Memloader supporting SD_Ext_Loader.
</
li
>
</
ul
>
<
table
>
<
caption
>
Projects
<
strong
>
STM32MP13XX_CUSTOM_HW
</
strong
>
</
caption
>
<
thead
>
<
tr
class
="
header
"
>
<
th
style
="
text-align: left;
"
>
Board
</
th
>
<
th
style
="
text-align: left;
"
>
Project category
</
th
>
<
th
style
="
text-align: left;
"
>
Version
</
th
>
<
th
style
="
text-align: center;
"
>
Path
</
th
>
</
tr
>
</
thead
>
<
tbody
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Examples
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Examples
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Applications
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Applications
</
td
>
</
tr
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
External Loader
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/External_Loader
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Templates
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Templates
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
ul
>
<
li
>
Source code of External Loader is provided which contains
Ext_Memloader supporting EMMC_Ext_Loader and SNOR_Ext_Loader.
</
li
>
</
ul
>
<
p
>
<
strong
>
Notes
</
strong
>
</
p
>
<
ul
>
<
li
>
STM32MP13XX_CUSTOM_HW is an internal ST Board customized to test
some feature not available on STM32MP135F-DK Board : ex FMC-NAND or QSPi
NOR or eMMC
</
li
>
<
li
>
The exhaustive list of projects is provided in this table
<
a
href
="
STM32CubeProjectsList.html
"
>
STM32CubeProjectsList.html
</
a
>
</
li
>
<
li
>
Execution information :
<
ul
>
<
li
>
Engineering boot mode:
<
ul
>
<
li
>
All the examples could be run on SYSRAM memory, except
LTDC_Display_2Layers, DCMIPP, TouchScreen(the binary size of these
examples are larger than SYSRAM Size) => For these examples, DDR_Init
should be run before.
</
li
>
<
li
>
For the same reason, all the AzureRTOS applications should be run
after DDR_Init example.
</
li
>
</
ul
>
</
li
>
<
li
>
SDCard boot mode:
<
ul
>
<
li
>
The applications or examples (CubeExample) could be executed from
SDCard. For the instance, the FSBLA_Sdmmc and the CubeExample should be
copied using cube programmer (External_Loader is included in form of
binaries for this purpose) or manually in the SD Card.
<
ul
>
<
li
>
At the boot, the bootrom will copy the FSBLA_SDMMC in SYSRAM and
execute it,
</
li
>
<
li
>
FSBLA_Sdmmc:
<
ul
>
<
li
>
will initialize the clocks, the SDMMC and the DDR,
</
li
>
<
li
>
will read from SDMMC1 the CubeExample image length and load
CubeExample into DDR.
</
li
>
<
li
>
will jump into DDR to execute this CubeExample
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
<
li
>
NOR boot mode (not possible on STM32MP135F_DK board because no
QSPI_NOR available, but feature has been validated with internal ST
Board customized - STM32MP13XX_CUSTOM_HW)
<
ul
>
<
li
>
The applications or examples (CubeExample) could be executed from
NOR. For the instance, the FSBLA_SNOR and the CubeExample could be
copied using CubeProgrammer (External_Loader is included in form of
binaries for this purpose) or with the provided debug tool
“QSPI_NOR_Programmer”.
<
ul
>
<
li
>
At the boot, the bootrom will copy the FSBLA_SNOR in SYSRAM and
execute it,
</
li
>
<
li
>
FSBLA_SNOR:
<
ul
>
<
li
>
will initialize the clocks, the QSPI-NOR and the DDR,
</
li
>
<
li
>
will read from QSPI-NOR the CubeExample image length and load
CubeExample into DDR.
</
li
>
<
li
>
will jump into DDR to execute this CubeExample
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
<
li
>
eMMC boot mode:
<
ul
>
<
li
>
The applications or examples (CubeExample) could be executed from
eMMC(SDMMC2). For the instance, the FSBLA_eMMC and the CubeExample
should be copied using cube programmer(External_Loader is included in
form of binaries for this purpose) in the eMMC.
<
ul
>
<
li
>
At the boot, the bootrom will copy the FSBLA_eMMC in SYSRAM and
execute it,
</
li
>
<
li
>
FSBLA_eMMC:
<
ul
>
<
li
>
will initialize the clocks, the SDMMC2(eMMC) and the DDR,
</
li
>
<
li
>
will read from eMMC the CubeExample image length and load
CubeExample into DDR.
</
li
>
<
li
>
will jump into DDR to execute this CubeExample
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
<
h2
id
="
development-toolchains-and-compilers
"
>
Development Toolchains and
Compilers
</
h2
>
<
ul
>
<
li
>
STM32CubeIDE V1.15.0
</
li
>
<
li
>
IAR Embedded Workbench for ARM (EWARM): v9.50
</
li
>
</
ul
>
<
h2
id
="
supported-devices-and-boards
"
>
Supported Devices and boards
</
h2
>
<
ul
>
<
li
>
STM32MP131 / STM32MP133 and STM32MP135 devices
</
li
>
<
li
>
STM32MP135F Discovery board
</
li
>
</
ul
>
<
h2
id
="
dependencies
"
>
Dependencies
</
h2
>
<
ul
>
<
li
>
None
</
li
>
</
ul
>
<
h2
id
="
known-limitations
"
>
Known Limitations
</
h2
>
<
ul
>
<
li
>
The projects are not generated with STM32CubeMX tool.
</
li
>
<
li
>
Some IAR example compile with warnings but run Ok.
</
li
>
<
li
>
IAR does not have option to connect under reset for st-link probe
yet in IAR 9.50.
</
li
>
</
ul
>
<
h2
id
="
backward-compatibility
"
>
Backward Compatibility
</
h2
>
<
ul
>
<
li
>
Not applicable
</
li
>
</
ul
>
</
div
>
</
div
>
<
div
class
="
collapse
"
>
<
input
type
="
checkbox
"
id
="
collapse-section7
"
aria-hidden
="
true
"
>
<
label
for
="
collapse-section7
"
checked
aria-hidden
="
true
"
>
<
strong
>
V1.1.0
/ 23-Feb-2024
</
strong
>
</
label
>
<
div
>
<
h2
id
="
main-changes-1
"
>
Main Changes
</
h2
>
<
p
>
<
strong
>
Major Maintenance DV
</
strong
>
of STM32CubeMP13 Projects
(STM32Cube for STM32MP13 Series)
</
p
>
<
h2
id
="
contents-1
"
>
Contents
</
h2
>
<
h3
id
="
projects-1
"
>
Projects
</
h3
>
<
p
>
<
small
>
The components flagged by “
<
span
class
="
icon-st-update
"
>
</
span
>
” have changed since the previous release.
“
<
span
class
="
icon-st-add
"
>
</
span
>
” are new.
</
small
>
</
p
>
<
table
>
<
caption
>
Projects
<
strong
>
STM32MP135C-DK
</
strong
>
</
caption
>
<
thead
>
<
tr
class
="
header
"
>
<
th
style
="
text-align: left;
"
>
Board
</
th
>
<
th
style
="
text-align: left;
"
>
Project category
</
th
>
<
th
style
="
text-align: left;
"
>
Version
</
th
>
<
th
style
="
text-align: center;
"
>
Path
</
th
>
</
tr
>
</
thead
>
<
tbody
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Examples
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Examples
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Applications
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Applications
</
td
>
</
tr
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
External Loader
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/External_Loader
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Templates
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Templates
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
ul
>
<
li
>
TouchScreen support BSP examples added for G911 component.
</
li
>
<
li
>
Cube IDE toolchain GCC 12.3 support added.
</
li
>
<
li
>
IAR porting on Examples is done, Applications and Templates not yet
ported for IAR
</
li
>
<
li
>
Added support for boot from SD and using SDCard as storage medium at
same time in SD_Ext_Loader.
</
li
>
<
li
>
Example added to demonstrate Cryp SAES shared key feature.
</
li
>
</
ul
>
<
table
>
<
caption
>
Projects
<
strong
>
STM32MP13XX_CUSTOM_HW
</
strong
>
</
caption
>
<
thead
>
<
tr
class
="
header
"
>
<
th
style
="
text-align: left;
"
>
Board
</
th
>
<
th
style
="
text-align: left;
"
>
Project category
</
th
>
<
th
style
="
text-align: left;
"
>
Version
</
th
>
<
th
style
="
text-align: center;
"
>
Path
</
th
>
</
tr
>
</
thead
>
<
tbody
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Examples
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Examples
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Applications
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Applications
</
td
>
</
tr
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
External Loader
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/External_Loader
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Templates
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Templates
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
ul
>
<
li
>
Addition of External Loader for eMMC flash using cube programmer for
custom board.
</
li
>
<
li
>
FSBLA eMMC(FSBLA_Sdmmc2) application added for custom board.
</
li
>
<
li
>
FileX example added with eMMC support.
</
li
>
</
ul
>
<
p
>
<
strong
>
Notes
</
strong
>
</
p
>
<
ul
>
<
li
>
STM32MP13XX_CUSTOM_HW is an internal ST Board customized to test
some feature not available on STM32MP135F-DK Board : ex FMC-NAND or QSPi
NOR or eMMC
</
li
>
<
li
>
The exhaustive list of projects is provided in this table
<
a
href
="
STM32CubeProjectsList.html
"
>
STM32CubeProjectsList.html
</
a
>
</
li
>
<
li
>
Execution information :
<
ul
>
<
li
>
Engineering boot mode:
<
ul
>
<
li
>
All the examples could be run on SYSRAM memory, except
LTDC_Display_2Layers, DCMIPP, TouchScreen(the binary size of these
examples are larger than SYSRAM Size) => For these examples, DDR_Init
should be run before.
</
li
>
<
li
>
For the same reason, all the AzureRTOS applications should be run
after DDR_Init example.
</
li
>
</
ul
>
</
li
>
<
li
>
SDCard boot mode:
<
ul
>
<
li
>
The applications or examples (CubeExample) could be executed from
SDCard. For the instance, the FSBLA_Sdmmc and the CubeExample should be
copied using cube programmer (External_Loader is included in form of
binaries for this purpose) or manually in the SD Card.
<
ul
>
<
li
>
At the boot, the bootrom will copy the FSBLA_SDMMC in SYSRAM and
execute it,
</
li
>
<
li
>
FSBLA_Sdmmc:
<
ul
>
<
li
>
will initialize the clocks, the SDMMC and the DDR,
</
li
>
<
li
>
will read from SDMMC1 the CubeExample image length and load
CubeExample into DDR.
</
li
>
<
li
>
will jump into DDR to execute this CubeExample
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
<
li
>
NOR boot mode (not possible on STM32MP135F_DK board because no
QSPI_NOR available, but feature has been validated with internal ST
Board customized - STM32MP13XX_CUSTOM_HW)
<
ul
>
<
li
>
The applications or examples (CubeExample) could be executed from
NOR. For the instance, the FSBLA_SNOR and the CubeExample could be
copied using CubeProgrammer (External_Loader is included in form of
binaries for this purpose) or with the provided debug tool
“QSPI_NOR_Programmer”.
<
ul
>
<
li
>
At the boot, the bootrom will copy the FSBLA_SNOR in SYSRAM and
execute it,
</
li
>
<
li
>
FSBLA_SNOR:
<
ul
>
<
li
>
will initialize the clocks, the QSPI-NOR and the DDR,
</
li
>
<
li
>
will read from QSPI-NOR the CubeExample image length and load
CubeExample into DDR.
</
li
>
<
li
>
will jump into DDR to execute this CubeExample
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
<
li
>
eMMC boot mode:
<
ul
>
<
li
>
The applications or examples (CubeExample) could be executed from
eMMC(SDMMC2). For the instance, the FSBLA_eMMC and the CubeExample
should be copied using cube programmer(External_Loader is included in
form of binaries for this purpose) in the eMMC.
<
ul
>
<
li
>
At the boot, the bootrom will copy the FSBLA_eMMC in SYSRAM and
execute it,
</
li
>
<
li
>
FSBLA_eMMC:
<
ul
>
<
li
>
will initialize the clocks, the SDMMC2(eMMC) and the DDR,
</
li
>
<
li
>
will read from eMMC the CubeExample image length and load
CubeExample into DDR.
</
li
>
<
li
>
will jump into DDR to execute this CubeExample
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
<
h2
id
="
development-toolchains-and-compilers-1
"
>
Development Toolchains
and Compilers
</
h2
>
<
ul
>
<
li
>
STM32CubeIDE V1.15.0
</
li
>
<
li
>
IAR Embedded Workbench for ARM (EWARM): v9.50
</
li
>
</
ul
>
<
h2
id
="
supported-devices-and-boards-1
"
>
Supported Devices and
boards
</
h2
>
<
ul
>
<
li
>
STM32MP131 / STM32MP133 and STM32MP135 devices
</
li
>
<
li
>
STM32MP135F Discovery board
</
li
>
</
ul
>
<
h2
id
="
dependencies-1
"
>
Dependencies
</
h2
>
<
ul
>
<
li
>
None
</
li
>
</
ul
>
<
h2
id
="
known-limitations-1
"
>
Known Limitations
</
h2
>
<
ul
>
<
li
>
The projects are not generated with STM32CubeMX tool.
</
li
>
<
li
>
IAR ported examples are not provided for all project and some IAR
example compile with warnings but run Ok.
</
li
>
<
li
>
IAR does not have option to connect under reset for st-link probe
yet in IAR 9.50.
</
li
>
</
ul
>
<
h2
id
="
backward-compatibility-1
"
>
Backward Compatibility
</
h2
>
<
ul
>
<
li
>
Not applicable
</
li
>
</
ul
>
</
div
>
</
div
>
<
div
class
="
collapse
"
>
<
input
type
="
checkbox
"
id
="
collapse-section6
"
aria-hidden
="
true
"
>
<
label
for
="
collapse-section6
"
checked
aria-hidden
="
true
"
>
<
strong
>
V1.0.0
/ 01-Nov-2023
</
strong
>
</
label
>
<
div
>
<
h2
id
="
main-changes-2
"
>
Main Changes
</
h2
>
<
p
>
<
strong
>
Mass Market DV
</
strong
>
of STM32CubeMP13 Projects (STM32Cube
for STM32MP13 Series)
</
p
>
<
h2
id
="
contents-2
"
>
Contents
</
h2
>
<
h3
id
="
projects-2
"
>
Projects
</
h3
>
<
p
>
<
small
>
The components flagged by “
<
span
class
="
icon-st-update
"
>
</
span
>
” have changed since the previous release.
“
<
span
class
="
icon-st-add
"
>
</
span
>
” are new.
</
small
>
</
p
>
<
table
>
<
caption
>
Projects
<
strong
>
STM32MP135C-DK
</
strong
>
</
caption
>
<
thead
>
<
tr
class
="
header
"
>
<
th
style
="
text-align: left;
"
>
Board
</
th
>
<
th
style
="
text-align: left;
"
>
Project category
</
th
>
<
th
style
="
text-align: left;
"
>
Version
</
th
>
<
th
style
="
text-align: center;
"
>
Path
</
th
>
</
tr
>
</
thead
>
<
tbody
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Examples
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Examples
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Applications
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Applications
</
td
>
</
tr
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
External Loader
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-add
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/External_Loader
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Templates
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Templates
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
ul
>
<
li
>
MMU & CACHE has been enabled for all examples, applications and
Templates.
</
li
>
<
li
>
Addition of External Loader for SDCard flash using cube
programmer.
</
li
>
</
ul
>
<
table
>
<
caption
>
Projects
<
strong
>
STM32MP13XX_CUSTOM_HW
</
strong
>
</
caption
>
<
thead
>
<
tr
class
="
header
"
>
<
th
style
="
text-align: left;
"
>
Board
</
th
>
<
th
style
="
text-align: left;
"
>
Project category
</
th
>
<
th
style
="
text-align: left;
"
>
Version
</
th
>
<
th
style
="
text-align: center;
"
>
Path
</
th
>
</
tr
>
</
thead
>
<
tbody
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Examples
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Examples
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Applications
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Applications
</
td
>
</
tr
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
External Loader
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-add
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/External_Loader
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Templates
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Templates
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
ul
>
<
li
>
Quality related fixes for all examples and applications and addition
of External Loader for XSPI flash using cube programmer.
</
li
>
<
li
>
QSPI dependencies are replaced with XSPI
</
li
>
</
ul
>
<
p
>
<
strong
>
Notes
</
strong
>
</
p
>
<
ul
>
<
li
>
STM32MP13XX_CUSTOM_HW is an internal ST Board customized to test
some feature not available on STM32MP135F-DK Board : ex FMC-NAND or QSPi
NOR
</
li
>
<
li
>
The exhaustive list of projects is provided in this table
<
a
href
="
STM32CubeProjectsList.html
"
>
STM32CubeProjectsList.html
</
a
>
</
li
>
<
li
>
Execution information :
<
ul
>
<
li
>
Engineering boot mode:
<
ul
>
<
li
>
All the examples could be run on SYSRAM memory, except
LTDC_Display_2Layers (the binary size of this example is larger than
SYSRAM Size) => For this example, DDR_Init should be run before.
</
li
>
<
li
>
For the same reason, all the AzureRTOS applications should be run
after DDR_Init example.
</
li
>
</
ul
>
</
li
>
<
li
>
SDCard boot mode:
<
ul
>
<
li
>
The applications or examples (CubeExample) could be executed from
SDCard. For the instance, the FSBLA_Sdmmc and the CubeExample should be
copied manually in the SD Card.
<
ul
>
<
li
>
At the boot, the bootrom will copy the FSBLA_SDMMC in SYSRAM and
execute it,
</
li
>
<
li
>
FSBLA_Sdmmc:
<
ul
>
<
li
>
will initialize the clocks, the SDMMC and the DDR,
</
li
>
<
li
>
will read from SDMMC1 the CubeExample image length and load
CubeExample into DDR.
</
li
>
<
li
>
will jump into DDR to execute this CubeExample
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
<
li
>
NOR boot mode (not possible on STM32MP135F_DK board because no
QSPI_NOR available, but feature has been validated with internal ST
Board customized - STM32MP13XX_CUSTOM_HW)
<
ul
>
<
li
>
The applications or examples (CubeExample) could be executed from
NOR. For the instance, the FSBLA_SNOR and the CubeExample could be
copied with the debug tool “QSPI_NOR_Programmer”.
<
ul
>
<
li
>
At the boot, the bootrom will copy the FSBLA_SNOR in SYSRAM and
execute it,
</
li
>
<
li
>
FSBLA_SNOR:
<
ul
>
<
li
>
will initialize the clocks, the QSPI-NOR and the DDR,
</
li
>
<
li
>
will read from QSPI-NOR the CubeExample image length and load
CubeExample into DDR.
</
li
>
<
li
>
will jump into DDR to execute this CubeExample
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
<
h2
id
="
development-toolchains-and-compilers-2
"
>
Development Toolchains
and Compilers
</
h2
>
<
ul
>
<
li
>
STM32CubeIDE V1.12.1 (10.3-2021.10)
</
li
>
</
ul
>
<
h2
id
="
supported-devices-and-boards-2
"
>
Supported Devices and
boards
</
h2
>
<
ul
>
<
li
>
STM32MP131 / STM32MP133 and STM32MP135 devices
</
li
>
<
li
>
STM32MP135F Discovery board
</
li
>
</
ul
>
<
h2
id
="
dependencies-2
"
>
Dependencies
</
h2
>
<
ul
>
<
li
>
None
</
li
>
</
ul
>
<
h2
id
="
known-limitations-2
"
>
Known Limitations
</
h2
>
<
ul
>
<
li
>
The projects are not generated with STM32CubeMX tool.
</
li
>
<
li
>
The projects are not yet supported with IAR Embedded Workbench for
ARM (EWARM) toolchain.
</
li
>
</
ul
>
<
h2
id
="
backward-compatibility-2
"
>
Backward Compatibility
</
h2
>
<
ul
>
<
li
>
Not applicable
</
li
>
</
ul
>
</
div
>
</
div
>
<
div
class
="
collapse
"
>
<
input
type
="
checkbox
"
id
="
collapse-section6
"
aria-hidden
="
true
"
>
<
label
for
="
collapse-section6
"
aria-hidden
="
true
"
>
<
strong
>
V0.7.0 /
27-June-2023
</
strong
>
</
label
>
<
div
>
<
h2
id
="
main-changes-3
"
>
Main Changes
</
h2
>
<
p
>
<
strong
>
5th ALPHA DV
</
strong
>
of STM32CubeMP13 Projects (STM32Cube
for STM32MP13 Series)
</
p
>
<
h2
id
="
contents-3
"
>
Contents
</
h2
>
<
h3
id
="
projects-3
"
>
Projects
</
h3
>
<
p
>
<
small
>
The components flagged by “
<
span
class
="
icon-st-update
"
>
</
span
>
” have changed since the previous release.
“
<
span
class
="
icon-st-add
"
>
</
span
>
” are new.
</
small
>
</
p
>
<
table
>
<
caption
>
Projects
<
strong
>
STM32MP135C-DK
</
strong
>
</
caption
>
<
thead
>
<
tr
class
="
header
"
>
<
th
style
="
text-align: left;
"
>
Board
</
th
>
<
th
style
="
text-align: left;
"
>
Project category
</
th
>
<
th
style
="
text-align: left;
"
>
Version
</
th
>
<
th
style
="
text-align: center;
"
>
Path
</
th
>
</
tr
>
</
thead
>
<
tbody
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Examples
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Examples
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Applications
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Applications
</
td
>
</
tr
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Templates
</
td
>
<
td
style
="
text-align: left;
"
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Templates
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
ul
>
<
li
>
2 new examples implemented:
<
ul
>
<
li
>
DCMIPP_CaptureMode_A7
</
li
>
<
li
>
DCMIPP_SnapshotMode_A7
</
li
>
</
ul
>
</
li
>
<
li
>
3 new application implemented:
<
ul
>
<
li
>
Low_power_LPLV_Stop2
</
li
>
<
li
>
Low_power_Standby
</
li
>
<
li
>
Tx_MPU
</
li
>
</
ul
>
</
li
>
<
li
>
MMU & CACHE has been enabled for LTDC, GPIO, ThreadX, USBX,
Fx_SRAM_File_Edit_Standalone applications.
</
li
>
</
ul
>
<
table
>
<
caption
>
Projects
<
strong
>
STM32MP13XX_CUSTOM_HW
</
strong
>
</
caption
>
<
thead
>
<
tr
class
="
header
"
>
<
th
style
="
text-align: left;
"
>
Board
</
th
>
<
th
style
="
text-align: left;
"
>
Project category
</
th
>
<
th
style
="
text-align: left;
"
>
Version
</
th
>
<
th
style
="
text-align: center;
"
>
Path
</
th
>
</
tr
>
</
thead
>
<
tbody
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Examples
</
td
>
<
td
style
="
text-align: left;
"
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Examples
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Applications
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Applications
</
td
>
</
tr
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Templates
</
td
>
<
td
style
="
text-align: left;
"
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Templates
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
ul
>
<
li
>
1 application implemented:
<
ul
>
<
li
>
Fx_Nand_Write_Read_File_Sequencer
</
li
>
</
ul
>
</
li
>
</
ul
>
<
p
>
<
strong
>
Notes
</
strong
>
</
p
>
<
ul
>
<
li
>
STM32MP13XX_CUSTOM_HW is an internal ST Board customized to test
some feature not available on STM32MP135F-DK Board : ex FMC-NAND or QSPi
NOR
</
li
>
<
li
>
The exhaustive list of projects is provided in this table
<
a
href
="
STM32CubeProjectsList.html
"
>
STM32CubeProjectsList.html
</
a
>
</
li
>
<
li
>
Execution information :
<
ul
>
<
li
>
Engineering boot mode:
<
ul
>
<
li
>
All the examples could be run on SYSRAM memory, except
LTDC_Display_2Layers (the binary size of this example is larger than
SYSRAM Size) => For this example, DDR_Init should be run before.
</
li
>
<
li
>
For the same reason, all the AzureRTOS applications should be run
after DDR_Init example.
</
li
>
</
ul
>
</
li
>
<
li
>
SDCard boot mode:
<
ul
>
<
li
>
The applications or examples (CubeExample) could be executed from
SDCard. For the instance, the FSBLA_Sdmmc and the CubeExample should be
copied manually in the SD Card.
<
ul
>
<
li
>
At the boot, the bootrom will copy the FSBLA_SDMMC in SYSRAM and
execute it,
</
li
>
<
li
>
FSBLA_Sdmmc:
<
ul
>
<
li
>
will initialize the clocks, the SDMMC and the DDR,
</
li
>
<
li
>
will read from SDMMC1 the CubeExample image length and load
CubeExample into DDR.
</
li
>
<
li
>
will jump into DDR to execute this CubeExample
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
<
li
>
NOR boot mode (not possible on STM32MP135F_DK board because no
QSPI_NOR available, but feature has been validated with internal ST
Board customized - STM32MP13XX_CUSTOM_HW)
<
ul
>
<
li
>
The applications or examples (CubeExample) could be executed from
NOR. For the instance, the FSBLA_SNOR and the CubeExample could be
copied with the debug tool “QSPI_NOR_Programmer”.
<
ul
>
<
li
>
At the boot, the bootrom will copy the FSBLA_SNOR in SYSRAM and
execute it,
</
li
>
<
li
>
FSBLA_SNOR:
<
ul
>
<
li
>
will initialize the clocks, the QSPI-NOR and the DDR,
</
li
>
<
li
>
will read from QSPI-NOR the CubeExample image length and load
CubeExample into DDR.
</
li
>
<
li
>
will jump into DDR to execute this CubeExample
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
</
li
>
</
ul
>
<
h2
id
="
development-toolchains-and-compilers-3
"
>
Development Toolchains
and Compilers
</
h2
>
<
ul
>
<
li
>
STM32CubeIDE V1.12.1 (10.3-2021.10)
</
li
>
</
ul
>
<
h2
id
="
supported-devices-and-boards-3
"
>
Supported Devices and
boards
</
h2
>
<
ul
>
<
li
>
STM32MP131 / STM32MP133 and STM32MP135 devices
</
li
>
<
li
>
STM32MP135F Discovery board
</
li
>
</
ul
>
<
h2
id
="
dependencies-3
"
>
Dependencies
</
h2
>
<
ul
>
<
li
>
None
</
li
>
</
ul
>
<
h2
id
="
known-limitations-3
"
>
Known Limitations
</
h2
>
<
ul
>
<
li
>
The projects are not generated with STM32CubeMX tool.
</
li
>
<
li
>
The projects are not yet supported with IAR Embedded Workbench for
ARM (EWARM) toolchain.
</
li
>
</
ul
>
<
h2
id
="
backward-compatibility-3
"
>
Backward Compatibility
</
h2
>
<
ul
>
<
li
>
Not applicable
</
li
>
</
ul
>
</
div
>
</
div
>
<
div
class
="
collapse
"
>
<
input
type
="
checkbox
"
id
="
collapse-section5
"
aria-hidden
="
true
"
>
<
label
for
="
collapse-section5
"
aria-hidden
="
true
"
>
<
strong
>
V0.6.0 /
16-December-2022
</
strong
>
</
label
>
<
div
>
<
h2
id
="
main-changes-4
"
>
Main Changes
</
h2
>
<
p
>
<
strong
>
4th ALPHA DV
</
strong
>
of STM32CubeMP13 Projects (STM32Cube
for STM32MP13 Series)
</
p
>
<
h2
id
="
contents-4
"
>
Contents
</
h2
>
<
h3
id
="
projects-4
"
>
Projects
</
h3
>
<
p
>
<
small
>
The components flagged by “
<
span
class
="
icon-st-update
"
>
</
span
>
” have changed since the previous release.
“
<
span
class
="
icon-st-add
"
>
</
span
>
” are new.
</
small
>
</
p
>
<
table
>
<
caption
>
Projects
<
strong
>
STM32MP135C-DK
</
strong
>
</
caption
>
<
thead
>
<
tr
class
="
header
"
>
<
th
style
="
text-align: left;
"
>
Board
</
th
>
<
th
style
="
text-align: left;
"
>
Project category
</
th
>
<
th
style
="
text-align: left;
"
>
Version
</
th
>
<
th
style
="
text-align: center;
"
>
Path
</
th
>
</
tr
>
</
thead
>
<
tbody
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Examples
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Examples
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Applications
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-update
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Applications
</
td
>
</
tr
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP135F-DK
</
td
>
<
td
style
="
text-align: left;
"
>
Templates
</
td
>
<
td
style
="
text-align: left;
"
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP135C-DK/Templates
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
ul
>
<
li
>
6 new examples implemented:
<
ul
>
<
li
>
ETZPC_NonSecure_Access
</
li
>
<
li
>
MDMA_Mem2MemTransfer
<
br
/>
</
li
>
<
li
>
MDMA_Mem2MemTransfer_Secure
</
li
>
<
li
>
PKA_ECCDoubleBaseLadder
</
li
>
<
li
>
PKA_ECDSA_Sign
</
li
>
<
li
>
USART_SlaveMode_DMA
</
li
>
</
ul
>
</
li
>
<
li
>
1 new application implemented:
<
ul
>
<
li
>
Nx_Iperf
</
li
>
</
ul
>
</
li
>
</
ul
>
<
table
>
<
caption
>
Projects
<
strong
>
STM32MP13XX_CUSTOM_HW
</
strong
>
</
caption
>
<
thead
>
<
tr
class
="
header
"
>
<
th
style
="
text-align: left;
"
>
Board
</
th
>
<
th
style
="
text-align: left;
"
>
Project category
</
th
>
<
th
style
="
text-align: left;
"
>
Version
</
th
>
<
th
style
="
text-align: center;
"
>
Path
</
th
>
</
tr
>
</
thead
>
<
tbody
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Examples
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-add
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Examples
</
td
>
</
tr
>
<
tr
class
="
even
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Applications
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-add
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Applications
</
td
>
</
tr
>
<
tr
class
="
odd
"
>
<
td
style
="
text-align: left;
"
>
STM32MP13XX_CUSTOM_HW
</
td
>
<
td
style
="
text-align: left;
"
>
Templates
</
td
>
<
td
style
="
text-align: left;
"
>
<
span
class
="
icon-st-add
"
>
</
span
>
</
td
>
<
td
style
="
text-align: center;
"
>
Projects/STM32MP13XX_CUSTOM_HW/Templates
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
ul
>
<
li
>
1 Template implemented
</
li
>
<
li
>
1 example implemented:
<
ul
>
<
li
>
DDR_Init to initialize LPDDR3)
</
li
>
</
ul
>
</
li
>
<
li
>
4 applications implemented:
<
ul
>
<
li
>
QSPI_NOR_PROGRAMMER : This application shows how to load a signed
binary to an QSPI-NOR (MX25L51245G).
</
li
>
<
li
>
FSBLA_SNOR : This application describes how to load a cubeExample
binary from QSPI-NOR (MX25L51245G) into DDR (LPDDR3), and execute
it.
</
li
>
<
li
>
Fx_uSD_File_Edit : This application provides an example of Azure
RTOS FileX stack usage on board, it shows how to develop a basic SD card
file operations application
</
li
>
<
li
>
Fx_Nand_Write_Read_File : It demonstrates how to create a Fat File
system on the NAND flash using FileX alongside LevelX (without ECC). The
application is designed to execute file operations on the Micron
MT29F8G08ABACAH4
</
li
>
</
ul
>
</
li
>
</
ul
>
<
p
>
<
strong
>
Notes
</
strong
>
</
p
>
<
ul
>
<
li
>
STM32MP13XX_CUSTOM_HW is an internal ST Board customized to test
some feature not available on STM32MP135F-DK Board : ex FMC-NAND or QSPi
NOR
</
li
>
<
li
>
The exhaustive list of projects is provided in this table
<
a
href
="
STM32CubeProjectsList.html
"
>
STM32CubeProjectsList.html
</
a
>
</
li
>
<
li
>
Execution information :
<
ul
>
<
li
>
Engineering boot mode:
<
ul
>
<
li
>
All the examples could be run on SYSRAM memory, except
LTDC_Display_2Layers (the binary size of this example is larger than
SYSRAM Size) => For this example, DDR_Init should be run before.
</
li
>
<
li
>
For the same reason, all the AzureRTOS applications should be run
after DDR_Init example.
</
li
>
</
ul
>
</
li
>
<
li
>
SDCard boot mode:
<
ul
>
<
li
>
The applications or examples (CubeExample) could be executed from
SDCard. For the instance, the FSBLA_Sdmmc and the CubeExample should be
View remainder of file in raw view
Back
|
FazBrowse Home
|
New Git URL