forked from STMicroelectronics/STM32CubeC0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Release_Notes.html
997 lines (997 loc) · 33.1 KB
/
Release_Notes.html
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
<!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 STM32CubeC0 Firmware Package</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* 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.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem 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-stm32cubec0-firmware-package">Release Notes
for <mark> STM32CubeC0 Firmware Package </mark></h1>
<p>Copyright © 2022 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><span style="font-weight: bold;">STMCube is an STMicroelectronics
original initiative to ease developers life by reducing development
efforts, time and cost.</span></p>
<p>STM32Cube covers STM32 portfolio.</p>
<p>STM32Cube Version 1.x includes:</p>
<ul>
<li><p>The STM32CubeMX, a graphical software configuration tool that
allows to generate C initialization code using graphical
wizards.</p></li>
<li><p>A comprehensive embedded software platform, delivered per series
(such as STM32CubeC0 for STM32C0 series)</p>
<ul>
<li><p>The STM32Cube HAL, an STM32 abstraction layer embedded software,
ensuring maximized portability across STM32 portfolio</p></li>
<li><p>A consistent set of middleware components such as ThreadX and
LevelX]</p></li>
</ul></li>
</ul>
<p>The STM32Cube firmware solution offers a straightforward API with a
modular architecture, making it simple to fine tune custom applications
and scalable to fit most requirements.</p>
<p>Both the HAL and LL APIs are production–ready, checked with
CodeSonar® static analysis tool, and developed in compliance with MISRA
C® guidelines. Reports are available on demand.</p>
<figure>
<img src="_htmresc/STM32Cube_2020.bmp" alt="STM32Cube" />
<figcaption aria-hidden="true">STM32Cube</figcaption>
</figure>
<p>The <strong>drivers</strong> provided within this package
<strong>support</strong> the <strong>STM32C031/STM32C011/C071
lines.</strong></p>
</div>
<section id="update-history" class="col-sm-12 col-lg-8">
<h2><strong>Update History</strong></h2>
<div class="collapse">
<input type="checkbox" id="collapse-section4" checked aria-hidden="true">
<label for="collapse-section4" checked aria-hidden="true"><strong>V1.2.0
/ 05-June-2024</strong></label>
<div>
<h2 id="main-changes">Main Changes</h2>
<ul>
<li>First official release of <strong>STM32CubeC0</strong> Firmware
Package to support <span style="font-weight: bold;">STM32CubeC071xx
devices</span></li>
</ul>
<h2 id="contents">Contents</h2>
<h3 id="features"><strong>Features</strong></h3>
<p>STM32CubeC0 gathers in one single package all the generic embedded
software components required to develop an application on STM32C0
microcontrollers.</p>
<ul>
<li>Production–ready HAL and LL API drivers, checked with Coverity®
static analysis tool, and developed in compliance with MISRA C®
guidelines.</li>
<li>CMSIS CORE, DSP and RTOS software components.</li>
<li>Consistent set of middleware components (Azure® RTOS USBX,
FileX/LevelX, ThreadX, mcuboot, mbed-crypto, and OpenBootloader).</li>
<li>Up to <strong>187</strong> examples and applications for easy
understanding, compatible with STM32CubeMX to facilitate the
configuration through a graphical tool.</li>
<li>New Templates_Board project for NUCLEO-C071RB demonstrating the
STM32CubeMX “Start my project from ST Board” providing an easy access to
ST boards’ features.</li>
</ul>
<p><strong>CMSIS Device</strong> Updates</p>
<ul>
<li>Support of STM32C071xx devices</li>
<li>Update CMSIS devices to include latest corrections</li>
</ul>
<p><strong>HAL/LL Drivers</strong> Updates</p>
<ul>
<li>HAL and LL drivers Official Release for STM32C071xx</li>
<li>Add USB HAL and LL drivers for STM32C071xx devices</li>
<li>General updates to fix known defects and implementation
enhancements</li>
</ul>
<p><strong>BSP Drivers</strong> Updates</p>
<ul>
<li>Update STM32C0xx_Nucleo BSP Driver to support NUCLEO-C071RB board
for STM32UC071xx devices</li>
<li>General updates to fix known defects and implementation
enhancements</li>
</ul>
<p><strong>Midlware</strong> Updates</p>
<ul>
<li>Major update in AzureRTOS Middlewares (new version V6.4.0)</li>
<li>Add the AzureRTOS USBX middleware component</li>
<li>Add mbed-crypto and mcuboot Middleware</li>
</ul>
<h3 id="projects"><strong>Projects</strong></h3>
<ul>
<li>Add <strong>75</strong> new projects on NUCLEO-C071RB board:
<ul>
<li>14 Applications</li>
<li>58 examples</li>
<li>1 HAL Templates</li>
<li>1 LL Templates</li>
<li>1 Board Templates</li>
</ul></li>
</ul>
<p>The <strong>STM32CubeC0</strong> Firmware package comes with template
running on STMicroelectronics boards, organized by board and provided
with preconfigured projects for the main supported toolchains. The
exhaustive list of projects is provided in this table <a
href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a></p>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Projects</td>
<td style="text-align: left;">V1.2.0</td>
<td style="text-align: left;"><a
href="Projects/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="components">Components</h2>
<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><strong>Drivers</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CMSIS</td>
<td style="text-align: left;">V5.9.0</td>
<td style="text-align: left;"><a
href="Drivers/CMSIS/Documentation/General/html/index.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32C0xx CMSIS <span
class="icon-st-update"></span></td>
<td style="text-align: left;">V1.2.0</td>
<td style="text-align: left;"><a
href="Drivers/CMSIS/Device/ST/STM32C0xx/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32C0xx HAL/LL <span
class="icon-st-update"></span></td>
<td style="text-align: left;">V1.2.0</td>
<td style="text-align: left;"><a
href="Drivers/STM32C0xx_HAL_Driver/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32C0xx NUCLEO <span
class="icon-st-update"></span></td>
<td style="text-align: left;">V1.1.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/STM32C0xx_Nucleo/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32C0316-DK <span
class="icon-st-update"></span></td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a
href="Drivers/BSP/STM32C0316-DK/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32C0116-DK <span
class="icon-st-update"></span></td>
<td style="text-align: left;">V1.1.1</td>
<td style="text-align: left;"><a
href="Drivers/BSP/STM32C0116-DK/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Components</td>
<td style="text-align: left;">V7.1.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/Components/Common/Release_Notes.html">release
notes</a></td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">OpenBootloader</td>
<td style="text-align: left;">V6.0.0</td>
<td style="text-align: left;"><a
href="Middlewares/ST/OpenBootloader/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Azure RTOS ThreadX <span
class="icon-st-update"></span></td>
<td style="text-align: left;">threadx-6.4.0.240419</td>
<td style="text-align: left;"><a
href="https://github.com/eclipse-threadx/threadx/releases/tag/v6.4.0_rel">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Azure RTOS FileX <span
class="icon-st-update"></span></td>
<td style="text-align: left;">filex-6.4.0.240419</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/filex/releases/tag/v6.4.0_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Azure RTOS LeveLX <span
class="icon-st-update"></span></td>
<td style="text-align: left;">levelx-6.4.0.240419</td>
<td style="text-align: left;"><a
href="https://github.com/eclipse-threadx/levelx/releases/tag/v6.4.0_rel">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Azure RTOS USBX <span
class="icon-st-add"></span></td>
<td style="text-align: left;">usbx-6.4.0.240419</td>
<td style="text-align: left;"><a
href="https://github.com/eclipse-threadx/usbx/releases/tag/v6.4.0_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">mbed-crypto <span
class="icon-st-add"></span></td>
<td style="text-align: left;">mbed-tls-v2.28.8</td>
<td style="text-align: left;"><a
href="Middlewares/Third_Party/mbed-crypto/st_readme.txt">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">mcuboot <span
class="icon-st-add"></span></td>
<td style="text-align: left;">v1.7.2.24</td>
<td style="text-align: left;"><a
href="Middlewares/Third_Party/mcuboot/st_readme.txt">release
notes</a></td>
</tr>
</tbody>
</table>
<h1 id="development-toolchains-and-compilers">Development Toolchains and
Compilers</h1>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V9.20.4 + ST-LINK,
patch available here:
<ul>
<li><a
href="Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv9_STM32C07x_V1.0.0.zip">Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv9_STM32C07x_V1.0.0.zip</a>
<ul>
<li>This patch supports <strong>STM32C071xx</strong> devices</li>
</ul></li>
<li><a
href="Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32C01x-03x_V1.0.zip">Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32C01x-03x_V1.0.zip</a>
<ul>
<li>This patch supports <strong>STM32C031 and STM32C011</strong>
devices</li>
</ul></li>
</ul></li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.39 +
ST-LINK, patch available here:
<ul>
<li><a
href="Utilities\PC_Software\IDEs_Patches\MDK-ARM\Keil.STM32C0xx_DFP.1.1.0.zip">Utilities\PC_Software\IDEs_Patches\MDK-ARM\Keil.STM32C0xx_DFP.1.1.0.zip</a>
<ul>
<li>This patch supports <strong>STM32C071</strong> and
<strong>STM32C031/011</strong> devices</li>
</ul></li>
</ul></li>
<li>STM32CubeIDE V1.16.0 (GCC12)</li>
</ul>
<h2 id="supported-devices-and-boards">Supported Devices and boards</h2>
<ul>
<li>STM32C071xB and STM32C071x8 devices</li>
<li>STM32C031 and STM32C011 devices</li>
<li>NUCLEO-C071RB board rev.B</li>
<li>NUCLEO-C031C6 board rev.B</li>
<li>STM32C0116-DK board rev.B</li>
<li>STM32C0316-DK board rev.B</li>
</ul>
<h2 id="dependencies">Dependencies</h2>
<ul>
<li>STM32CubeMX V6.12.0
<ul>
<li>Projects (Applications and Examples) are generated using STM32CubeMX
version V6.12.0.</li>
</ul></li>
</ul>
<h2 id="known-limitations">Known Limitations</h2>
<ul>
<li><p>Some projects are not generated with STM32CubeMX tool. For the
exhaustive list please refer to this table <a
href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a></p></li>
<li><p>The following projects are not supported with STM32CubeIDE
toolchain (<strong>Release</strong>):</p>
<ul>
<li>NUCLEO-C071RB/Examples_LL/SPI/SPI_OneBoard_HalfDuplex_IT_Init</li>
</ul></li>
<li><p>The following projects are not supported with MDK-ARM toolchain
:</p>
<ul>
<li>NUCLEO-C071RB/Examples_LL/I2C/I2C_OneBoard_AdvCommunication_DMAAndIT_Init</li>
</ul></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-section3" aria-hidden="true">
<label for="collapse-section3" aria-hidden="true"><strong>V1.1.0 /
07-June-2023</strong></label>
<div>
<h2 id="main-changes-1">Main Changes</h2>
<ul>
<li>Maintenance Release of <span
style="font-weight: bold;">STM32CubeC0</span> Firmware Package</li>
</ul>
<p><strong>CMSIS</strong> updates</p>
<ul>
<li>CMSIS is upgraded to version V5.9.0</li>
</ul>
<p><strong>CMSIS Device</strong> updates</p>
<ul>
<li>CMSIS Device Maintenance Release version of bits and registers
definition aligned with RM0490 (STM32C0 reference manual)
<ul>
<li>Rename PWR_BKPREGx to PWR_BKPxR</li>
<li>Rename SVC_IRQn to SVCall_IRQn</li>
</ul></li>
</ul>
<p><strong>HAL/LL Drivers</strong> updates</p>
<ul>
<li>HAL and LL drivers Maintenance Release for STM32C011xx / STM32C031xx
devices</li>
</ul>
<p>– <strong>HAL Drivers</strong> updates</p>
<ul>
<li><strong>HAL RCC</strong> driver
<ul>
<li>Rename the following defines:
<ul>
<li>HSE_TIMEOUT_VALUE to RCC_HSE_TIMEOUT_VALUE</li>
<li>HSI_TIMEOUT_VALUE to RCC_HSI_TIMEOUT_VALUE</li>
<li>LSI_TIMEOUT_VALUE to RCC_LSI_TIMEOUT_VALUE</li>
<li>CLOCKSWITCH_TIMEOUT_VALUE to RCC_CLOCKSWITCH_TIMEOUT_VALUE</li>
</ul></li>
</ul></li>
<li><strong>HAL RTC</strong> driver
<ul>
<li>Add __HAL_RTC_IS_CALENDAR_INITIALIZED macro</li>
</ul></li>
<li><strong>HAL TIM</strong> driver
<ul>
<li>Add __HAL_TIM_SELECT_CCDMAREQUEST macro</li>
</ul></li>
<li><strong>HAL UART</strong> driver
<ul>
<li>Add (HAL_UART_RxEventTypeTypeDef RxEventType) to the
__UART_HandleTypeDef structure</li>
<li>Add following defines:
<ul>
<li>HAL_UART_RXEVENT_TC (Transfer Complete event)</li>
<li>HAL_UART_RXEVENT_HT (Half Transfer event)</li>
<li>HAL_UART_RXEVENT_IDLE (IDLE event)</li>
</ul></li>
<li>Add HAL_UARTEx_GetRxEventType() API to provide Rx Event type (to be
called within the user implementation of Rx Event Callback)</li>
</ul></li>
<li><strong>HAL</strong> driver
<ul>
<li>Update HAL_SYSCFG_SetPinBinding() to handle properly setting of a
pin biding (w/o overwriting existing pins binding settings).</li>
<li>Update HAL_SYSCFG_GetPinBinding() to get a pin biding setting.</li>
</ul></li>
</ul>
<p>– <strong>LL Drivers</strong> updates</p>
<ul>
<li><strong>LL SYSTEM</strong> driver
<ul>
<li>Add SYSTEM_LL_PINMUX_SOURCE following defines:
<ul>
<li>LL_PINMUX_SO8_PIN1, LL_PINMUX_SO8_PIN4, LL_PINMUX_SO8_PIN5,
LL_PINMUX_SO8_PIN8, LL_PINMUX_WLCSP12_PINE2, LL_PINMUX_WLCSP12_PINF1 in
case of device <strong>STM32C011xx</strong> device</li>
<li>LL_PINMUX_WLCSP14_PINF2, LL_PINMUX_WLCSP14_PING3,
LL_PINMUX_WLCSP14_PINJ1, LL_PINMUX_WLCSP14_PINH2,
LL_PINMUX_WLCSP14_PING1, LL_PINMUX_WLCSP14_PINJ3 in case of device
<strong>STM32C031xx</strong> device</li>
</ul></li>
<li>Update LL_SYSCFG_ConfigPinMux() and LL_SYSCFG_GetConfigPinMux()
functions</li>
<li>LL_SYSCFG_ConfigPinMux() API updated to handle properly setting of a
pin binding (w/o overwriting existing pins biding settings).</li>
<li>LL_SYSCFG_GetConfigPinMux() API updated to get a pin biding
setting.</li>
</ul></li>
</ul>
<p><strong>Middlewares Drivers</strong> updates</p>
<ul>
<li>Update of AzureRtos Middleware to new version V6.2.0</li>
<li>Update of OpenBootloader to new version V6.1.0</li>
</ul>
<h2 id="contents-1">Contents</h2>
<h3 id="projects-1"><strong>Projects</strong></h3>
<p>The <strong>STM32CubeC0</strong> Firmware package comes with template
running on STMicroelectronics boards, organized by board and provided
with preconfigured projects for the main supported toolchains. The
exhaustive list of projects is provided in this table <a
href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a></p>
<p>This release contains almost HAL drivers, LL drivers, BSP drivers,
templates, projects and examples.</p>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release notes</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Projects</td>
<td style="text-align: left;">V1.1.0</td>
<td style="text-align: left;"><a
href="Projects/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h3 id="components-1"><strong>Components</strong></h3>
<p><small>The Project categories 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><strong>Drivers</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CMSIS <span
class="icon-st-update"></span></td>
<td style="text-align: left;">V5.9.0</td>
<td style="text-align: left;"><a
href="Drivers/CMSIS/Documentation/General/html/index.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32C0xx CMSIS <span
class="icon-st-update"></span></td>
<td style="text-align: left;">V1.1.0</td>
<td style="text-align: left;"><a
href="Drivers/CMSIS/Device/ST/STM32C0xx/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32C0xx HAL/LL <span
class="icon-st-update"></span></td>
<td style="text-align: left;">V1.1.0</td>
<td style="text-align: left;"><a
href="Drivers/STM32C0xx_HAL_Driver/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32C0xx NUCLEO</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/STM32C0xx_Nucleo/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32C0316-DK</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/STM32C0316-DK/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32C0116-DK <span
class="icon-st-update"></span></td>
<td style="text-align: left;">V1.1.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/STM32C0116-DK/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Components</td>
<td style="text-align: left;">V7.1.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/Components/Common/Release_Notes.html">release
notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption><strong>Middlewares</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">OpenBootloader <span
class="icon-st-update"></span></td>
<td style="text-align: left;">V6.1.0</td>
<td style="text-align: left;"><a
href="Middlewares/ST/OpenBootloader/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Azure RTOS ThreadX <span
class="icon-st-update"></span></td>
<td style="text-align: left;">threadx-6.2.0.221223</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/threadx/releases/tag/v6.2.0_rel">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Azure RTOS FileX <span
class="icon-st-update"></span></td>
<td style="text-align: left;">filex-6.2.0.221223</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/filex/releases/tag/v6.2.0_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Azure RTOS LeveLX <span
class="icon-st-update"></span></td>
<td style="text-align: left;">levelx-6.2.0.221223</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/levelx/releases/tag/v6.2.0_rel">release
notes</a></td>
</tr>
</tbody>
</table>
<h1 id="development-toolchains-and-compilers-1">Development Toolchains
and Compilers</h1>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.50.9 + ST-LINK,
patch available here:
<ul>
<li><a
href="Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32C01x-03x_V1.0.zip">Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32C01x-03x_V1.0.zip</a></li>
<li>This patch supports <strong>STM32C031 and STM32C011</strong>
devices</li>
</ul></li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.36 +
ST-LINK, patch available here:
<ul>
<li><a
href="Utilities\PC_Software\IDEs_Patches\MDK-ARM\Keil.STM32C0xx_DFP.1.0.0.zip">Utilities\PC_Software\IDEs_Patches\MDK-ARM\Keil.STM32C0xx_DFP.1.0.0.zip</a></li>
<li>This patch supports <strong>STM32C031/011</strong> devices</li>
</ul></li>
<li>STM32CubeIDE v1.12.0 using GCC10</li>
</ul>
<h2 id="supported-devices-and-boards-1">Supported Devices and
boards</h2>
<ul>
<li>STM32C031 and STM32C011 devices Rev A</li>
<li>NUCLEO-C031C6 board rev.B</li>
<li>STM32C0116-DK board rev.B</li>
<li>STM32C0316-DK board rev.B</li>
</ul>
<h2 id="dependencies-1">Dependencies</h2>
<ul>
<li>STM32CubeMX V6.9.0
<ul>
<li>Projects (Examples and Applications) are generated using STM32CubeMX
version V6.9.0.</li>
</ul></li>
</ul>
<h2 id="known-limitations-1">Known Limitations</h2>
<ul>
<li>Not applicable</li>
</ul>
<h2 id="backward-compatibility-1">Backward Compatibility</h2>
<ul>
<li>HAL_SYSCFG_GetPinBinding() and LL_SYSCFG_GetConfigPinMux() are
updated.</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section2" aria-hidden="true">
<label for="collapse-section2" checked aria-hidden="true"><strong>V1.0.1
/ 12-January-2023</strong></label>
<div>
<h2 id="main-changes-2">Main Changes</h2>
<ul>
<li><p>Patch Release of <span
style="font-weight: bold;">STM32CubeC0</span> Firmware Package</p>
<ul>
<li><p>Update ADC HAL driver with proper internal sensor calibration
implementation</p></li>
<li><p>“NUCLEO-C031C6/Examples/ADC/ADC_MultiChannelSingleConversion”
example is updated to use
“__LL_ADC_CALC_TEMPERATURE_TYP_PARAMS()”</p></li>
<li><p>Update RCC LL driver by adding missing AHB Prescaler.</p></li>
</ul></li>
</ul>
<h2 id="contents-2">Contents</h2>
<h3 id="projects-2"><strong>Projects</strong></h3>
<p>The <strong>STM32CubeC0</strong> Firmware package comes with template
running on STMicroelectronics boards, organized by board and provided
with preconfigured projects for the main supported toolchains. The
exhaustive list of projects is provided in this table <a
href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a></p>
<p>This release contains almost HAL drivers, LL drivers, BSP drivers,
templates, projects and examples.</p>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release notes</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Projects <span
class="icon-st-update"></span></td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a
href="Projects/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h3 id="components-2"><strong>Components</strong></h3>
<p><small>The Project categories 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><strong>Drivers</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td style="text-align: left;">V5.6.0_cm0</td>
<td style="text-align: left;"><a
href="Drivers/CMSIS/docs/General/html/index.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32C0xx CMSIS</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Drivers/CMSIS/Device/ST/STM32C0xx/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32C0xx HAL/LL <span
class="icon-st-update"></span></td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a
href="Drivers/STM32C0xx_HAL_Driver/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32C0xx NUCLEO</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/STM32C0xx_Nucleo/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32C0316-DK</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/STM32C0316-DK/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32C0116-DK</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/STM32C0116-DK/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Components</td>
<td style="text-align: left;">V7.1.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/Components/Common/Release_Notes.html">release
notes</a></td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">OpenBootloader</td>
<td style="text-align: left;">V6.0.0</td>
<td style="text-align: left;"><a
href="Middlewares/ST/OpenBootloader/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Azure RTOS ThreadX</td>
<td style="text-align: left;">threadx-6.1.9.220128</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/threadx/releases/tag/v6.1.9_rel">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Azure RTOS FileX</td>
<td style="text-align: left;">filex-6.1.8.220128</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/filex/releases/tag/r6.1.8_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Azure RTOS LeveLX</td>
<td style="text-align: left;">levelx-6.1.9.220128</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/levelx/releases/tag/v6.1.9_rel">release
notes</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section1" aria-hidden="true">
<label for="collapse-section1" checked aria-hidden="true"><strong>V1.0.0
/ 09-February-2022</strong></label>
<div>
<h2 id="main-changes-3">Main Changes</h2>
<ul>
<li>First Official Release of <span
style="font-weight: bold;">STM32CubeC0</span> Firmware Package</li>
</ul>
<h2 id="contents-3">Contents</h2>
<h3 id="projects-3"><strong>Projects</strong></h3>
<p>The <strong>STM32CubeC0</strong> Firmware package comes with template
running on STMicroelectronics boards, organized by board and provided
with preconfigured projects for the main supported toolchains. The
exhaustive list of projects is provided in this table <a
href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a></p>
<p>This release contains almost HAL drivers, LL drivers, BSP drivers,
templates, projects and examples.</p>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release notes</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Projects</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Projects/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h3 id="components-3"><strong>Components</strong></h3>
<table>
<caption><strong>Drivers</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td style="text-align: left;">V5.6.0_cm0</td>
<td style="text-align: left;"><a
href="Drivers/CMSIS/docs/General/html/index.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32C0xx CMSIS</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Drivers/CMSIS/Device/ST/STM32C0xx/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32C0xx HAL/LL</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Drivers/STM32C0xx_HAL_Driver/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32C0xx NUCLEO</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/STM32C0xx_Nucleo/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32C0316-DK</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/STM32C0316-DK/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32C0116-DK</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/STM32C0116-DK/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Components</td>
<td style="text-align: left;">V7.1.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/Components/Common/Release_Notes.html">release
notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption><strong>Middlewares</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">OpenBootloader</td>
<td style="text-align: left;">V6.0.0</td>
<td style="text-align: left;"><a
href="Middlewares/ST/OpenBootloader/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Azure RTOS ThreadX</td>
<td style="text-align: left;">threadx-6.1.9.220128</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/threadx/releases/tag/v6.1.9_rel">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Azure RTOS FileX</td>
<td style="text-align: left;">filex-6.1.8.220128</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/filex/releases/tag/r6.1.8_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Azure RTOS LeveLX</td>
<td style="text-align: left;">levelx-6.1.9.220128</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/levelx/releases/tag/v6.1.9_rel">release
notes</a></td>
</tr>
</tbody>
</table>
<h2 id="development-toolchains-and-compilers-2">Development Toolchains
and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.50.9 + ST-LINK,
patch available here:
<ul>
<li><a
href="Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32C01x-03x_V1.0.zip">Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32C01x-03x_V1.0.zip</a></li>
<li>This patch supports <strong>STM32C031 and STM32C011</strong>
devices</li>
</ul></li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.36 +
ST-LINK, patch available here:
<ul>
<li><a
href="Utilities\PC_Software\IDEs_Patches\MDK-ARM\Keil.STM32C0xx_DFP.1.0.0.zip">Utilities\PC_Software\IDEs_Patches\MDK-ARM\Keil.STM32C0xx_DFP.1.0.0.zip</a></li>
<li>This patch supports <strong>STM32C031/011</strong> devices</li>
</ul></li>
<li>STM32CubeIDE v1.9.0 using GCC10</li>
</ul>
<h2 id="supported-devices-and-boards-2">Supported Devices and
boards</h2>
<ul>
<li>STM32C031 and STM32C011 devices Rev A</li>
<li>NUCLEO-C031C6 board rev.B</li>
<li>STM32C0116-DK board rev.B</li>
<li>STM32C0316-DK board rev.B</li>
</ul>
<h2 id="dependencies-2">Dependencies</h2>
<ul>
<li>STM32CubeMX V6.5.0
<ul>
<li>Projects (Examples and Applications) are generated using STM32CubeMX
version V6.5.0.</li>
</ul></li>
</ul>
<h2 id="known-limitations-2">Known Limitations</h2>
<ul>
<li>None</li>
</ul>
<h2 id="backward-compatibility-2">Backward Compatibility</h2>
<ul>
<li>Not applicable</li>
</ul>
</div>
</div>
</section>
</div>
<footer class="sticky">
<p>For complete documentation on STM32 Microcontrollers </mark> , visit:
<span style="font-color: blue;"><a
href="http://www.st.com/stm32">www.st.com/stm32</a></span></p>
This release note uses up to date web standards and, for this reason,
should not be opened with Internet Explorer but preferably with popular
browsers such as Google Chrome, Mozilla Firefox, Opera or Microsoft
Edge.
</footer>
</body>
</html>