@@ -52,6 +52,58 @@ pay attention to. Medium impact changes are also worth looking at.
52
52
53
53
<!-- releases-->
54
54
55
+ ## 2025-04-01: 2025q1 release
56
+
57
+ This release covers everything from 2025-01-01 and has been tested with avr-gcc
58
+ v13.2.0 from upstream and arm-none-eabi-gcc v13.2.1 from xpack.
59
+
60
+ Features:
61
+
62
+ - Add missing HSI48-related functionality for some STM32.
63
+ - Enable Cortex-M7 I/D-Cache via lbuild.
64
+ - Speed up startup copying and zeroing of data sections.
65
+
66
+ Fixes:
67
+
68
+ - Fix wrong CMake program target ` *.elf ` path.
69
+
70
+ Known bugs:
71
+
72
+ - STM32F723 is missing support to use built-in USB HS PHY. See [ #1171 ] [ ] .
73
+ - OpenOCD cannot enable SWO on STM32H7 targets. See [ #1079 ] [ ] .
74
+ - ` arm-none-eabi-gdb ` TUI and GDBGUI interfaces are not supported on Windows.
75
+ See [ #591 ] [ ] .
76
+ - Generating modm on Windows creates paths with ` \ ` that are not compatible with
77
+ Unix. See [ #310 ] [ ] .
78
+ - ` lbuild build ` and ` lbuild clean ` do not remove all previously generated files
79
+ when the configuration changes. See [ #285 ] [ ] .
80
+
81
+ Many thanks to all our contributors.
82
+ A special shoutout to first timers 🎉:
83
+
84
+ - Joshua ([ @JeyRunner ] [ ] ) 🎉
85
+ - Niklas Hauser ([ @salkinium ] [ ] )
86
+ - dokee ([ @dokee39 ] [ ] ) 🎉
87
+
88
+ PR [ #1260 ] [ ] -> [ 2025q1] [ ] .
89
+
90
+ <details >
91
+ <summary >Detailed changelog</summary >
92
+
93
+ #### 2025-01-29: Enable Cortex-M7 I/D-Cache via lbuild
94
+
95
+ PR [ #1255 ] [ ] -> [ 13e35ea] [ ] .
96
+ Tested in hardware by [ @salkinium ] [ ] .
97
+
98
+ #### 2025-01-05: STM32: Add missing HSI48-related functionality
99
+
100
+ Added for STM32G0/G4/L0/H7/H5/U0
101
+
102
+ PR [ #1252 ] [ ] -> [ e39bca4] [ ] .
103
+
104
+ </details >
105
+
106
+
55
107
## 2025-01-01: 2024q4 release
56
108
57
109
This release covers everything from 2024-10-01 and has been tested with avr-gcc
@@ -3404,6 +3456,7 @@ Please note that contributions from xpcc were continuously ported to modm.
3404
3456
[2024q2]: https://github.com/modm-io/modm/releases/tag/2024q2
3405
3457
[2024q3]: https://github.com/modm-io/modm/releases/tag/2024q3
3406
3458
[2024q4]: https://github.com/modm-io/modm/releases/tag/2024q4
3459
+ [2025q1]: https://github.com/modm-io/modm/releases/tag/2025q1
3407
3460
3408
3461
[@19joho66]: https://github.com/19joho66
3409
3462
[@ASMfreaK]: https://github.com/ASMfreaK
@@ -3412,6 +3465,7 @@ Please note that contributions from xpcc were continuously ported to modm.
3412
3465
[@FelixPetriconi]: https://github.com/FelixPetriconi
3413
3466
[@JKazem]: https://github.com/JKazem
3414
3467
[@Javask]: https://github.com/Javask
3468
+ [@JeyRunner]: https://github.com/JeyRunner
3415
3469
[@MatthewMArnold]: https://github.com/MatthewMArnold
3416
3470
[@OperativeF]: https://github.com/OperativeF
3417
3471
[@PDR5]: https://github.com/PDR5
@@ -3435,6 +3489,7 @@ Please note that contributions from xpcc were continuously ported to modm.
3435
3489
[@delphi]: https://github.com/delphi
3436
3490
[@dergraaf]: https://github.com/dergraaf
3437
3491
[@dhebbeker]: https://github.com/dhebbeker
3492
+ [@dokee39]: https://github.com/dokee39
3438
3493
[@el-han]: https://github.com/el-han
3439
3494
[@frnktank]: https://github.com/frnktank
3440
3495
[@gueldenstone]: https://github.com/gueldenstone
@@ -3635,6 +3690,9 @@ Please note that contributions from xpcc were continuously ported to modm.
3635
3690
[#1242]: https://github.com/modm-io/modm/pull/1242
3636
3691
[#1248]: https://github.com/modm-io/modm/pull/1248
3637
3692
[#1249]: https://github.com/modm-io/modm/pull/1249
3693
+ [#1252]: https://github.com/modm-io/modm/pull/1252
3694
+ [#1255]: https://github.com/modm-io/modm/pull/1255
3695
+ [#1260]: https://github.com/modm-io/modm/pull/1260
3638
3696
[#132]: https://github.com/modm-io/modm/pull/132
3639
3697
[#136]: https://github.com/modm-io/modm/pull/136
3640
3698
[#153]: https://github.com/modm-io/modm/pull/153
@@ -3865,6 +3923,7 @@ Please note that contributions from xpcc were continuously ported to modm.
3865
3923
[12bb41b]: https://github.com/modm-io/modm/commit/12bb41b
3866
3924
[1319de9]: https://github.com/modm-io/modm/commit/1319de9
3867
3925
[1375ff1]: https://github.com/modm-io/modm/commit/1375ff1
3926
+ [13e35ea]: https://github.com/modm-io/modm/commit/13e35ea
3868
3927
[13ea578]: https://github.com/modm-io/modm/commit/13ea578
3869
3928
[141aa71]: https://github.com/modm-io/modm/commit/141aa71
3870
3929
[165adf0]: https://github.com/modm-io/modm/commit/165adf0
@@ -4072,6 +4131,7 @@ Please note that contributions from xpcc were continuously ported to modm.
4072
4131
[e0d1327]: https://github.com/modm-io/modm/commit/e0d1327
4073
4132
[e1d8a17]: https://github.com/modm-io/modm/commit/e1d8a17
4074
4133
[e233708]: https://github.com/modm-io/modm/commit/e233708
4134
+ [e39bca4]: https://github.com/modm-io/modm/commit/e39bca4
4075
4135
[e3ba913]: https://github.com/modm-io/modm/commit/e3ba913
4076
4136
[e3c0321]: https://github.com/modm-io/modm/commit/e3c0321
4077
4137
[e46e7df]: https://github.com/modm-io/modm/commit/e46e7df
0 commit comments