forked from RIOT-OS/RIOT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-notes.txt
More file actions
20536 lines (17982 loc) · 862 KB
/
release-notes.txt
File metadata and controls
20536 lines (17982 loc) · 862 KB
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
RIOT-2025.10 "OCT31 == DEC25" - Release Notes
============================
RIOT is a multi-threading operating system which enables soft real-time
capabilities and comes with support for a range of devices that are typically
found in the Internet of Things: 8-bit and 16-bit microcontrollers as well as
light-weight 32-bit processors.
RIOT is based on the following design principles: energy-efficiency, soft
real-time capabilities, small memory footprint, modularity, and uniform API
access, independent of the underlying hardware (with partial POSIX compliance).
RIOT is developed by an international open-source community which is
independent of specific vendors (e.g. similarly to the Linux community) and is
licensed with a non-viral copyleft license (LGPLv2.1), which allows indirect
business models around the free open-source software platform provided by RIOT.
About this release
==================
The 2025.10 release includes:
- The new XIPFS filesystem module allows executing code from memory-mapped flash on
supported platforms.
- Support for the ESP32-C6 RISC-V WiFi MCU was added.
- Nearly all of the guides were migrated, adapted or rewritten to the [new guide site](https://guide.riot-os.org/).
- You can now also read all RIOT release notes [directly on the guide site, outside of Github](https://guide.riot-os.org/changelog/).
- NanoCoAP server will no longer copy requests to an internal buffer for processing, instead
it operates directly on the network buffer, eliminating the case of 'too large' requests.
- The new `hosts` module allows to statically assign hostnames to IP addresses, similar to
`/etc/hosts` on UNIX.
- The `u8g2` package now implements the `disp_dev`, meaning e.g. LVGL can now be used on all
displays supported by `u8g2`.
- Support for more members of the STM32C0 family was added.
- Initial support for the RP2350.
## List of notable changes here ##
180 pull requests, composed of 411 commits, have been merged since the
last release, and 16 issues have been solved. 31 people contributed with
code in 121 days. 3372 files have been touched with 51234 (+) insertions and
205847 deletions (-).
Notations used below
====================
+ means new feature/item
* means modified feature/item
- means removed feature/item
New features and changes
========================
Core
----
+ core/log: add optional log unit prefix (#21606)
System Libraries
----------------
+ makefiles/suit: add `SUIT_GEN_PUBKEY` variable to inhibit public key
generation (#21666)
+ pkg/lvgl: support monochrome displays via u8g2 (#21726)
+ pkg/u8g2: implement `disp_dev` (#21725)
+ pkg/xipfs: add XIPFS as vfs module (#21569)
+ sys/psa_crypto: Extend mac API (#21621)
+ sys/shell/cmds: add MTD command from `mtd_raw` test (#21489)
+ sys/suit: add suit_get_public_key() (#21560)
+ tests/unittests: add test for bit.h (#21749)
* benchmark_udp: improve rtt record buffering (#21712)
* sys/can: improve SJW calculation (#21756)
Networking
----------
+ drivers/sx126x add optional CONFIG_SX126X_DEFAULT_SYNC_WORD (#21711)
+ drivers/sx126x: add support for Dio2 and Dio3 (#21684)
+ drivers/sx126x: bind PA config to output power (#21687)
+ nanocoap: add coap_iterate_uri_query() (#20197)
+ net/hosts: add module for static hostname definitions (#21397)
* drivers/sx126x: configure tx clamp for sx1262 (#21710)
* drivers/sx126x: image calibration after frequency change (#21713)
* gnrc/ipv6/nib: clean up `gnrc_ipv6_nib_get_next_hop_l2addr()` (#21454)
* gnrc/ipv6/nib: improve debug output, declutter code (#21256)
* gnrc/rpl/control_messages: refactor `gnrc_rpl_recv_DIO` (#21577)
* gnrc/rpl: switching between DODAGs (#21759)
* nanocoap_server: use zero-copy network buffer for parsing request (#21652)
* pkg: replace header guards with #pragma once (#21701)
Packages
--------
* dist/tools: Move `picosdk` to `pkg` folder, improve `picotool.sh`
script (#21629)
* pkg/flashdb: Bump to v2.1.1 (#21820)
* pkg/littlefs2: bump version to v2.11.2 (#21751)
* pkg/{c25519,driver_cryptocell_310}: use dlcache for fetching zip
archives, update `pkg/Makefile.http` example (#21813)
Boards
------
+ boards/nucleo-f303k8: add board pinout (#21802)
+ boards: add Arduino Nano ESP32 board (#21656)
+ boards: add STM32C0116-DK and STM32C0316-DK [new PR] (#21776)
+ boards: Bitcraze Crazyflie 2.1 main application board support (#21689)
+ cpu, boards: add new STM32C0 and NUCLEO-C071RB [new PR] (#21775)
+ CPU/Boards: Add Raspberry Pi Pico 2 (RP2350) support (#21545)
+ cpu/esp32: add ESP32-C6 support (#21616)
+ cpu/stm32/usbdev_fs: allow inverted disconnect GPIO (#21718)
+ feather-m0: add support for saul_bat_voltage (#21022)
* boards: move licenses from headers to SPDX format (part3) (#21627)
* boards: move licenses from headers to SPDX format (part4) (#21632)
* examples/networking/gnrc: remove gnrc prefix from folder names (#21826)
CPU
---
+ ieee802154/submac: add automatic ACK transmission when AUTO_ACK is
not supported by driver (#21533)
* build system: use thread-safe stdio (#21438)
* cpu/nrf52: Update nRF52* Vendor Header Files (#21739)
* cpu/nrf5x: Pull Vendor Header Files from External Repository (#21800)
* cpu/stm32/genkconfig: move script licence and templates to SPDX (#21768)
* cpu: move licenses from comments to SPDX format (part1) (#21704)
* cpu: move licenses from comments to SPDX format (part2) (#21715)
* cpu: move licenses from comments to SPDX format (part3) (#21732)
* cpu: move licenses from comments to SPDX format (part4) (#21747)
* cpu: move licenses from comments to SPDX format (part5) (#21758)
* makefile/tools/esptool: cleanup including version update to 5.0.0 (#21619)
Device Drivers
--------------
* drivers/ds18: move to ztimer (#21804)
Documentation
-------------
+ doc/guides: Add Section about Creating a Common Board Directory (#21764)
+ doc/guides: add STM32 Flashing Guide (#21767)
+ doc/guides: Add Timer Information to `Porting Boards` Guide (#21795)
+ doc/starlight: Add link to RIOT forum (#21723)
+ doc/starlight: add RIOT changelog (#21741)
+ doc/starlight: Update dependencies, add image zoom, fix wrong prints (#21742)
+ doc: deprecate Doxygen `Getting Started` and add CoAP guide (#21792)
* boards/nucleo*: Cleanup and Enhance the Documentation (#21337)
* boards/nucleo-l011k4: improve board doc (#21783)
* boards/nucleo-l031k6: improve board doc (#21790)
* boards: move licenses to SPDX format in doc.md files (#21651)
* boards: rename doc.txt -> doc.md for boards which name's starts from
e to p (#21641)
* boards: rename doc.txt -> doc.md for remaining boards (#21644)
* cpu: rename doc txt -> doc.md (#21680)
* dist/tools: improve the `esptools`, enhance documentation (#21625)
* doc/CONTRIBUTION.md: document mediation process (#20648)
* doc/guides/rust_tutorials: mention BUILD_IN_DOCKER more verbosely (#21735)
* doc/guides: cleanup section titles (#21728)
* doc/guides: disable npm funding message (#21799)
* doc/guides: Extend STM32 Flashing Guide with OpenOCD and WSL Remark (#21794)
* doc/guides: improve guides and many small fixes (#21730)
* doc/guides: remove toc from managing a release and fix using timers
guide (#21773)
* doc/guides: The Big Migration (#21708)
* doc/starlight: Adjust theming to RIOT branding (#21700)
* doc/starlight: rename guides title from Riot to RIOT (#21722)
* doc: fix outdated links in CONTRIBUTING.md (#21824)
* doc: Integrate Governance, Code of Conduct and C++ Tutorial into
Starlight (#21646)
* pkg/lwip: document debug defines (#21834)
Build System / Tooling
----------------------
+ dist/tools: add double `#pragma once` error message to headerguards
check (#21696)
+ dist/tools: add knob for docker pinning test (#21815)
+ dist/tools: add no-merge and colon check to commit-msg check (#21803)
* build system: Allow running tests in docker (#21752)
* dist/tools/ci: include rust, node and git commit in print-version (#21734)
* makefiles/tools/openocd: Do not require openocd.cfg for STM32 boards (#21717)
* makefiles: remove `DOWNLOAD_TO_STDOUT` (#21823)
Kconfig
-------
* drivers/sen5x: Remove Kconfig dependency handling (#21643)
Testing
-------
* starlight: build on PR & fix CI deploy error (#21789)
* tests/sys/libc_newlib: drop test (#21669)
* tests: replace header guards with #pragma once (#21702)
API Changes
-----------
* drivers/motor_driver: rework motor driver (#20429)
Uncategorized
-------------
+ CODEOWNERS: Add AnnsAnn to doc & rp2350 (#21765)
+ release-notes.txt: add 2025.07 release notes (#21628)
+ Starlight/Changelog: Add direct Github link support (#21809)
* .gitattributes: Treat SVG as binary (#21807)
* guides/c_tutorials/timers: Fix outdated intro (#21673)
* README.md: improve feature list (#21059)
* README.md: Unify formatting, modernize badges & update URLs (and move
release_cycle to starlight) (#21706)
* readme: modernize getting started section (#21654)
And 35 minor changes.
Deprecations
============
Removals (1)
------------
- pkg/qdsa: drop package (#21657)
Bug fixes (43)
==============
* doc/starlight: add route middleware to fix edit link (#21780)
* doc/starlight: Add temporary workaround to symlink issue (#21787)
* guides/installing: add psutil requirement for pyterm (#21660)
* [HACK] cpu/sam0_common: eth: delay init by 10ms for more stable
Ethernet (#21634)
* arch/riscv: fix incorrect ASFLAGS (#21672)
* boards/common/nucleo144: fix and complete Arduino configuration (#21665)
* boards/nrf52-based, dist/tools/jlink: fix and enhance
`JLINK_{PRE,POST}_FLASH` command (#21740)
* build system: Fix regression from #21752 (#21793)
* ci/docs: Build/Deploy on changes to outside text (#21810)
* ci/docs: use pattern for CODING_CONVENTIONS files (#21814)
* cpu/esp32/esp-idf-rmt: fix compilation together with Nimble and WiFi (#21714)
* cpu/nrf52/radio/nrf802154: fix radio after soft ACK (#21786)
* cpu/nrf5x_common: fix vendor header regression from #21800 (#21812)
* cpu/sam0_eth: disable interrupts during init (#21836)
* cpu/samd5: improve clock initialisation XOSC32 and FDPLL (#21631)
* doc: fix some links and repair starlight (#21769)
* drivers/netdev_ieee802154_submac: fix bytes_tx (#21796)
* drivers/sx126x: fail on init if no device is connected (#21688)
* gnrc/netif: don't re-append tx_sync snip if tx is done (#21709)
* gnrc_netif: fix neighbor statistics with netdev_new_api (#21002)
* kinetis/bme: temp disable `BITBAND_FUNCTIONS_PROVIDED` (#21750)
* makefiles/boot/riotboot: pass BUILD_DIR to recursive Make call (#21676)
* makefiles/info.inc.mk: improvements to json build output (#21645)
* nimble/netif: use `netdev_legacy_api` module (#21620)
* nrf52/cfg_rtt_default: fix rtt min offset (#21743)
* pkg/driver_cryptocell_310: use community-hosted mirror of nRF5-SDK (#21635)
* pkg/esp32_sdk: unshallow repository before getting tag/branch name (#21624)
* pkg/lwip/netdev: fix return types in send() (#21833)
* pkg/mpaland-printf: format points like glibc (#21678)
* pkg/mpaland-printf: wrap putc() and fputc() (#21828)
* pkg/mplaland-printf: Use buffered output (#21805)
* tests: accept %p printing in uppercase and without leading 0x (#21677)
* tests: fix compilation problems with NDEBUG (#21649)
* unittests/unicoap: statically allocate option buffers (#21610)
Known issues
============
Network related issues (56)
---------------------------
* 6lo: RIOT does not receive packets from Linux when short_addr is set (#11033)
* Address registration handling inappropriate (#15867)
* app/netdev: application stops working after receiving frames with
assertion or completely without error (#8271)
* at86rf2xx: Dead lock when sending while receiving (#8242)
* cpu/esp8266: Tracking open problems of esp_wifi netdev driver (#10861)
* DHCPv6 client: Handling of NotOnLink incorrect (#20349)
* dist/tools/sliptty/start_network.sh: IPv6 connectivity is broken on
PC (#14689)
* driver/mrf24j40: blocks shell input with auto_init_gnrc_netif (#12943)
* drivers/at86rf215: Incorrect channel number set for subGHz (#15906)
* DTLS examples cannot send message to localhost (#14315)
* Emcute cannot create a double-byte name (#12642)
* ethernet: Missing multicast addr assignment (#13493)
* ethos: fails to respond to first message. (#11988)
* ethos: Unable to handle fragmented IPv6 packets from Linux kernel (#12264)
* example/gnrc_border_router cannot answer after some time (#19578)
* examples/cord_ep: Dead lock when (re-)registering in callback
function (#12884)
* examples/gnrc_border_router: esp_wifi crashes on disconnect (#14679)
* Forwarding a packet back to its link layer source should not be
allowed (#5051)
* gcoap example request on tap I/F fails with NIB issue (#8199)
* gcoap: Suspected crosstalk between requests (possible NULL call) (#14390)
* Global IPv6 addresses remain deprecated after receiving RA (#19846)
* gnrc ipv6: multicast packets are not dispatched to the upper layers (#5230)
* gnrc/ipv6: "invalid payload length" - corrupted IPv6 header when
ENABLE_DEBUG=1 in mbox.c (#20390)
* gnrc_border_router stops routing after a while (#16398)
* gnrc_border_router: Kconfig and C disagree about number of addresses
per interface (#19947)
* gnrc_icmpv6_echo: flood-pinging another node leads to leaks in own
packet buffer (#12565)
* gnrc_ipv6: Multicast is not forwarded if routing node listens to the
address (#4527)
* gnrc_netif_pktq leaks memory (#17924)
* gnrc_rpl: missing bounds checks in _parse_options (#16085)
* gnrc_rpl: nib route not updated when topology / DODAG changes (#17327)
* gnrc_rpl: old routes are not deleted (#19423)
* gnrc_rpl: takes unusually long time to start routing packets (#19147)
* gnrc_sock_udp: Possible Race condition on copy in application buffer (#10389)
* gnrc_tcp: gnrc_tcp_recv() never generates -ECONNABORTED (#17896)
* gomach: Resetting netif with cli doesn't return (#10370)
* ieee802154_submac: IPv6 fragmentation broken (#16998)
* LoRaWan node ISR stack overflowed (#14962)
* LWIP TCP Communication Error (#19676)
* lwip, submac: deadlock on user transmission (#21843)
* lwip_sock_tcp / sock_async: received events before calling
sock_accept() are lost due to race condition. (#16303)
* Missing drop implementations in netdev_driver_t::recv (#10410)
* Neighbor Discovery not working after router reboot when using SLAAC (#11038)
* netdev_ieee802154: Mismatch between radio ll address and in memory
address (#10380)
* nrf52: Not able to add global or ULA address to interface (#13280)
* nrfmin: communication not possible after multicast ping with no
interval (#11405)
* ping6 is failing when testing with cc2538dk (#13997)
* pkg/lwip: race condition (data loss) in async connection setup (#21874)
* pkg/tinydtls: auxiliary data API does not work for async sockets (#16054)
* Removing a TNT global address then adding a new one does not work (#20318)
* samr30 xpro doesn't seem to use its radio ok (#12761)
* scan-build errors found during 2019.07 testing (#11852)
* stale border router does not get replaced (#12210)
* test/lwip: enabling both, IPv4 and IPv6, results in unexpected
behavior (#18097)
* tests/lwip: does not compile for IPv4 on 6LoWPAN-based boards. (#17162)
* two nodes livelock sending neighbor solicitations back and forth
between each other (#16670)
* xbee: setting PAN ID sometimes fails (#10338)
Timer related issues (5)
------------------------
* misc issues with tests/trickle (#9052)
* periph/timer: `timer_set()` underflow safety check (tracking issue) (#13072)
* periph_timer: systematic proportional error in timer_set (#10545)
* saml21 system time vs rtc (#10523)
* sys/newlib: gettimeofday() returns time since boot, not current wall
time. (#9187)
Drivers related issues (13)
---------------------------
* at86rf2xx: Simultaneous use of different transceiver types is not
supported (#4876)
* cpu/msp430: GPIO driver doesn't work properly (#9419)
* drivers/at86rf215: not returning RX/IDLE after a while of operation
with RPL/UDP (#21685)
* drivers/mpu9x50: regression (#21663)
* examples/dtls-wolfssl not working on pba-d-01-kw2x (#13527)
* fail to send data to can bus (#12371)
* mdt_erase success, but vfs_format resets board (esp32-heltec-
lora32-v2) (#14506)
* periph/spi: Switching between CPOL=0,1 problems on Kinetis with
software CS (#6567)
* periph: GPIO drivers are not thread safe (#4866)
* PWM: Single-phase initialization creates flicker (#15121)
* STM32: SPI clock not returning to idle state and generating
additional clock cycles (#11104)
* TCP client cannot send read only data (#16541)
* tests/periph_flashpage: unexpected behavior on nucleo-l4r5zi (#17599)
Native related issues (5)
-------------------------
* examples/micropython: floating point exception while testing on
native (#15870)
* native not float safe (#495)
* native: tlsf: early malloc will lead to a crash (#5796)
* VFS_READ show correct data on every SECOND request only (#21470)
* ztimer doesn't wake up on native if the pm_layered module is used (#21083)
Other platforms related issues (16)
-----------------------------------
* Failing tests on FE310 (Hifive1b) (#13086)
* [TRACKING] Fixes for automatic tests of ESP32 boards. (#12763)
* boards/hifive1: flashing issue (#13104)
* cpu/sam0: flashpage write / read cycle produces different results
depending on code layout in flash (#14929)
* esp32*: esp_now: failed assertion in xSemaphoreTakeRecursive() when
switching channel (#21919)
* esp32-wroom-32: tests/netstats_l2 failing sometimes (#14237)
* esp32s2: `xQueueGenericCreate()` fails assertion due to failed
`malloc()` after ~2h (#21923)
* esp8266 crashes on WiFi disconnect (#21558)
* examples/gnrc_border_router: esp_wifi_init failed with return value
257 on ESP32-C3 with nimble_rpble (#19319)
* gcoap/esp8266: Stack overflow with gcoap example (#13606)
* Interrupt callback function is instantly called on samd51 after
setting it from within interrupt callback function (#19861)
* MPU doesn't work on cortex-m0+ (#14822)
* newlib-nano: Printf formatting does not work properly for some
numeric types (#1891)
* periph_timer: Test coverage & broken on STM32F767ZI (#15072)
* riscv: ISR stack is too small for ENABLE_DEBUG in core files (#16395)
* stm32f7: Large performance difference between stm32f746 and stm32f767 (#14728)
Build system related issues (7)
-------------------------------
* Build dependencies - processing order issues (#9913)
* dist/tools/cppcheck/cppchck.sh: errors when running with Cppcheck
1.89 (#12771)
* EXTERNAL_MODULE_DIRS silently ignores non-existent entries (#17696)
* Kconfig: Unable to set Kconfig boolean variables with default true to
false (#21785)
* make: ccache leads to differing binaries (#14264)
* make: use of immediate value of variables before they have their
final value (#8913)
* makefiles: `make term` does not print `stderr` output of child
process. (#21808)
Other issues (71)
-----------------
* [tracking] Bugs found by the peripheral selftest (#20071)
* [Tracking] Failures found with testing on real hardware for release (#21882)
* [Tracking] Fix failures of test-on-iotlab (#20791)
* [TRACKING] sys/shell refactoring. (#12105)
* [tracking] unnecessary use of floating point arithmetic (#19614)
* _NVIC_SystemReset stuck in infinite loop when calling pm_reboot
through shell after flashing with J-Link (#13044)
* `make term` no longer works with JLinkExe v6.94 (#16022)
* at86rf215 stops receiving until sending a packet (#19653)
* b-l072z-lrwan1: tests/ztimer_overhead: test failure (#19224)
* benchmark_udp: hammering with low interval causes issues (#16808)
* boards/esp32-wroom-32: tests/mtd_raw flakey (#16130)
* Builds fail when different execstack options are around in objects (#18522)
* Can't build relic with benchmarks or tests (#12897)
* CC2538-CC2592EM has a very weak transmit power (#17543)
* cpp: Exception handling undefined (#17523)
* cpu/stm32: some tests are failing on CM33 (l5, u5) (#17439)
* doc/boards: information concerning access to RIOT shell (#17453)
* doxygen: CSS hack to hide doc breaks on older browsers (#21312)
* edbg: long lines flooded over serial become garbled (#14548)
* examples / tests: LoRa tests fail on platforms that don't support
LoRa (#14520)
* examples/gcoap: client broken (#19379)
* flashing issue on frdm-k64f (#15903)
* frdm-k22f failing tests/periph_flashpage (#17057)
* frdm-k22f fails tests/periph_timer (#19543)
* Freeze into semtech_loramac_send call (pkg/semtech-loramac) (#18790)
* gcoap: gcoap_req_send and related should return negative for errors (#19393)
* gnrc_ipv6_nib: Neighbor Solicitation ping-pong (#18164)
* I2C Crashes Kernel on Raspberry Pi Pico (#21187)
* ieee802154_security: Nonce is reused after reboot (#16844)
* kconfiglib.py choice override of menuconfig bug (#19069)
* LVGL tests produce unaligned code, fail to build (#20110)
* lwip: drivers/at86rf2xx/at86rf2xx_netdev.c invalid state during TCP
disconnect (#17209)
* lwip: invalid state transition on ieee802154_submac users (#17208)
* Making the newlib thread-safe (#4488)
* mcuboot: flashes but no output (#17524)
* mpaland-printf leads to broken output with GCC 9.3.1 (#21842)
* MTD is confusing (#17663)
* Order of auto_init functions (#13541)
* periph_rtt: rtt_set_alarm() blocks IRQ for 80 plus usec on STM32 (#19520)
* pkg/tinydtls: Multiple issues (#16108)
* Potential race condition in compile_and_test_for_board.py (#12621)
* RIOT is saw-toothing in energy consumption (even when idling) (#5009)
* riotboot: ECC faults (eg. in STM32L5 or STM32WB) not handled
gracefully (#17874)
* rpl, rpble: handle closed connection to parent(s) (#21574)
* rust-gcoap example is incompatible with littlefs2 (#17817)
* Samr30/gpio: Erasing then write mux can generate spurious IRQ (#19993)
* samr34-xpro: some tests failing (#19223)
* sock_dtls: unable to send big messages (#17996)
* spurious IRQs in `periph_timer` (#18976)
* stdio UART input truncated (#21564)
* stdio_ethos: infinite shell loop (#17972)
* stdio_tinyusb_cdc_acm hangs with picolibc (#19277)
* STM32 Nucleo boards improperly clocked (#19778)
* STM32F4-discovery + mrf24j40 not working (#19711)
* sys/riotboot: documentation issues (#11243)
* sys/usb/usbus/cdc/ecm: interface thread blocked when connected host
interface is down (#21098)
* tests/lwip target board for python test is hardcoded to native (#6533)
* tests/periph_flashpage: failing on stm32l475ve (#17280)
* tests/pkg/relic is failing on samr21-xpro when built using llvm (#19903)
* tests/pkg_libhydrogen: test fails on master for the samr21-xpro with
LLVM (#15066)
* tests/pkg_libschc: Failing test_reassemble_success_ack_always (#19445)
* tests/test_tools: test fails while testing on samr21-xpro/iotlab-m3 (#15888)
* tests: broken with stdio_rtt if auto_init is disabled (#13120)
* tests: some tests don't work with `newlib` lock functions. (#12732)
* tracking: failing tests with stdio_cdc_acm (#21231)
* Types in `byteorder.h` need a cleanup (#14737)
* USB identifiers with funny characters create mojibake (#17776)
* usbus/msc: wrong error handling and behavior after usb reset (#19478)
* Use of multiple CAN bus on compatible boards (#14801)
* ztimer is incompatible with real-time requirements (#18883)
There are 173 known issues in this release
Fixed Issues since the last release (2025.07)
=============================================
- Broken IEEE820.15.4 Networking on nrf52 Board (#21782)
- openocd: flashing the STM32C0 and other "new" boards (#21781)
- static tests: Commit Check does not check for missing Colon (#21772)
- doc/guides: Note Blocks are not rendered (#21766)
- CCMRAM for stm32 misprint (#21698)
- [esp32s3] drivers/ws281x : Cannot have the ws281x neopixel driver
module and the nimble module in the same project (#21690)
- adafruit-feather-nrf52840-sense: potential regression (#21667)
- doc/doxygen: Broken LaTeX Formulas (#21490)
- tests/pkg/lvgl: compilation error for `BOARD=samr21-xpro` (#21446)
- Standard output is truncated and sent to the shell input on Arduino
Nano 33 BLE for the default example (#20544)
- stdio_cdc_acm causing corruption of first shell input (#20305)
- pkg/tinydtls: DTLS handshake does not work (#19595)
- 2023.04 release bug tracking (#19469)
- I2C not working under RIOT with U8G2 pkg (#16381)
- CC2538DK board docs: broken links (#12889)
- stm32_common/periph/rtc: current implementation broken/poor accuracy (#8746)
16 fixed issues since last release (2025.07)
Acknowledgements
================
We would like to thank all companies that provided us with hardware for porting
and testing RIOT. Further thanks go to companies and institutions that
directly sponsored development time. And finally, big thanks to all of you
contributing in so many different ways to make RIOT worthwhile!
More information
================
http://www.riot-os.org
Discussions
===========
* Join the RIOT Matrix room at: #riot-os:matrix.org
* Join the RIOT Forum at: forum.riot-os.org
* Follow us on Mastodon: floss.social/@RIOT_OS
License
=======
* The code developed by the RIOT community is licensed under the GNU Lesser
General Public License (LGPL) version 2.1 as published by the Free Software
Foundation.
* Some external sources and packages are published under a separate license.
All code files contain licensing information.
RIOT-2025.07 "FieldGuide" - Release Notes
============================
RIOT is a multi-threading operating system which enables soft real-time
capabilities and comes with support for a range of devices that are typically
found in the Internet of Things: 8-bit and 16-bit microcontrollers as well as
light-weight 32-bit processors.
RIOT is based on the following design principles: energy-efficiency, soft
real-time capabilities, small memory footprint, modularity, and uniform API
access, independent of the underlying hardware (with partial POSIX compliance).
RIOT is developed by an international open-source community which is
independent of specific vendors (e.g. similarly to the Linux community) and is
licensed with a non-viral copyleft license (LGPLv2.1), which allows indirect
business models around the free open-source software platform provided by RIOT.
About this release
==================
The 2025.07 release puts documentation front and center. With our new and
shiny guide pages (#21404, #21436), it is easier than ever to pick up RIOT
and start hacking! The new guides are available on https://guide.riot-os.org/
Two new checksum calculations have been added to RIOT: CRC16/IBM-SDLC (#21552)
and reflected CRC8 with LSB first (#21543). The first one is needed for the
new Slipmux driver (#21418) that is also part of this release. The latter in
preparation for an upcoming 1-Wire driver (#19848).
This release includes the first part of the new Unified and Modular CoAP stack
(unicoap #21390), providing initial parser and message APIs.
One new MCU is available for RIOT: The ESP32-H2 (#21522), including support
for it's IEEE 802.15.4 capabilities (#21590).
RIOT continues the transition to `#pragma once` header guards and to the SPDX
license format (#21497, #21504, #21501, #21496, #21430, #21591, #21517).
132 pull requests, composed of 443 commits, have been merged since the
last release, and 3 issues have been solved. 29 people contributed with
code in 90 days. 3833 files have been touched with 77135 (+) insertions and
49624 deletions (-).
Notations used below
====================
+ means new feature/item
* means modified feature/item
- means removed feature/item
New features and changes
========================
Core
----
+ core/thread_flags: add thread flags group (#21254)
* tree-wide: fix compilation with GCC 15.1 and picolibc 1.8.10 (#21443)
System Libraries
----------------
+ checksum: Add crc16-fcs / IBM-SDLC (#21552)
+ dist/tools/riotboot_gen_hdr: don't be pedantic, add
riotboot_slot_get_current_hdr() (#21509)
+ sys/atomic_utils: add bit set/clear helpers for unsigned int (#21440)
+ sys/atomic_utils: add helpers for unsigned int (#21429)
+ sys/bcd: add `bcd_buf_to_u32()` and `bcd_buf_from_str()` (#21428)
+ sys/checksum: Add LSB-first (reflected) CRC8 Function (#21543)
+ sys/stdio: add printf_long_long (#21445)
+ sys/psa_crypto: Adding aead aes ccm (#21455)
+ sys/psa_crypto: Adding ecc p256r1 pub key derivation (#21461)
+ sys/ztimer: add support for timers running at a 500kHz frequency (#21553)
* sys/arduino: define LED_BUILTIN as frequently used by Arduino
sketches (#21485)
* sys/event/deferred_callback: disable timer before modifying event (#21539)
* sys/event/thread: optimize stack usage (#21556)
* sys/event: make debug output of `event_loop_debug` more useful (#21456)
* sys/mineplex: Enhance Documentation (#21536)
* sys/psa_crypto: Rework Headers (#21512)
* sys/shell/cmd: typo in ifconfig helptext, \'transition\' fixed as
\'transmission\' (#21474)
* sys/shell: expose readline() (#21505)
* sys/shell: rename shell_readline() (#21506)
* treewide: migrate to XFA SHELL_COMMAND (#21514)
Networking
----------
+ gnrc/ipv6/nib: add option to disable router solicitations (#21437)
+ net/unicoap: Unified and Modular CoAP stack: Parser and Message APIs
(pt 1) (#21390)
+ submac: add TX power to retrievable netopts (#21579)
* sys/net/sock_util: Do not depend on network stack (#21419)
* sys: replace header guards with #pragma once (#21497)
Packages
--------
+ pkg/mpaland-printf: Add alternative stdio as package (#20664)
+ pkg/wakaama: add on off switch (#21109)
* pkg/driver_sx126x: bump to v2.3.2 (#21521)
* pkg: use esptool.py v4.9.0 as package (#21557)
* pkg/littlefs2: bump to 2.11.1 (#21583)
* pkg/littlefs2: bump version to v2.11.0 (#21491)
* pkg/nanopb: support more recent google.protobuf versions (#21587)
Boards
------
+ boards/esp32s3-usb-otg: enable SDMMC peripheral (#21471)
+ boards: add Wemos D1 R32 (aka ESPDuino-32) board definition (#21479)
+ cpu/esp32: add ESP32-H2 support (#21522)
+ features.yaml: add feather_shield feature (#21513)
* boards/adafruit-{clue,itsybitsy-nrf52}: Convert to Common `adafruit-
nrf52-bootloader` module (#21395)
* boards/esp32: Arduino I/O mapping completion (#21484)
* boards/nucleo-l412kb: enable ADC (#21566)
* boards/nucleo-l432: enable ADC (#21546)
* boards: replace header guards with #pragma once (#21504)
CPU
---
+ cpu/cortexm_common: add .backup.noinit section (#21559)
+ cpu/esp32: add IEEE 802.15.4 support for ESP32-H2 (#21590)
* cpu/esp32: Migration to ESP-IDF v5.4 (#21261)
* cpu/sam0_common: enable static voltages (#21555)
* cpu/sam0_common: implement pm_off() (#14999)
* cpu/samd5x: improve isr buffer handling (#21486)
* cpu: replace header guards with #pragma once (#21501)
* periph_common/init.c: unblock i2c bus (#20787)
Device Drivers
--------------
+ drivers/abp2: add abp2 driver (#20398)
+ drivers/slipmux: Add to RIOT (#21418)
+ drivers: add driver for MAX31865 resistance-to-digital converter (#21498)
+ drivers: add MCP23x17 I/O expander support (#10688)
* drivers/netdev_ieee802154_submac: port to netdev_new_api (#20992)
* drivers: replace header guards with #pragma once (#21496)
* drivers/periph/gpio(_ll): Enhance and fix the documentation (#21538)
* pkg/driver_atwinc15x0: remove the compilation of the SPI Flash driver
part (#21494)
Documentation
-------------
+ doc/guide: Introduce a Guide Site (#21404)
+ doc/guides: Add Getting Started guide (#21436)
* boards/*avr*: Update the link to the AVaRICE documentation (#21595)
* boards/nucleo-f031k6: improve board doc (#21581)
* boards/nucleo-f042k6: doc improvement (#21584)
* boards/nucleo-l412kb: improve board doc page (#21554)
* boards/nucleo-l432kc: improve board doc page (#21460)
* boards/nucleo: fix Cortex-M4F family in doc page (#21561)
* boards: rename doc.txt -> doc.md for particle, Microchip, nrf ...
boards (#21596)
* cpu/esp*: migrate doc files to Markdown files *.md (#21589)
* doc/creating-an-app: clarify wording about Makefile.board.dep (#21493)
* doc/guides/general: switch out @ref usage (#21457)
* doc: move vision to starlight, deprecate vision in doxygen (#21576)
* sys/stdio: better document configuration (#21459)
Build System / Tooling
----------------------
+ tools: add default .clang-tidy configuration (#21431)
+ dist/tools/riotboot_gen_hdr: add JSON mode (#21511)
+ dist/tools: add a leading whitespace check for `#pragma once` in the
`headerguards` static test (#21430)
* build system: improve cargo/docker interaction (#21465)
* build-sytem/openocd: detect serial port TTY (#21523)
* dist/tools/bmp: in-line dependencies using PEP 723 (#21131)
* dist/tools/compile_test: specify toolchain and exit code (#21534)
* dist/tools: bump uf2conv version (#21469)
* makefiles/defaultmodules*.mk: fix the description in comments (#21499)
* makefiles/docker: update riotbuild digest (#21542)
Examples
--------
+ Guides: Introduce C Tutorial (#21434)
* examples/basic/subfolders: switch from DIRS to EXTERNAL_MODULE_DIRS (#21476)
* examples/gnrc_lorawan: simplify configuration a bit (#21526)
* examples: move licenses from headers to SPDX format (#21591)
* examples: replace header guards with #pragma once (#21517)
Testing
-------
* .github/workflows: Guide Site Build Test (#21458)
* tests/pkg/fatfs*: cleanup MTD default dependencies (#21478)
And 19 minor changes.
Deprecations
============
Bug fixes (22)
==============
* drivers/sdmmc_sdhc: add timeout to wait for ISR mutex unlock (#21432)
* drivers/sx126x: add `shield_sx1262` (#21441)
* tests/unittests: Add missing module dependency to enable UDP (#21597)
* boards/feather-m0: Correct ADC Settings (#21508)
* boards/nucleo-l432kc: fix typo in MCU table (#21550)
* boards/nucleo-l4: fix VBAT capable boards list (#21547)
* boards/seeedstudio-xiao-esp32c3: fix pin conflict (#21463)
* cpu/cc2538: Distinguish between GPIO_OD and GPIO_OD_PU (#21488)
* cpu/native: use correct isr_stack for valgrind (#21492)
* cpu/nrf5x_common: fix uart_poweroff() (#19926)
* cpu/nrf{52,9160}: set GPIO modes correctly for MISO/MOSI SPI signals (#21549)
* cpu/sam0_common: fix DAC on SAM D5x/E5x (#21548)
* doc/guides: fix examples directories (#21568)
* examples/basic/subfolders: fix test (#21480)
* guides: Fix link to docker setup (#21570)
* guides: use absolute path to fix url (#21571)
* Makefile.include: fix override headers from application (#20744)
* pkg/esptool: force installation of version 4.9.0 (#21588)
* pkg/lwip: fix dependencies when LWIP IPv4 is used (#21342)
* pkg/mpaland-printf: fix overriding printf with printf_float (#21439)
* sys/embunit: fix return value on failure (#21468)
* tests/drivers/{st77xx,ili9341}: fix coordinates in lcd_fill() (#21518)
Known issues
============
Network related issues (55)
---------------------------
* 6lo: RIOT does not receive packets from Linux when short_addr is set (#11033)
* Address registration handling inappropriate (#15867)
* app/netdev: application stops working after receiving frames with
assertion or completely without error (#8271)
* at86rf2xx: Dead lock when sending while receiving (#8242)
* cpu/esp8266: Tracking open problems of esp_wifi netdev driver (#10861)
* DHCPv6 client: Handling of NotOnLink incorrect (#20349)
* dist/tools/sliptty/start_network.sh: IPv6 connectivity is broken on
PC (#14689)
* driver/mrf24j40: blocks shell input with auto_init_gnrc_netif (#12943)
* drivers/at86rf215: Incorrect channel number set for subGHz (#15906)
* DTLS examples cannot send message to localhost (#14315)
* Emcute cannot create a double-byte name (#12642)
* ethernet: Missing multicast addr assignment (#13493)
* ethos: fails to respond to first message. (#11988)
* ethos: Unable to handle fragmented IPv6 packets from Linux kernel (#12264)
* example/gnrc_border_router cannot answer after some time (#19578)
* examples/cord_ep: Dead lock when (re-)registering in callback
function (#12884)
* examples/gnrc_border_router: esp_wifi crashes on disconnect (#14679)
* Forwarding a packet back to its link layer source should not be
allowed (#5051)
* gcoap example request on tap I/F fails with NIB issue (#8199)
* gcoap: Suspected crosstalk between requests (possible NULL call) (#14390)
* Global IPv6 addresses remain deprecated after receiving RA (#19846)
* gnrc ipv6: multicast packets are not dispatched to the upper layers (#5230)
* gnrc/ipv6: "invalid payload length" - corrupted IPv6 header when
ENABLE_DEBUG=1 in mbox.c (#20390)
* gnrc_border_router stops routing after a while (#16398)
* gnrc_border_router: Kconfig and C disagree about number of addresses
per interface (#19947)
* gnrc_icmpv6_echo: flood-pinging another node leads to leaks in own
packet buffer (#12565)
* gnrc_ipv6: Multicast is not forwarded if routing node listens to the
address (#4527)
* gnrc_netif_pktq leaks memory (#17924)
* gnrc_rpl: missing bounds checks in _parse_options (#16085)
* gnrc_rpl: nib route not updated when topology / DODAG changes (#17327)
* gnrc_rpl: old routes are not deleted (#19423)
* gnrc_rpl: takes unusually long time to start routing packets (#19147)
* gnrc_sock_udp: Possible Race condition on copy in application buffer (#10389)
* gnrc_tcp: gnrc_tcp_recv() never generates -ECONNABORTED (#17896)
* gomach: Resetting netif with cli doesn't return (#10370)
* ieee802154_submac: IPv6 fragmentation broken (#16998)
* LoRaWan node ISR stack overflowed (#14962)
* LWIP TCP Communication Error (#19676)
* lwip_sock_tcp / sock_async: received events before calling
sock_accept() are lost due to race condition. (#16303)
* Missing drop implementations in netdev_driver_t::recv (#10410)
* Neighbor Discovery not working after router reboot when using SLAAC (#11038)
* netdev_ieee802154: Mismatch between radio ll address and in memory
address (#10380)
* nrf52: Not able to add global or ULA address to interface (#13280)
* nrfmin: communication not possible after multicast ping with no
interval (#11405)
* ping6 is failing when testing with cc2538dk (#13997)
* pkg/tinydtls: auxiliary data API does not work for async sockets (#16054)
* pkg/tinydtls: DTLS handshake does not work (#19595)
* Removing a TNT global address then adding a new one does not work (#20318)
* samr30 xpro doesn't seem to use its radio ok (#12761)
* scan-build errors found during 2019.07 testing (#11852)
* stale border router does not get replaced (#12210)
* test/lwip: enabling both, IPv4 and IPv6, results in unexpected
behavior (#18097)
* tests/lwip: does not compile for IPv4 on 6LoWPAN-based boards. (#17162)
* two nodes livelock sending neighbor solicitations back and forth
between each other (#16670)
* xbee: setting PAN ID sometimes fails (#10338)
Timer related issues (6)
------------------------
* misc issues with tests/trickle (#9052)
* periph/timer: `timer_set()` underflow safety check (tracking issue) (#13072)
* periph_timer: systematic proportional error in timer_set (#10545)
* saml21 system time vs rtc (#10523)
* stm32_common/periph/rtc: current implementation broken/poor accuracy (#8746)
* sys/newlib: gettimeofday() returns time since boot, not current wall
time. (#9187)
Drivers related issues (11)
---------------------------
* at86rf2xx: Simultaneous use of different transceiver types is not
supported (#4876)
* cpu/msp430: GPIO driver doesn't work properly (#9419)
* examples/dtls-wolfssl not working on pba-d-01-kw2x (#13527)
* fail to send data to can bus (#12371)
* mdt_erase success, but vfs_format resets board (esp32-heltec-
lora32-v2) (#14506)
* periph/spi: Switching between CPOL=0,1 problems on Kinetis with
software CS (#6567)
* periph: GPIO drivers are not thread safe (#4866)
* PWM: Single-phase initialization creates flicker (#15121)
* STM32: SPI clock not returning to idle state and generating
additional clock cycles (#11104)
* TCP client cannot send read only data (#16541)
* tests/periph_flashpage: unexpected behavior on nucleo-l4r5zi (#17599)
Native related issues (5)
-------------------------
* examples/micropython: floating point exception while testing on
native (#15870)
* native not float safe (#495)
* native: tlsf: early malloc will lead to a crash (#5796)
* VFS_READ show correct data on every SECOND request only (#21470)
* ztimer doesn't wake up on native if the pm_layered module is used (#21083)
Other platforms related issues (14)
-----------------------------------
* Failing tests on FE310 (Hifive1b) (#13086)
* [TRACKING] Fixes for automatic tests of ESP32 boards. (#12763)
* boards/hifive1: flashing issue (#13104)
* cpu/sam0: flashpage write / read cycle produces different results
depending on code layout in flash (#14929)
* esp32-wroom-32: tests/netstats_l2 failing sometimes (#14237)
* esp8266 crashes on WiFi disconnect (#21558)
* examples/gnrc_border_router: esp_wifi_init failed with return value
257 on ESP32-C3 with nimble_rpble (#19319)
* gcoap/esp8266: Stack overflow with gcoap example (#13606)
* Interrupt callback function is instantly called on samd51 after
setting it from within interrupt callback function (#19861)
* MPU doesn't work on cortex-m0+ (#14822)
* newlib-nano: Printf formatting does not work properly for some
numeric types (#1891)
* periph_timer: Test coverage & broken on STM32F767ZI (#15072)
* riscv: ISR stack is too small for ENABLE_DEBUG in core files (#16395)
* stm32f7: Large performance difference between stm32f746 and stm32f767 (#14728)
Build system related issues (5)
-------------------------------
* Build dependencies - processing order issues (#9913)
* dist/tools/cppcheck/cppchck.sh: errors when running with Cppcheck
1.89 (#12771)
* EXTERNAL_MODULE_DIRS silently ignores non-existent entries (#17696)
* make: ccache leads to differing binaries (#14264)
* make: use of immediate value of variables before they have their
final value (#8913)
Other issues (72)
-----------------
* 2023.04 release bug tracking (#19469)
* [tracking] Bugs found by the peripheral selftest (#20071)
* [Tracking] Fix failures of test-on-iotlab (#20791)
* [TRACKING] sys/shell refactoring. (#12105)
* [tracking] unnecessary use of floating point arithmetic (#19614)
* _NVIC_SystemReset stuck in infinite loop when calling pm_reboot
through shell after flashing with J-Link (#13044)
* `make term` no longer works with JLinkExe v6.94 (#16022)
* at86rf215 stops receiving until sending a packet (#19653)
* b-l072z-lrwan1: tests/ztimer_overhead: test failure (#19224)
* backport_pr: Only works for when fork is in user (not in
organization) (#18486)
* benchmark_udp: hammering with low interval causes issues (#16808)
* boards/esp32-wroom-32: tests/mtd_raw flakey (#16130)
* Builds fail when different execstack options are around in objects (#18522)
* Can't build relic with benchmarks or tests (#12897)
* CC2538-CC2592EM has a very weak transmit power (#17543)
* CC2538DK board docs: broken links (#12889)
* cpp: Exception handling undefined (#17523)
* cpu/stm32: some tests are failing on CM33 (l5, u5) (#17439)
* doc/boards: information concerning access to RIOT shell (#17453)
* doc/doxygen: Broken LaTeX Formulas (#21490)
* doxygen: CSS hack to hide doc breaks on older browsers (#21312)
* edbg: long lines flooded over serial become garbled (#14548)
* examples / tests: LoRa tests fail on platforms that don't support
LoRa (#14520)
* examples/gcoap: client broken (#19379)
* flashing issue on frdm-k64f (#15903)
* frdm-k22f failing tests/periph_flashpage (#17057)
* frdm-k22f fails tests/periph_timer (#19543)
* Freeze into semtech_loramac_send call (pkg/semtech-loramac) (#18790)
* gcoap: gcoap_req_send and related should return negative for errors (#19393)
* gnrc_ipv6_nib: Neighbor Solicitation ping-pong (#18164)
* I2C Crashes Kernel on Raspberry Pi Pico (#21187)
* I2C not working under RIOT with U8G2 pkg (#16381)
* ieee802154_security: Nonce is reused after reboot (#16844)
* kconfiglib.py choice override of menuconfig bug (#19069)
* lwip: drivers/at86rf2xx/at86rf2xx_netdev.c invalid state during TCP
disconnect (#17209)
* lwip: invalid state transition on ieee802154_submac users (#17208)
* Making the newlib thread-safe (#4488)
* mcuboot: flashes but no output (#17524)
* MTD is confusing (#17663)
* Order of auto_init functions (#13541)
* periph_rtt: rtt_set_alarm() blocks IRQ for 80 plus usec on STM32 (#19520)
* pkg/tinydtls: Multiple issues (#16108)