Skip to content

Tags: ML-PA-Consulting-GmbH/RIOT

Tags

2024.01

Toggle 2024.01's commit message

Verified

This tag was signed with the committer’s verified signature.
MrKevinWeiss Kevin "Tristate Tom" Weiss
RELEASE 2024.01

RIOT-2024.01 - 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 2024.01 release includes:

- Breaking change for board definition due to XFA for pointers to defined MTD.
  This means users will need to:
    - remove the `MTD_NUMOF` definition from `board.h`
    - add `MTD_XFA_ADD(<mtd_dev>, <idx>);` to the definition of `<mtd_dev>`.
    - `MTD_0`, `MTD_1`, … defines are no longer needed. Use `mtd_dev_get(0)`,
      `mtd_dev_get(1)`, … instead.
- Many fixes to peripherals due to the periph testing shield
- The AVR-8 now has power management
- The ESP32 family is now supported by the SDMMC peripheral driver
- `native` now is supported in pyterm
- `tests/periph/uart_locate_pins` helps discover which pins are where
- the `periph_timer` API supports `periph_timer_query_freqs`
- The GNRC boarder router application supports ZEP topology
- Removal of Kconfig dependency modelling (but still configurations supported)

194 pull requests, composed of 475 commits, have been merged since the
last release, and 4 issues have been solved. 30 people contributed with
code in 64 days. 1083 files have been touched with 36196 (+) insertions and
4976 deletions (-).

Notations used below
====================

    + means new feature/item
    * means modified feature/item
    - means removed feature/item

New features and changes
========================

Core
----

* core, sys, drivers: 64-bit support preparations (RIOT-OS#20257)
* core: Express -1 as ~0 in thread_status_t cast (RIOT-OS#19976)

System Libraries
----------------

+ Fletcher32: Add incremental API (RIOT-OS#19981)
+ sys/event/timeout: add event_timeout_is_pending() (RIOT-OS#19963)
+ sys/hashes: add SHA-512 support (RIOT-OS#19969)
+ sys/suit: introduce suit_worker_done_cb() (RIOT-OS#20237)
* riotboot: fix build errors (RIOT-OS#20210)
* sys/benchmark: fix integer overflow in benchmark_print_time() (RIOT-OS#20220)
* sys/psa_crypto: allow repeated initialization (RIOT-OS#19990)
* sys/shell/gnrc_netif: Fix a few blockers for sharing ifconfig shell (RIOT-OS#19971)
* sys/shell: fix getopt() support (RIOT-OS#20209)
+ sys/busy_wait: add busy wait helper (RIOT-OS#20241)

Networking
----------

* gnrc: make message queues static (RIOT-OS#19998)
+ nanocoap: implement coap_find_uri_query() (RIOT-OS#20273)
+ pkg/lwip: add support for slipdev (RIOT-OS#20022)
* coap: create typedef for CoAP methods (RIOT-OS#20003)
* gcoap_dns: Housekeeping with regards to draft status (RIOT-OS#20015)
* gnrc/ipv6/nib: allow for predictable static link-local addresses (RIOT-OS#20224)
* gnrc/nib: allow prefix to be on-link without being used for address (RIOT-OS#20243)
* nanocoap: fix incorrect uses of coap_get_code() (RIOT-OS#20028)
* nanocoap_sock: implement FETCH methods (RIOT-OS#20238)
* print: Missing size_t print format specifiers (RIOT-OS#20249)

Packages
--------

* Bump nanopb to 0.4.8 (RIOT-OS#20132)
* mjson: Initial include of package (RIOT-OS#20129)
* pkg/ccn-lite: Bump version (RIOT-OS#20248)
* pkg/flashdb: bump to 2.1.0 (RIOT-OS#20155)
* pkg/nanocbor: Bump to latest commit (RIOT-OS#19975)
* pkg/tinydtls: bump version (RIOT-OS#20159)
* pkg: micropython: bump version (RIOT-OS#20208)
* pkg: 64-bit support preparations (RIOT-OS#20271)

Boards
------

+ boards/feather-nrf52840-sense: Add bootloader info (RIOT-OS#20034)
+ boards/gd32vf103c-start: new board (RIOT-OS#20270)
+ boards/generic-cc2538-cc2592-dk: add board support (RIOT-OS#20226)
+ boards/nucleo-l4r5zi : add PWM configuration (RIOT-OS#20036)
+ boards/nucleo-l552ze: add PWM configuration (RIOT-OS#20032)
+ boards/p-nucleo-wb55: add PWM configuration (RIOT-OS#20120)
+ boards: add support for Adafruit Feather nRF52840 Sense (RIOT-OS#20027)
+ drivers/include/periph: add FREQM peripheral driver (RIOT-OS#20020)
+ drivers/ws281x: Add gpio_ll and timer based driver (RIOT-OS#19891)
+ pyterm: add native support (RIOT-OS#20172)
+ sys/shell: add firmware version to version cmd (RIOT-OS#20244)
* AVR-8: Implement Power Management (RIOT-OS#19784)
* boards/nrf52dk: Minimal Arduino pinout support (RIOT-OS#20286)
* boards/same54-xpro: configure pins for UART HW flow control &
  ethernet LED (RIOT-OS#20183)
* boards: remove `extern mtd_dev_t *mtd<n>` declarations from board
  definitions (RIOT-OS#20104)
* makefiles/tests/tests.inc.mk: use native term for tests (RIOT-OS#20215)
* treewise: typo "or RAM" (RIOT-OS#20219)

CPU
---

* cpu/msp430: rework MSP430 x1xx periph drivers (RIOT-OS#19835)
* cpu/nrf5x: clean up periph_uart (RIOT-OS#20102)
* cpu/stm32: FMC used for low-level LCD parallel interface (RIOT-OS#19943)
+ cpu/esp32/periph: add low-level SDMMC peripheral driver for ESP32 and
  ESP32-S3 (RIOT-OS#19786)
+ cpu/msp430: improve periph_timer (RIOT-OS#20160)
+ cpu/stm32/periph: add low-level SDMMC peripheral driver (RIOT-OS#19540)
+ cpu/*: implement periph_timer_query_freqs (RIOT-OS#20142) (RIOT-OS#20143) (RIOT-OS#20144) (RIOT-OS#20145)
  (RIOT-OS#20146) (RIOT-OS#20147) (RIOT-OS#20148)
+ cpu/stm32: add ADCAL operation (RIOT-OS#20044)
+ drivers/periph/uart: add periph_uart_tx_ondemand feature (RIOT-OS#20108)
* cpu/avr8_common: allow to build with !periph_pm (RIOT-OS#20247)
* cpu/avr8_common: fix build with !core_thread (RIOT-OS#20240)
* cpu/nrf5x_common: clean up UART implementation (RIOT-OS#20111)
* cpu/sam0/uart: implement uart_pin_cts()/uart_pin_rts() (RIOT-OS#20171)
* cpu/sam0_common: implement periph_gpio_ll and periph_gpio_ll_irq (RIOT-OS#20189)
* cpu/stm32/periph_spi: only perform DMA transfer above threshold (RIOT-OS#20214)
* cpu/stm32: uart: don't do DMA for small transfers (RIOT-OS#20230)

Device Drivers
--------------

+ driver/mtd: mtd_init add documentation for return value (RIOT-OS#20033)
+ drivers/periph_timer: add timer_query_freqs() (RIOT-OS#16349)
* drivers/mtd_flashpage: improve _write_page (RIOT-OS#20173)
* drivers/mtd: improve doc consistency (RIOT-OS#20184)
* drivers: make use of busy_wait() (RIOT-OS#20258)

Documentation
-------------

* boards/nucleo-l433rc: doc update - image and MCU table (RIOT-OS#20098)
* boards/nucleo-l452re: doc update (RIOT-OS#20207)
* boards/p-nucleo-wb55: documentation update (RIOT-OS#20115)
* doc/mainpage: don't claim to be a microkernel (RIOT-OS#20246)
* doc: Move and update roadmap in from the wiki (RIOT-OS#20122, RIOT-OS#20123)

Build System / Tooling
----------------------

+ dist/testbed-support: Add openmote board (RIOT-OS#19979)
+ dist/tools/riotboot_gen_hdr/genhdr: add update command (RIOT-OS#20239)
* Bump version of UF2 package (RIOT-OS#20035)
* examples/gnrc_border_router: enable setting ZEP topology (RIOT-OS#20006)
* make all: document targets for RIOT base module (RIOT-OS#20187)
* make help: show generate-Makefile.ci (RIOT-OS#20186)
* tools/zep_dispatch: enhancements and fixes (RIOT-OS#19996)

Kconfig
-------

* tests/build_system: drop Kconfig tests (RIOT-OS#20229)

Examples
--------

* examples/dtls-sock: Enable non 32-bit architectures (RIOT-OS#20196)
* examples/dtls-sock: make use of helper functions (RIOT-OS#20125)

Testing
-------

+ tests/periph/uart_locate_pins: new test/utility app (RIOT-OS#20253)
+ tests/pkg/minmea: adding GGA, GSA and RMC sentences to test
  application (RIOT-OS#20005)
+ tests/unittests: add a unit test for ztimer (RIOT-OS#20011)
* .murdock: drop Kconfig compile check (RIOT-OS#20211)
* ci: ensure "xxx succeeded" properly fail (RIOT-OS#20288)
* ci: make native tests show up in "tests" (RIOT-OS#20269)
* tests/drivers/at: fix device table overflow (RIOT-OS#20025)
* tests/net/gnrc_sixlowpan_frag_sfr_congure_impl: disable test on
  native (RIOT-OS#20151)
* tests/periph/uart: allow to set line ending (RIOT-OS#20128)
* tests/pkg/minmea: fixing RMC timestamp (RIOT-OS#20018)
* tests/sys/psa_crypto*: Fix failing tests (RIOT-OS#20178)
* tests/sys/psa_crypto_se_cipher: disable test on esp32-wroom-32 (RIOT-OS#20152)
* tests/sys/psa_crytpo_se: disable test on esp32-wroom-32 (RIOT-OS#20150)
* tests/unittests: blacklist LLVM on native (RIOT-OS#19958)
* tests: Slightly increase coverage of fmt unittests (RIOT-OS#20272)

API Changes
-----------

+ print: Added size_t print format specifier (RIOT-OS#20194)
* drivers/mtd: use XFA for pointers to defined MTDs (RIOT-OS#19465)
* drivers/periph/gpio_ll: shrink gpio_conf_t (RIOT-OS#20236)
* hashes/sha2{24,56}: Remove static variables from sha256 (RIOT-OS#20116)
* nanocoap: defuse footgun in coap_get_uri_query() (RIOT-OS#20195)
* nanocoap: rename coap_get_code() -> coap_get_code_decimal() (RIOT-OS#20004)

Uncategorized
-------------
* Fix labeler action (RIOT-OS#20137)
* roadmap: extend peripheral drivers section (RIOT-OS#20136)

And 52 minor changes.

Deprecations
============

None

Removals (1)
------------

- mtd/*: drop .write() if .write_page() is implemented (RIOT-OS#15380)

Bug fixes (26)
==============

* dist/tools/uf2: add target to also copy families.json file (RIOT-OS#20042)
* backport_pr.py: increase entries per page for branches GET (RIOT-OS#19985)
* boards/esp32s3-usb-otg: fix the table of contents in documentation (RIOT-OS#20156)
* boards/native: only use pyterm wrapper with term target (RIOT-OS#20264)
* boards/nucleo-f413zh: Fix DMA mapping (RIOT-OS#20225)
* ci: fix murdock tests after dwq change (RIOT-OS#20268)
* cpu/cc2538: fix EUI provider (RIOT-OS#20228)
* cpu/cortexm_common: work around bug on WFI for STM32 (RIOT-OS#20149)
* cpu/stm32/periph_spi: Fix /CS handling (RIOT-OS#20084)
* cpu/stm32: fix periph_i2c for F1, F2, L1 and F4 families (RIOT-OS#20100)
* drivers/mtd: fix the order of entries in the MTD pointer XFA
  `mtd_dev_xfa` (RIOT-OS#20113)
* drivers/mtd_sdmmc: always enable the erase function (RIOT-OS#20180)
* drivers/slipdev: make use of chunked ringbuffer (RIOT-OS#18066)
* fatfs_vfs: fix the Memory leak: work (RIOT-OS#20206)
* gcoap: fix underflow when correcting ETag from cache (RIOT-OS#19968)
* gnrc/ipv6/nib: rejoin ipv6_addr_all_nodes_link_local on interface up (RIOT-OS#20259)
* gnrc_ipv6_nib: fix config for mixed 6lo/classic setup (RIOT-OS#20167)
* nanocoap: prevent integer underflow in coap_opt_put_uri_pathquery() (RIOT-OS#19994)
* net/gnrc/netif: set 6LN flag for ethernet if gnrc_sixloenc is used (RIOT-OS#20139)
* pkg/nanocbor: Update for fixed nanocbor_skip_simple() (RIOT-OS#19983)
* sock/udp: work around gnrc_sock_recv() returning early timeout (RIOT-OS#19965)
* sys/psa_crypto: Fix build problems (RIOT-OS#19992)
* sys/psa_crypto: fix compile bug for certain configuration (RIOT-OS#20193)
* sys/psa_crypto: Fix macro for public key max size and SE example (RIOT-OS#19995)
* wasm: fix the memory leak: wasm_buf (RIOT-OS#20205)

Known issues
============

Network related issues (52)
---------------------------

* 6lo: RIOT does not receive packets from Linux when short_addr is set (RIOT-OS#11033)
* Address registration handling inappropriate (RIOT-OS#15867)
* app/netdev: application stops working after receiving frames with
  assertion or completely without error (RIOT-OS#8271)
* at86rf2xx: Dead lock when sending while receiving (RIOT-OS#8242)
* cpu/esp8266: Tracking open problems of esp_wifi netdev driver (RIOT-OS#10861)
* dist/tools/sliptty/start_network.sh: IPv6 connectivity is broken on
  PC (RIOT-OS#14689)
* driver/mrf24j40: blocks shell input with auto_init_gnrc_netif (RIOT-OS#12943)
* drivers/at86rf215: Incorrect channel number set for subGHz (RIOT-OS#15906)
* DTLS examples cannot send message to localhost (RIOT-OS#14315)
* Emcute cannot create a double-byte name (RIOT-OS#12642)
* ethernet: Missing multicast addr assignment (RIOT-OS#13493)
* ethos: fails to respond to first message. (RIOT-OS#11988)
* ethos: Unable to handle fragmented IPv6 packets from Linux kernel (RIOT-OS#12264)
* example/gnrc_border_router cannot answer after some time (RIOT-OS#19578)
* examples/cord_ep: Dead lock when (re-)registering in callback
  function (RIOT-OS#12884)
* examples/gnrc_border_router: esp_wifi crashes on disconnect (RIOT-OS#14679)
* Forwarding a packet back to its link layer source should not be
  allowed (RIOT-OS#5051)
* gcoap example request on tap I/F fails with NIB issue (RIOT-OS#8199)
* gcoap: Suspected crosstalk between requests (possible NULL call) (RIOT-OS#14390)
* Global IPv6 addresses remain deprecated after receiving RA (RIOT-OS#19846)
* gnrc ipv6: multicast packets are not dispatched to the upper layers (RIOT-OS#5230)
* gnrc_border_router stops routing after a while (RIOT-OS#16398)
* gnrc_border_router: Kconfig and C disagree about number of addresses
  per interface (RIOT-OS#19947)
* gnrc_icmpv6_echo: flood-pinging another node leads to leaks in own
  packet buffer (RIOT-OS#12565)
* gnrc_ipv6: Multicast is not forwarded if routing node listens to the
  address (RIOT-OS#4527)
* gnrc_netif_pktq leaks memory (RIOT-OS#17924)
* gnrc_rpl: missing bounds checks in _parse_options (RIOT-OS#16085)
* gnrc_rpl: nib route not updated when topology / DODAG changes (RIOT-OS#17327)
* gnrc_rpl: old routes are not deleted (RIOT-OS#19423)
* gnrc_rpl: takes unusually long time to start routing packets (RIOT-OS#19147)
* gnrc_sock_udp: Possible Race condition on copy in application buffer (RIOT-OS#10389)
* gnrc_tcp: gnrc_tcp_recv() never generates -ECONNABORTED (RIOT-OS#17896)
* gomach: Resetting netif with cli doesn't return (RIOT-OS#10370)
* ieee802154_submac: IPv6 fragmentation broken (RIOT-OS#16998)
* LoRaWan node ISR stack overflowed (RIOT-OS#14962)
* LWIP TCP Communication Error (RIOT-OS#19676)
* lwip_sock_tcp / sock_async: received events before calling
  sock_accept() are lost due to race condition. (RIOT-OS#16303)
* Missing drop implementations in netdev_driver_t::recv (RIOT-OS#10410)
* Neighbor Discovery not working after router reboot when using SLAAC (RIOT-OS#11038)
* netdev_ieee802154: Mismatch between radio ll address and in memory
  address (RIOT-OS#10380)
* nrf52: Not able to add global or ULA address to interface (RIOT-OS#13280)
* nrfmin: communication not possible after multicast ping with no
  interval (RIOT-OS#11405)
* ping6 is failing when testing with cc2538dk (RIOT-OS#13997)
* pkg/tinydtls: auxiliary data API does not work for async sockets (RIOT-OS#16054)
* pkg/tinydtls: DTLS handshake does not work (RIOT-OS#19595)
* samr30 xpro doesn't seem to use its radio ok (RIOT-OS#12761)
* scan-build errors found during 2019.07 testing (RIOT-OS#11852)
* stale border router does not get replaced (RIOT-OS#12210)
* test/lwip: enabling both, IPv4 and IPv6, results in unexpected
  behavior (RIOT-OS#18097)
* tests/lwip: does not compile for IPv4 on 6LoWPAN-based boards. (RIOT-OS#17162)
* two nodes livelock sending neighbor solicitations back and forth
  between each other (RIOT-OS#16670)
* xbee: setting PAN ID sometimes fails (RIOT-OS#10338)

Timer related issues (7)
------------------------

* misc issues with tests/trickle (RIOT-OS#9052)
* MSP430: periph_timer clock config wrong (RIOT-OS#8251)
* periph/timer: `timer_set()` underflow safety check (tracking issue) (RIOT-OS#13072)
* periph_timer: systematic proportional error in timer_set (RIOT-OS#10545)
* saml21 system time vs rtc (RIOT-OS#10523)
* stm32_common/periph/rtc: current implementation broken/poor accuracy (RIOT-OS#8746)
* sys/newlib: gettimeofday() returns time since boot, not current wall
  time. (RIOT-OS#9187)

Drivers related issues (12)
---------------------------

* at86rf2xx: Simultaneous use of different transceiver types is not
  supported (RIOT-OS#4876)
* cpu/msp430: GPIO driver doesn't work properly (RIOT-OS#9419)
* driver/hts221: Temperature and Humidity readings incorrect (RIOT-OS#12445)
* examples/dtls-wolfssl not working on pba-d-01-kw2x (RIOT-OS#13527)
* fail to send data to can bus (RIOT-OS#12371)
* mdt_erase success, but vfs_format resets board (esp32-heltec-
  lora32-v2) (RIOT-OS#14506)
* periph/spi: Switching between CPOL=0,1 problems on Kinetis with
  software CS (RIOT-OS#6567)
* periph: GPIO drivers are not thread safe (RIOT-OS#4866)
* PWM: Single-phase initialization creates flicker (RIOT-OS#15121)
* STM32: SPI clock not returning to idle state and generating
  additional clock cycles (RIOT-OS#11104)
* TCP client  cannot  send read only data (RIOT-OS#16541)
* tests/periph_flashpage: unexpected behavior on nucleo-l4r5zi (RIOT-OS#17599)

Native related issues (4)
-------------------------

* examples/micropython: floating point exception while testing on
  native (RIOT-OS#15870)
* native getchar is blocking RIOT (RIOT-OS#16834)
* native not float safe (RIOT-OS#495)
* native: tlsf: early malloc will lead to a crash (RIOT-OS#5796)

Other platforms related issues (13)
-----------------------------------

* Failing tests on FE310 (Hifive1b) (RIOT-OS#13086)
* boards/hifive1: flashing issue (RIOT-OS#13104)
* cpu/sam0: flashpage write / read cycle produces different results
  depending on code layout in flash (RIOT-OS#14929)
* esp32-wroom-32: tests/netstats_l2 failing sometimes (RIOT-OS#14237)
* examples/gnrc_border_router: esp_wifi_init failed with return value
  257 on ESP32-C3 with nimble_rpble (RIOT-OS#19319)
* gcoap/esp8266: Stack overflow with gcoap example (RIOT-OS#13606)
* Interrupt callback function is instantly called on samd51 after
  setting it from within interrupt callback function (RIOT-OS#19861)
* MPU doesn't work on cortex-m0+ (RIOT-OS#14822)
* newlib-nano: Printf formatting does not work properly for some
  numeric types (RIOT-OS#1891)
* periph_timer: Test coverage & broken on STM32F767ZI (RIOT-OS#15072)
* riscv: ISR stack is too small for ENABLE_DEBUG in core files (RIOT-OS#16395)
* stm32f7: Large performance difference between stm32f746 and stm32f767 (RIOT-OS#14728)
* sys/riotboot/flashwrite: unaligned write when skipping
  `RIOTBOOT_MAGIC` on stm32wb (RIOT-OS#15917)

Build system related issues (7)
-------------------------------

* `buildtest` uses wrong build directory (RIOT-OS#9742)
* Build dependencies - processing order issues (RIOT-OS#9913)
* dist/tools/cppcheck/cppchck.sh: errors when running with Cppcheck
  1.89 (RIOT-OS#12771)
* EXTERNAL_MODULE_DIRS silently ignores non-existent entries (RIOT-OS#17696)
* make: ccache leads to differing binaries (RIOT-OS#14264)
* make: use of immediate value of variables before they have their
  final value (RIOT-OS#8913)
* missing build dependencies in the rust build (RIOT-OS#19714)

Other issues (63)
-----------------

* _NVIC_SystemReset stuck in infinite loop when calling pm_reboot
  through shell after flashing with J-Link (RIOT-OS#13044)
* `make term` no longer works with JLinkExe v6.94 (RIOT-OS#16022)
* at86rf215 stops receiving until sending a packet (RIOT-OS#19653)
* b-l072z-lrwan1: tests/ztimer_overhead: test failure (RIOT-OS#19224)
* backport_pr: Only works for when fork is in user (not in
  organization) (RIOT-OS#18486)
* benchmark_udp: hammering with low interval causes issues (RIOT-OS#16808)
* boards/esp32-wroom-32: tests/mtd_raw flakey (RIOT-OS#16130)
* Builds fail when different execstack options are around in objects (RIOT-OS#18522)
* Can't build relic with benchmarks or tests (RIOT-OS#12897)
* CC2538-CC2592EM has a very weak transmit power (RIOT-OS#17543)
* CC2538DK board docs: broken links (RIOT-OS#12889)
* cpp: Exception handling undefined (RIOT-OS#17523)
* cpu/stm32: some tests are failing on CM33 (l5, u5) (RIOT-OS#17439)
* doc/boards: information concerning access to RIOT shell (RIOT-OS#17453)
* doc/LOSTANDFOUND: not rendered as expected (RIOT-OS#17063)
* edbg: long lines flooded over serial become garbled (RIOT-OS#14548)
* examples / tests: LoRa tests fail on platforms that don't support
  LoRa (RIOT-OS#14520)
* examples/gcoap: client broken (RIOT-OS#19379)
* feather-m0: `make flash` reports "device unsupported" (RIOT-OS#17722)
* flashing issue on frdm-k64f (RIOT-OS#15903)
* frdm-k22f failing tests/periph_flashpage (RIOT-OS#17057)
* frdm-k22f fails tests/periph_timer (RIOT-OS#19543)
* Freeze into semtech_loramac_send call (pkg/semtech-loramac) (RIOT-OS#18790)
* gcoap: gcoap_req_send and related should return negative for errors (RIOT-OS#19393)
* gnrc_ipv6_nib: Neighbor Solicitation ping-pong (RIOT-OS#18164)
* I2C not working under RIOT with U8G2 pkg (RIOT-OS#16381)
* ieee802154_security: Nonce is reused after reboot (RIOT-OS#16844)
* kconfiglib.py choice override of menuconfig bug (RIOT-OS#19069)
* lwip: drivers/at86rf2xx/at86rf2xx_netdev.c invalid state during TCP
  disconnect (RIOT-OS#17209)
* lwip: invalid state transition on ieee802154_submac users (RIOT-OS#17208)
* Making the newlib thread-safe (RIOT-OS#4488)
* mcuboot: flashes but no output (RIOT-OS#17524)
* MTD is confusing (RIOT-OS#17663)
* nanocoap: incomplete response to /.well-known/core request (RIOT-OS#10731)
* Order of auto_init functions (RIOT-OS#13541)
* periph_rtt: rtt_set_alarm() blocks IRQ for 80 plus usec on STM32 (RIOT-OS#19520)
* pkg/tinydtls: Multiple issues (RIOT-OS#16108)
* Potential race condition in compile_and_test_for_board.py (RIOT-OS#12621)
* RIOT is saw-toothing in energy consumption (even when idling) (RIOT-OS#5009)
* riotboot/nrf52840dk: flashing slot1 with JLINK fails (RIOT-OS#14576)
* riotboot: ECC faults (eg. in STM32L5 or STM32WB) not handled
  gracefully (RIOT-OS#17874)
* rust-gcoap example is incompatible with littlefs2 (RIOT-OS#17817)
* Samr30/gpio: Erasing then write mux can generate spurious IRQ (RIOT-OS#19993)
* samr34-xpro: some tests failing (RIOT-OS#19223)
* sock_dtls: unable to send big messages (RIOT-OS#17996)
* spurious IRQs in `periph_timer` (RIOT-OS#18976)
* stdio_ethos: infinite shell loop (RIOT-OS#17972)
* stdio_tinyusb_cdc_acm hangs with picolibc (RIOT-OS#19277)
* STM32 Nucleo boards improperly clocked (RIOT-OS#19778)
* sys/riotboot: documentation issues (RIOT-OS#11243)
* tests/lwip target board for python test is hardcoded to native (RIOT-OS#6533)
* tests/periph_flashpage: failing on stm32l475ve (RIOT-OS#17280)
* tests/pkg/relic is failing on samr21-xpro when built using llvm (RIOT-OS#19903)
* tests/pkg_libhydrogen: test fails on master for the samr21-xpro with
  LLVM (RIOT-OS#15066)
* tests/pkg_libschc: Failing test_reassemble_success_ack_always (RIOT-OS#19445)
* tests/test_tools: test fails while testing on samr21-xpro/iotlab-m3 (RIOT-OS#15888)
* tests: broken with stdio_rtt if auto_init is disabled (RIOT-OS#13120)
* tests: some tests don't work with `newlib` lock functions. (RIOT-OS#12732)
* Types in `byteorder.h` need a cleanup (RIOT-OS#14737)
* USB identifiers with funny characters create mojibake (RIOT-OS#17776)
* usbus/msc: wrong error handling and behavior after usb reset (RIOT-OS#19478)
* Use of multiple CAN bus on compatible boards (RIOT-OS#14801)
* ztimer is incompatible with real-time requirements (RIOT-OS#18883)

There are 158 known issues in this release

Fixed Issues since the last release (2023.10)
=============================================

- make debug broken on `native` (RIOT-OS#20265)
- Bug in drivers/lpsxxx sensor (RIOT-OS#20093)
- stm32152re: hardfault when DBGMCU_CR_DBG* bits are set and branch
  after __WFI() (RIOT-OS#14015)
- cpu/stm32f1: CPU hangs after wake-up from STOP power mode (RIOT-OS#13918)

4 fixed issues since last release (2023.10)

Acknowledgements
================
We would like to thank all companies that provided us with hardware for porting
and testing RIOT-OS. 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

Matrix and Forum
================
* Join the RIOT Matrix room at: #riot-os:matrix.org
* Join the RIOT Forum at: forum.riot-os.org

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.

2024.01-RC2

Toggle 2024.01-RC2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request RIOT-OS#20320 from MrKevinWeiss/backport/2024.01/p…

…r/fix_tnt_loopback

gnrc_ipv6: fix double-free when pinging TNT loopback address [backport 2024.01]

2024.04-devel

Toggle 2024.04-devel's commit message
Development branch towards 2024.04 release

2024.01-RC1

Toggle 2024.01-RC1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request RIOT-OS#20288 from kaspar030/fix_check_commits

ci: ensure "xxx succeeded" properly fail

2023.10

Toggle 2023.10's commit message

Verified

This tag was signed with the committer’s verified signature.
MrKevinWeiss Kevin "Tristate Tom" Weiss
RELEASE 2023.10

RIOT-2023.10 - 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 2023.10 release includes:

- PSA Crypto API implementation, one step closer to a secure IoT!
- A bunch of default drivers for boards
- Improved clang support

116 pull requests, composed of 318 commits, have been merged since the
last release, and 2 issues have been solved. 23 people contributed with
code in 95 days. 1109 files have been touched with 437877 (+) insertions and
3189 deletions (-).

Notations used below
====================

    + means new feature/item
    * means modified feature/item
    - means removed feature/item

New features and changes
========================

System Libraries
----------------

+ drivers/periph_sdmmc: define a High-level SDIO/SD/MMC API and low-
  level SDMMC peripheral driver interface (RIOT-OS#19539)
+ sys/event: add event_is_queued() (RIOT-OS#19966)
* sys/shell/gnrc_netif: fix ifconfig set language issue (RIOT-OS#19970)
* sys/shell/gnrc_txtsnd: Move to separate module (RIOT-OS#19973)
* sys: PSA Crypto API implementation (RIOT-OS#18547)

Networking
----------

+ coap: add missing Content-Format definitions (RIOT-OS#19875)
+ coap: add missing option numbers (RIOT-OS#19874)
+ drivers/atwinc15x0: support dynamic scanning and connection to AP (RIOT-OS#19387)
+ sys/net/sock: add sock_aux_ttl (RIOT-OS#19836)
* cmds_gnrc_netif: Support enabling/disabling lwIP netifs from
  gnrc_netif shell (RIOT-OS#19972)

Packages
--------

+ mcufont: Initial addition of MCUFont package (RIOT-OS#19726)
* pkg/driver_cryptocell_310: Fix Makefile (RIOT-OS#19959)
* pkg/flashdb: bump to 2.0.0 (RIOT-OS#19863)
* pkg/littlefs2: bump to v2.8 (RIOT-OS#19942)
* pkg/lvgl: bump to v8.3.9 (RIOT-OS#19901)
* lwip: bump to v2.2.0 (RIOT-OS#19780)

Boards
------

+ boards/stm32f723e-disco: enable ST7789 display (RIOT-OS#19939)
+ boards/stm32f769i-disco: enable FMC with SDRAM support (RIOT-OS#19851)
+ boards/stm32l496g-disco: enable ST7789 display and touch panel (RIOT-OS#19938)
+ boards: add Silabs EFM32 Giant Gecko GG11 Starter Kit (RIOT-OS#19923)
+ boards: add support for ESP32-S3 WT32 SC01 Plus board (RIOT-OS#19917)
* boards/adafruit-itsybitsy-m4: configure littleFS on external flash (RIOT-OS#19355)
* boards/nucleo64: fix SPI Arduino mapping for most boards (RIOT-OS#19935)
* boards/sipeed_longan_nano: separate board definition for Sipeed
  Longan Nano TFT (RIOT-OS#19824)
* boards/stm32f469i-disco: enable FMC with SDRAM support (RIOT-OS#19910)
* boards: complete SD Card MTD definition for several bords (RIOT-OS#19914)

CPU
---

+ cpu/stm32/periph: add FMC/FSMC support for STM32 (RIOT-OS#19843)
+ cpu/sam0_common/periph: add low-level SDMMC peripheral driver for SDHC (RIOT-OS#19760)
+ cpu/efm32/periph: add DAC support for EFM32 Series 1 (VDAC) (RIOT-OS#19887)
* cpu/atmega_common: hook up BAT LOW irq to power bus (RIOT-OS#19822)
* cpu/riscv_common: remove picolibc from blacklisting in CI (RIOT-OS#19862)
* cpu/stm32/periph/eth: Disable hardware checksums (RIOT-OS#19952)
* cpu/stm32: bump cmsis packages version (RIOT-OS#19904)
* cpu/stm32: fix ld script for SRAM4 (RIOT-OS#19842)
* dist/tools/esptools: upgrade ESP32x toolchains to GCC version 12.2 (RIOT-OS#19452)
* sys/psa_crypto: Ed25519 (EdDSA) support (RIOT-OS#19954)

Device Drivers
--------------

+ drivers/ft5x06: introduce conversion for X and Y coordinates (RIOT-OS#19867)
+ drivers/st77xx: introduce rotation defines (RIOT-OS#19919)
+ drivers/lcd: add MCU 8080 16-bit parallel mode support (RIOT-OS#19937)
+ drivers/lcd: add MCU-driven low-level parallel interface (RIOT-OS#19941)
+ drivers/lcd: support MCU 8080 8-bit parallel mode (RIOT-OS#19915)
+ drivers/touch_dev_gestures: add gesture recognition for touch devices (RIOT-OS#19884)
* drivers/ft5x06: use a pointer to config parameters instead of copying
  them (RIOT-OS#19866)
* drivers/sdmmc: store SDMMC device descriptor references in XFA (RIOT-OS#19899)
* drivers/stmpe811: changes for interrupt-driven touch handling and
  gesture recognition (RIOT-OS#19885)

Documentation
-------------

+ tests/pkg/lwip: Add README.md (RIOT-OS#19949)
+ drivers/periph: Add documentation on thread safety and initialization (RIOT-OS#19794)
* boards/sltb009a: complete and fix documentation (RIOT-OS#19888)
* doc: fix references and inches unit (RIOT-OS#19948)

Build System / Tooling
----------------------

+ compile_and_test_for_boards: Add no-compile flag (RIOT-OS#19817)
+ dist/testbed-support: Add openmote board [backport 2023.10] (RIOT-OS#19984)
* dist/tools/jlink: fix DBG_PID assignment (RIOT-OS#19960)
* dist/tools/usb-serial: call ttys.py with its path (RIOT-OS#19823)
* make: COMPILE_COMMANDS_PATH adapt for external apps (RIOT-OS#19869)

Examples
--------

+ examples/gcoap: add saml11-xpro to CI boards with insufficient memory (RIOT-OS#19933)

Testing
-------

+ tests/drivers/touch_dev: allow to test a touch device in polling mode (RIOT-OS#19882)
* .github/test-on-iotlab: prefer Toulouse site for dwm1001 board (RIOT-OS#19950)
* .github: drop test-on-ryot workflow (RIOT-OS#19847)
* clang floating point handling fix (RIOT-OS#19852)
* gh-actions: remove reporting release tests to Matrix (RIOT-OS#19879)
* tests/gcoap_fileserver: only enable test with GCC (RIOT-OS#19870)
* tests/net/gcoap_fileserver: disable test on CI (RIOT-OS#19898)
* tests/net/gcoap_fileserver: Fix failing nightlies (RIOT-OS#19856)
* tests/pkg/relic: skip CI testing with samr21-xpro and llvm toolchain (RIOT-OS#19902)

And 13 minor changes.

Bug fixes (37)
==============

* tree-wide: mixed box of compilation fixes with clang (RIOT-OS#19634)
* drivers/stmpe811: introduce conversion for X and Y coordinates (RIOT-OS#19883)
* pkg/tinyusb: add missing include (RIOT-OS#19893)
* release-test.yml: Add strasbourg creds [backport 2023.10] (RIOT-OS#20013)
* tests/gcoap_fileserver: add zep_dispatcher to TEST_DEPS (RIOT-OS#19864)
* boards/esp32-wt32-sc01-plus: fix I2C driver selection in Kconfig (RIOT-OS#19945)
* boards/esp32s3-wt32-sc01-plus: fix Kconfig (RIOT-OS#19953)
* boards/msb-430: Fix periph config & improve doc (RIOT-OS#19922)
* boards: fix documentation for GD32V boards and doxygen 1.9.4 (RIOT-OS#19931)
* cpu/efm32: fix DAC configuration (RIOT-OS#19886)
* cpu/esp32: fix heap definition for ESP32-S2 and ESP32-S3 (RIOT-OS#19956)
* cpu/esp32: fix Octal SPI RAM for ESP32-S3 (RIOT-OS#19957)
* cpu/esp32: fix RISC-V ISA for ESP32-C3 with GCC 12.2 (RIOT-OS#19962)
* cpu/sam0_common/periph/sdhc: busy waiting and clock fixes (RIOT-OS#19815)
* drivers/at86rf215: switch example config to use EXT3 on same54-xpro (RIOT-OS#19912)
* drivers/enc28j60: disable flow control (RIOT-OS#19845)
* drivers/ft5x06: fix initialization if callback function parameter is
  NULL (RIOT-OS#19880)
* drivers/ft5x06: fix vendor ID for FT6xx6 and FTxxxx register
  addresses (RIOT-OS#19860)
* drivers/mtd_default: fix for boards that define MTD_NUMOF (RIOT-OS#19907)
* drivers/mtd_spi_nor: fix init when only ztimer_msec is used (RIOT-OS#19908)
* drivers/st77xx: implement initialization (RIOT-OS#19827)
* drivers/stmpe811: fix initialization if callback function parameter
  is NULL (RIOT-OS#19881)
* drivers: rename st7735 to more generic st77xx (RIOT-OS#19825)
* gcoap: fix underflow when correcting ETag from cache [backport
  2023.10] (RIOT-OS#19987)
* gnrc_ipv6_nib: disable router advertisements on interface startup (RIOT-OS#19920)
* gnrc_ipv6_nib: fix for border router with non-6lo interfaces (RIOT-OS#19900)
* nanocoap: prevent integer underflow in coap_opt_put_uri_pathquery()
  [backport 2023.10] (RIOT-OS#20038)
* netdev/ieee802154_submac: support setting promiscuous mode option (RIOT-OS#19906)
* nib/_nib-6ln: bail out early if address is no longer assigned
  [backport 2023.10] (RIOT-OS#20037)
* pkg/nanocbor: Update for fixed nanocbor_skip_simple() [backport
  2023.10] (RIOT-OS#19988)
* pkg/tinydtls: allow to set buffer size from application again (RIOT-OS#19892)
* posix_sockets.c: Fix 2 byte int compilation errors (RIOT-OS#19946)
* sys/psa_crypto: Fix macro for public key max size and SE example
  [backport 2023.10] (RIOT-OS#20039)
* sys/shell/ping: fix ping packet size overflow (RIOT-OS#19927)
* tests/drivers/disp_dev: fix off by one in display area (RIOT-OS#19844)
* tests/pkg/lvgl*: fix the main thread stack size for ESPs (RIOT-OS#19865)
* ztimer/periodic: reinit remove from right clock and handle acquired
  ztimer (RIOT-OS#19826)

Known issues
============

Network related issues (52)
---------------------------

* 6lo: RIOT does not receive packets from Linux when short_addr is set (RIOT-OS#11033)
* Address registration handling inappropriate (RIOT-OS#15867)
* app/netdev: application stops working after receiving frames with
  assertion or completely without error (RIOT-OS#8271)
* at86rf2xx: Dead lock when sending while receiving (RIOT-OS#8242)
* cpu/esp8266: Tracking open problems of esp_wifi netdev driver (RIOT-OS#10861)
* dist/tools/sliptty/start_network.sh: IPv6 connectivity is broken on
  PC (RIOT-OS#14689)
* driver/mrf24j40: blocks shell input with auto_init_gnrc_netif (RIOT-OS#12943)
* drivers/at86rf215: Incorrect channel number set for subGHz (RIOT-OS#15906)
* DTLS examples cannot send message to localhost (RIOT-OS#14315)
* Emcute cannot create a double-byte name (RIOT-OS#12642)
* ethernet: Missing multicast addr assignment (RIOT-OS#13493)
* ethos: fails to respond to first message. (RIOT-OS#11988)
* ethos: Unable to handle fragmented IPv6 packets from Linux kernel (RIOT-OS#12264)
* example/gnrc_border_router cannot answer after some time (RIOT-OS#19578)
* examples/cord_ep: Dead lock when (re-)registering in callback
  function (RIOT-OS#12884)
* examples/gnrc_border_router: esp_wifi crashes on disconnect (RIOT-OS#14679)
* Forwarding a packet back to its link layer source should not be
  allowed (RIOT-OS#5051)
* gcoap example request on tap I/F fails with NIB issue (RIOT-OS#8199)
* gcoap: Suspected crosstalk between requests (possible NULL call) (RIOT-OS#14390)
* Global IPv6 addresses remain deprecated after receiving RA (RIOT-OS#19846)
* gnrc ipv6: multicast packets are not dispatched to the upper layers (RIOT-OS#5230)
* gnrc_border_router stops routing after a while (RIOT-OS#16398)
* gnrc_border_router: Kconfig and C disagree about number of addresses
  per interface (RIOT-OS#19947)
* gnrc_icmpv6_echo: flood-pinging another node leads to leaks in own
  packet buffer (RIOT-OS#12565)
* gnrc_ipv6: Multicast is not forwarded if routing node listens to the
  address (RIOT-OS#4527)
* gnrc_netif_pktq leaks memory (RIOT-OS#17924)
* gnrc_rpl: missing bounds checks in _parse_options (RIOT-OS#16085)
* gnrc_rpl: nib route not updated when topology / DODAG changes (RIOT-OS#17327)
* gnrc_rpl: old routes are not deleted (RIOT-OS#19423)
* gnrc_rpl: takes unusually long time to start routing packets (RIOT-OS#19147)
* gnrc_sock_udp: Possible Race condition on copy in application buffer (RIOT-OS#10389)
* gnrc_tcp: gnrc_tcp_recv() never generates -ECONNABORTED (RIOT-OS#17896)
* gomach: Resetting netif with cli doesn't return (RIOT-OS#10370)
* ieee802154_submac: IPv6 fragmentation broken (RIOT-OS#16998)
* LoRaWan node ISR stack overflowed (RIOT-OS#14962)
* LWIP TCP Communication Error (RIOT-OS#19676)
* lwip_sock_tcp / sock_async: received events before calling
  sock_accept() are lost due to race condition. (RIOT-OS#16303)
* Missing drop implementations in netdev_driver_t::recv (RIOT-OS#10410)
* Neighbor Discovery not working after router reboot when using SLAAC (RIOT-OS#11038)
* netdev_ieee802154: Mismatch between radio ll address and in memory
  address (RIOT-OS#10380)
* nrf52: Not able to add global or ULA address to interface (RIOT-OS#13280)
* nrfmin: communication not possible after multicast ping with no
  interval (RIOT-OS#11405)
* ping6 is failing when testing with cc2538dk (RIOT-OS#13997)
* pkg/tinydtls: auxiliary data API does not work for async sockets (RIOT-OS#16054)
* pkg/tinydtls: DTLS handshake does not work (RIOT-OS#19595)
* samr30 xpro doesn't seem to use its radio ok (RIOT-OS#12761)
* scan-build errors found during 2019.07 testing (RIOT-OS#11852)
* stale border router does not get replaced (RIOT-OS#12210)
* test/lwip: enabling both, IPv4 and IPv6, results in unexpected
  behavior (RIOT-OS#18097)
* tests/lwip: does not compile for IPv4 on 6LoWPAN-based boards. (RIOT-OS#17162)
* two nodes livelock sending neighbor solicitations back and forth
  between each other (RIOT-OS#16670)
* xbee: setting PAN ID sometimes fails (RIOT-OS#10338)

Timer related issues (7)
------------------------

* misc issues with tests/trickle (RIOT-OS#9052)
* MSP430: periph_timer clock config wrong (RIOT-OS#8251)
* periph/timer: `timer_set()` underflow safety check (tracking issue) (RIOT-OS#13072)
* periph_timer: systematic proportional error in timer_set (RIOT-OS#10545)
* saml21 system time vs rtc (RIOT-OS#10523)
* stm32_common/periph/rtc: current implementation broken/poor accuracy (RIOT-OS#8746)
* sys/newlib: gettimeofday() returns time since boot, not current wall
  time. (RIOT-OS#9187)

Drivers related issues (12)
---------------------------

* at86rf2xx: Simultaneous use of different transceiver types is not
  supported (RIOT-OS#4876)
* cpu/msp430: GPIO driver doesn't work properly (RIOT-OS#9419)
* driver/hts221: Temperature and Humidity readings incorrect (RIOT-OS#12445)
* examples/dtls-wolfssl not working on pba-d-01-kw2x (RIOT-OS#13527)
* fail to send data to can bus (RIOT-OS#12371)
* mdt_erase success, but vfs_format resets board (esp32-heltec-
  lora32-v2) (RIOT-OS#14506)
* periph/spi: Switching between CPOL=0,1 problems on Kinetis with
  software CS (RIOT-OS#6567)
* periph: GPIO drivers are not thread safe (RIOT-OS#4866)
* PWM: Single-phase initialization creates flicker (RIOT-OS#15121)
* STM32: SPI clock not returning to idle state and generating
  additional clock cycles (RIOT-OS#11104)
* TCP client  cannot  send read only data (RIOT-OS#16541)
* tests/periph_flashpage: unexpected behavior on nucleo-l4r5zi (RIOT-OS#17599)

Native related issues (4)
-------------------------

* examples/micropython: floating point exception while testing on
  native (RIOT-OS#15870)
* native getchar is blocking RIOT (RIOT-OS#16834)
* native not float safe (RIOT-OS#495)
* native: tlsf: early malloc will lead to a crash (RIOT-OS#5796)

Other platforms related issues (16)
-----------------------------------

* Failing tests on FE310 (Hifive1b) (RIOT-OS#13086)
* boards/hifive1: flashing issue (RIOT-OS#13104)
* cpu/sam0: flashpage write / read cycle produces different results
  depending on code layout in flash (RIOT-OS#14929)
* cpu/stm32f1: CPU hangs after wake-up from STOP power mode (RIOT-OS#13918)
* esp32-wroom-32: tests/netstats_l2 failing sometimes (RIOT-OS#14237)
* examples/gnrc_border_router: esp_wifi_init failed with return value
  257 on ESP32-C3 with nimble_rpble (RIOT-OS#19319)
* gcoap/esp8266: Stack overflow with gcoap example (RIOT-OS#13606)
* Interrupt callback function is instantly called on samd51 after
  setting it from within interrupt callback function (RIOT-OS#19861)
* MPU doesn't work on cortex-m0+ (RIOT-OS#14822)
* newlib-nano: Printf formatting does not work properly for some
  numeric types (RIOT-OS#1891)
* periph_timer: Test coverage & broken on STM32F767ZI (RIOT-OS#15072)
* riscv: ISR stack is too small for ENABLE_DEBUG in core files (RIOT-OS#16395)
* stm32152re: hardfault when DBGMCU_CR_DBG* bits are set and branch
  after __WFI() (RIOT-OS#14015)
* stm32f7: Large performance difference between stm32f746 and stm32f767 (RIOT-OS#14728)
* sys/riotboot/flashwrite: unaligned write when skipping
  `RIOTBOOT_MAGIC` on stm32wb (RIOT-OS#15917)

Build system related issues (7)
-------------------------------

* `buildtest` uses wrong build directory (RIOT-OS#9742)
* Build dependencies - processing order issues (RIOT-OS#9913)
* dist/tools/cppcheck/cppchck.sh: errors when running with Cppcheck
  1.89 (RIOT-OS#12771)
* EXTERNAL_MODULE_DIRS silently ignores non-existent entries (RIOT-OS#17696)
* make: ccache leads to differing binaries (RIOT-OS#14264)
* make: use of immediate value of variables before they have their
  final value (RIOT-OS#8913)
* missing build dependencies in the rust build (RIOT-OS#19714)

Other issues (67)
-----------------

* _NVIC_SystemReset stuck in infinite loop when calling pm_reboot
  through shell after flashing with J-Link (RIOT-OS#13044)
* `make term` no longer works with JLinkExe v6.94 (RIOT-OS#16022)
* at86rf215 stops receiving until sending a packet (RIOT-OS#19653)
* b-l072z-lrwan1: tests/ztimer_overhead: test failure (RIOT-OS#19224)
* backport_pr: Only works for when fork is in user (not in
  organization) (RIOT-OS#18486)
* benchmark_udp: hammering with low interval causes issues (RIOT-OS#16808)
* boards/esp32-wroom-32: tests/mtd_raw flakey (RIOT-OS#16130)
* Builds fail when different execstack options are around in objects (RIOT-OS#18522)
* Can't build relic with benchmarks or tests (RIOT-OS#12897)
* CC2538-CC2592EM has a very weak transmit power (RIOT-OS#17543)
* CC2538DK board docs: broken links (RIOT-OS#12889)
* cpp: Exception handling undefined (RIOT-OS#17523)
* cpu/stm32: some tests are failing on CM33 (l5, u5) (RIOT-OS#17439)
* doc/boards: information concerning access to RIOT shell (RIOT-OS#17453)
* doc/LOSTANDFOUND: not rendered as expected (RIOT-OS#17063)
* edbg: long lines flooded over serial become garbled (RIOT-OS#14548)
* examples / tests: LoRa tests fail on platforms that don't support
  LoRa (RIOT-OS#14520)
* examples/gcoap: client broken (RIOT-OS#19379)
* feather-m0: `make flash` reports "device unsupported" (RIOT-OS#17722)
* flashing issue on frdm-k64f (RIOT-OS#15903)
* frdm-k22f failing tests/periph_flashpage (RIOT-OS#17057)
* frdm-k22f fails tests/periph_timer (RIOT-OS#19543)
* Freeze into semtech_loramac_send call (pkg/semtech-loramac) (RIOT-OS#18790)
* gcoap: gcoap_req_send and related should return negative for errors (RIOT-OS#19393)
* gnrc_ipv6_nib: Neighbor Solicitation ping-pong (RIOT-OS#18164)
* I2C not working under RIOT with U8G2 pkg (RIOT-OS#16381)
* ieee802154_security: Nonce is reused after reboot (RIOT-OS#16844)
* kconfiglib.py choice override of menuconfig bug (RIOT-OS#19069)
* lwip: drivers/at86rf2xx/at86rf2xx_netdev.c invalid state during TCP
  disconnect (RIOT-OS#17209)
* lwip: invalid state transition on ieee802154_submac users (RIOT-OS#17208)
* Making the newlib thread-safe (RIOT-OS#4488)
* mcuboot: flashes but no output (RIOT-OS#17524)
* MTD is confusing (RIOT-OS#17663)
* nanocoap: incomplete response to /.well-known/core request (RIOT-OS#10731)
* Order of auto_init functions (RIOT-OS#13541)
* periph_rtt: rtt_set_alarm() blocks IRQ for 80 plus usec on STM32 (RIOT-OS#19520)
* pkg/tinydtls: Multiple issues (RIOT-OS#16108)
* Potential race condition in compile_and_test_for_board.py (RIOT-OS#12621)
* RIOT is saw-toothing in energy consumption (even when idling) (RIOT-OS#5009)
* riotboot/nrf52840dk: flashing slot1 with JLINK fails (RIOT-OS#14576)
* riotboot: ECC faults (eg. in STM32L5 or STM32WB) not handled
  gracefully (RIOT-OS#17874)
* rust-gcoap example is incompatible with littlefs2 (RIOT-OS#17817)
* Samr30/gpio: Erasing then write mux can generate spurious IRQ (RIOT-OS#19993)
* samr34-xpro: some tests failing (RIOT-OS#19223)
* sock_dtls: unable to send big messages (RIOT-OS#17996)
* spurious IRQs in `periph_timer` (RIOT-OS#18976)
* stdio_ethos: infinite shell loop (RIOT-OS#17972)
* stdio_tinyusb_cdc_acm hangs with picolibc (RIOT-OS#19277)
* STM32 Nucleo boards improperly clocked (RIOT-OS#19778)
* sys/riotboot: documentation issues (RIOT-OS#11243)
* tests/lwip target board for python test is hardcoded to native (RIOT-OS#6533)
* tests/periph_flashpage: failing on stm32l475ve (RIOT-OS#17280)
* tests/pkg/relic is failing on samr21-xpro when built using llvm (RIOT-OS#19903)
* tests/pkg_libhydrogen: test fails on master for the samr21-xpro with
  LLVM (RIOT-OS#15066)
* tests/pkg_libschc: Failing test_reassemble_success_ack_always (RIOT-OS#19445)
* tests/test_tools: test fails while testing on samr21-xpro/iotlab-m3 (RIOT-OS#15888)
* tests: broken with stdio_rtt if auto_init is disabled (RIOT-OS#13120)
* tests: some tests don't work with `newlib` lock functions. (RIOT-OS#12732)
* Types in `byteorder.h` need a cleanup (RIOT-OS#14737)
* USB identifiers with funny characters create mojibake (RIOT-OS#17776)
* usbus/msc: wrong error handling and behavior after usb reset (RIOT-OS#19478)
* Use of multiple CAN bus on compatible boards (RIOT-OS#14801)
* ztimer is incompatible with real-time requirements (RIOT-OS#18883)

There are 161 known issues in this release

Fixed Issues since the last release (2023.07)
=============================================

- at86rf215 stops receiving when sam0_eth is in use (RIOT-OS#19911)
- drivers/st7735: faulty driver initialization (RIOT-OS#19818)

2 fixed issues since last release (2023.07)

Acknowledgements
================
We would like to thank all companies that provided us with hardware for porting
and testing RIOT-OS. 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

Matrix and Forum
================
* Join the RIOT Matrix room at: #riot-os:matrix.org
* Join the RIOT Forum at: forum.riot-os.org

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.

2023.10-RC3

Toggle 2023.10-RC3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request RIOT-OS#20049 from MrKevinWeiss/backport/2023.10/n…

…ative_timer_bug_work_around

cpu/native: fix bug in periph_timer [backport 2023.10]

2023.10-RC2

Toggle 2023.10-RC2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge RIOT-OS#19988

19988: pkg/nanocbor: Update for fixed nanocbor_skip_simple() [backport 2023.10] r=MrKevinWeiss a=bergzand

# backport of RIOT-OS#19975 and RIOT-OS#19983

### Contribution description

Manually created the backport this time 😢 

Includes both RIOT-OS#19975 and RIOT-OS#19983 to include the nanocbor bug fix for the `nanocbor_skip_simple()` function

### Testing procedure

The usual nanocbor test in `tests/pkg/nanocbor`

### Issues/PRs references

None

Co-authored-by: Koen Zandberg <koen@bergzand.net>

2024.01-devel

Toggle 2024.01-devel's commit message
Development branch towards 2024.01 release

2023.10-RC1

Toggle 2023.10-RC1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge RIOT-OS#19972

19972: RFC: Support enabling/disabling lwIP netifs from gnrc_netif shell r=miri64 a=yarrick



Co-authored-by: Erik Ekman <eekman@google.com>

2023.07

Toggle 2023.07's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge RIOT-OS#19868

19868: release-notes.txt: add 2023.07 release notes [backport 2023.07] r=benpicco a=benpicco

# Backport of RIOT-OS#19857



Co-authored-by: Benjamin Valentin <benjamin.valentin@ml-pa.com>
Co-authored-by: Benjamin Valentin <benjamin.valentin@bht-berlin.de>