doc/releases/release-notes-2.7.rst
:orphan:
.. _zephyr_2.7:
Zephyr 2.7.0 ############
We are pleased to announce the release of Zephyr RTOS version 2.7.0 (LTS2).
Major enhancements since v2.6.0 include:
syscon) driver and emulatorAdditional Major enhancements since v1.14.0 (LTS1) include:
The following sections provide detailed lists of changes by component.
Security Vulnerability Related
The following CVEs are addressed by this release:
More detailed information can be found in: https://docs.zephyrproject.org/latest/security/vulnerabilities.html
Zephyr project bug tracker GHSA-289f-7mw3-2qf4 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-289f-7mw3-2qf4>_.Known issues
You can check all currently known issues by listing them using the GitHub
interface and listing all issues with the bug label <https://github.com/zephyrproject-rtos/zephyr/issues?q=is%3Aissue+is%3Aopen+label%3Abug>_.
API Changes
Deprecated in this release
:c:macro:DT_ENUM_TOKEN and :c:macro:DT_ENUM_UPPER_TOKEN,
were deprecated in favor of utilizing
:c:macro:DT_STRING_TOKEN and :c:macro:DT_STRING_UPPER_TOKEN
:c:macro:BT_CONN_ROLE_MASTER and :c:macro:BT_CONN_ROLE_SLAVE
have been deprecated in favor of
:c:macro:BT_CONN_ROLE_CENTRAL and :c:macro:BT_CONN_ROLE_PERIPHERAL
:c:macro:BT_LE_SCAN_OPT_FILTER_WHITELIST
has been deprecated in favor of
:c:macro:BT_LE_SCAN_OPT_FILTER_ACCEPT_LIST
The following whitelist functions have been deprecated:
:c:func:bt_le_whitelist_add
:c:func:bt_le_whitelist_rem
:c:func:bt_le_whitelist_clear
in favor of
:c:func:bt_le_filter_accept_list_add
:c:func:bt_le_filter_accept_list_remove
:c:func:bt_le_filter_accept_list_clear
Modified in this release
The following Bluetooth macros and structures in :file:hci.h have been
modified to align with the inclusive naming in the v5.3 specification:
BT_LE_FEAT_BIT_SLAVE_FEAT_REQ is now BT_LE_FEAT_BIT_PER_INIT_FEAT_XCHGBT_LE_FEAT_BIT_CIS_MASTER is now BT_LE_FEAT_BIT_CIS_CENTRALBT_LE_FEAT_BIT_CIS_SLAVE is now BT_LE_FEAT_BIT_CIS_PERIPHERALBT_FEAT_LE_SLAVE_FEATURE_XCHG is now BT_FEAT_LE_PER_INIT_FEAT_XCHGBT_FEAT_LE_CIS_MASTER is now BT_FEAT_LE_CIS_CENTRALBT_FEAT_LE_CIS_SLAVE is now BT_FEAT_LE_CIS_PERIPHERALBT_LE_STATES_SLAVE_CONN_ADV is now BT_LE_STATES_PER_CONN_ADVBT_HCI_OP_LE_READ_WL_SIZE is now BT_HCI_OP_LE_READ_FAL_SIZEbt_hci_rp_le_read_wl_size is now bt_hci_rp_le_read_fal_sizebt_hci_rp_le_read_wl_size::wl_size is now bt_hci_rp_le_read_fal_size::fal_sizeBT_HCI_OP_LE_CLEAR_WL is now BT_HCI_OP_LE_CLEAR_FALBT_HCI_OP_LE_ADD_DEV_TO_WL is now BT_HCI_OP_LE_REM_DEV_FROM_FALbt_hci_cp_le_add_dev_to_wl is now bt_hci_cp_le_add_dev_to_falBT_HCI_OP_LE_REM_DEV_FROM_WL is now BT_HCI_OP_LE_REM_DEV_FROM_FALbt_hci_cp_le_rem_dev_from_wl is now bt_hci_cp_le_rem_dev_from_falBT_HCI_ROLE_MASTER is now BT_HCI_ROLE_CENTRALBT_HCI_ROLE_SLAVE is now BT_HCI_ROLE_PERIPHERALBT_EVT_MASK_CL_SLAVE_BC_RX is now BT_EVT_MASK_CL_PER_BC_RXBT_EVT_MASK_CL_SLAVE_BC_TIMEOUT is now BT_EVT_MASK_CL_PER_BC_TIMEOUTBT_EVT_MASK_SLAVE_PAGE_RSP_TIMEOUT is now BT_EVT_MASK_PER_PAGE_RSP_TIMEOUTBT_EVT_MASK_CL_SLAVE_BC_CH_MAP_CHANGE is now BT_EVT_MASK_CL_PER_BC_CH_MAP_CHANGEm_* structure members are now c_*s_* structure members are now p_*The CONFIG_BT_PERIPHERAL_PREF_SLAVE_LATENCY Kconfig option is now
:kconfig:option:CONFIG_BT_PERIPHERAL_PREF_LATENCY
The CONFIG_BT_CTLR_SLAVE_FEAT_REQ_SUPPORT Kconfig option is now
:kconfig:option:CONFIG_BT_CTLR_PER_INIT_FEAT_XCHG_SUPPORT
The CONFIG_BT_CTLR_SLAVE_FEAT_REQ Kconfig option is now
:kconfig:option:CONFIG_BT_CTLR_PER_INIT_FEAT_XCHG
Removed APIs in this release
Removed support for the deprecated DEVICE_INIT and DEVICE_AND_API_INIT macros.
Removed support for the deprecated BUILD_ASSERT_MSG macro.
Removed support for the deprecated GET_ARG1, GET_ARG2 and GET_ARGS_LESS_1 macros.
Removed support for the deprecated Kconfig PRINTK64 option.
Removed support for the deprecated bt_set_id_addr function.
Removed support for the Kconfig USB option. Option USB_DEVICE_STACK
is sufficient to enable USB device support.
Removed CONFIG_OPENTHREAD_COPROCESSOR_SPINEL_ON_UART_ACM and
CONFIG_OPENTHREAD_COPROCESSOR_SPINEL_ON_UART_DEV_NAME Kconfig options
in favor of chosen node zephyr,ot-uart.
Removed CONFIG_BT_UART_ON_DEV_NAME Kconfig option
in favor of direct use of chosen node zephyr,bt-uart.
Removed CONFIG_BT_MONITOR_ON_DEV_NAME Kconfig option
in favor of direct use of chosen node zephyr,bt-mon-uart.
Removed CONFIG_MODEM_GSM_UART_NAME Kconfig option
in favor of direct use of chosen node zephyr,gsm-ppp.
Removed CONFIG_UART_MCUMGR_ON_DEV_NAME Kconfig option
in favor of direct use of chosen node zephyr,uart-mcumgr.
Removed CONFIG_UART_CONSOLE_ON_DEV_NAME Kconfig option
in favor of direct use of chosen node zephyr,console.
Removed CONFIG_UART_SHELL_ON_DEV_NAME Kconfig option
in favor of direct use of chosen node zephyr,shell-uart.
============================
Bluetooth
multiple to the :c:struct:bt_gatt_read_params - this
structure contains two members: handles, which was moved from
:c:struct:bt_gatt_read_params, and variable.Networking
in6_addr to net_addr type.Kernel
Architectures
ARC
ARM
AARCH32
AARCH64
RISC-V
x86
Bluetooth
Updated all APIs and internal implementation to be conformant with the new inclusive terminology in version 5.3 of the Bluetooth Core Specification
Audio
Direction Finding
Host
Mesh
Bluetooth LE split software Controller
HCI Driver
CONFIG_BT_*_ON_DEV_NAME Kconfig options, use Devicetree
insteadBoards & SoC Support
Added support for these SoC series:
Removed support for these SoC series:
Made these changes in other SoC series:
clock-frequency support from devicetreeChanges for ARC boards:
Changes for ARM boards:
Added support for these ARM boards:
Added support for these ARM64 boards:
Removed support for these ARM boards:
Removed support for these X86 boards:
Made these changes in other boards:
Added support for these following shields:
Drivers and Sensors
ADC
Audio
Bluetooth
CAN
Clock Control
Console
Counter
Crypto
DAC
Disk
Display
DMA
EEPROM
Entropy
ESPI
Ethernet
Flash
GPIO
Hardware Info
I2C
I2S
IEEE 802.15.4
IPM
Interrupt Controller
LED
LoRa
MEMC
Modem
PCI/PCIe
Pinmux
PWM
Sensor
_dt_spec.Serial
SPI
Timer
USB
Watchdog
WiFi
Networking
802.15.4 L2:
CoAP:
user_data field to the :c:struct:coap_packet structure.coap_packet_get_payload function.coap_packet_get_payload function to minimize number
of RNG calls.coap_server sample.coap_server sample (on notification
timeout).DHCPv4:
DNS:
DNS-SD:
_services._dns_sd._udp.local)HTTP:
zsock_* API, to improve compatibility with
various POSIX configurations.HTTP_DATA_FINAL notification was triggered even for
intermediate response fragments.IPv6:
LwM2M:
lwm2m_rd_client
module.Misc:
big_http_download sample.net_pkt_remove_tail function.
Added IEEE 802.15.4 security-related flags to the :c:struct:net_pkt
structure.net nbr shell command.MQTT:
mqtt_abort, where the function could return without
releasing a lock.OpenThread:
9ea34d1e2053b6b2a80e1d46b65a6aee99fc504a.
Added several new Kconfig options to align with new OpenThread
configurations.otPlatAssertFail platform function.Socket:
zsock_select function.zsock_select into a syscall.poll events were not signalled correctly
for socketpair sockets.zsock_close.TCP:
unacked_len could be set to a negative value.tcp_send_data.TLS:
sendmsg implementation for larger payloads.POLLHUP notification.WebSocket:
poll implementation for WebSocket, which did not work
correctly with offloaded sockets.ioctl implementation for WebSocket, which did not work
correctly with offloaded sockets.USB
CONFIG_USB and introduced Kconfig option
CONFIG_USB_DEVICE_DRIVER to enable USB device controller drivers,
which is selected when option CONFIG_USB_DEVICE_STACK is enabled.zephyr_udc0 nodelabel to all boards with USB support to allow
generic USB device support samples to be build.CONFIG_*_ON_DEV_NAME options were removed and
applications revised. See :ref:usb_device_cdc_acm for more information.Build and Infrastructure
Devicetree API
New "for-each" macros which work like existing APIs, but take variable
numbers of arguments: :c:macro:DT_FOREACH_CHILD_VARGS,
:c:macro:DT_FOREACH_CHILD_STATUS_OKAY_VARGS,
:c:macro:DT_FOREACH_PROP_ELEM_VARGS,
:c:macro:DT_INST_FOREACH_CHILD_VARGS,
:c:macro:DT_INST_FOREACH_STATUS_OKAY_VARGS,
:c:macro:DT_INST_FOREACH_PROP_ELEM_VARGS
Other new "for-each" macros: :c:macro:DT_FOREACH_STATUS_OKAY,
:c:macro:DT_FOREACH_STATUS_OKAY_VARGS
New macros for converting strings to C tokens: :c:macro:DT_STRING_TOKEN,
:c:macro:DT_STRING_UPPER_TOKEN
New :ref:devicetree-pinctrl-api helper macros
Devicetree tooling
Errors are now generated when invalid YAML files are discovered while
searching for bindings. See :ref:dt-where-bindings-are-located for
information on the search path.
File names ending in .yml are now considered YAML files when searching
for bindings.
Errors are now generated if invalid node names are used. For example, the
node name node? now generates an error message ending in node?: Bad character '?' in node name. The valid node names are documented in
"2.2.2 Node Names" of the Devicetree specification v0.3.
Warnings are now generated if a :ref:compatible property <dt-important-props> in the vendor,device format uses an unknown
vendor prefix. This warning does not apply to the root node.
Known vendor prefixes are defined in
:file:dts/bindings/vendor-prefixes.txt files, which may appear in any
directory in :ref:DTS_ROOT <dts_root>.
These may be upgraded to errors using the edtlib Python APIs; Zephyr's CI now generates such errors.
Devicetree bindings
Various bindings had incorrect vendor prefixes in their :ref:compatible <dt-important-props> properties; the following changes were made to fix
these.
.. list-table:: :header-rows: 1
nios,i2caltr,nios2-i2ccadence,tensilica-xtensa-lx4cdns,tensilica-xtensa-lx4cadence,tensilica-xtensa-lx6cdns,tensilica-xtensa-lx6colorway,lpd8803greeled,lpd8803colorway,lpd8806greeled,lpd8806grove,lightseeed,grove-lightgrove,temperatureseeed,grove-temperaturemax,max30101maxim,max30101ublox,sara-r4u-blox,sara-r4xtensa,core-intccdns,xtensa-core-intcvexriscv,intc0vexriscv-intc0Out of tree users of these bindings will need to update their devicetrees.
You can support multiple versions of Zephyr with one devicetree by including both the old and new values in your nodes' compatible properties, like this example for the LPD8803::
my-led-strip@0 {
compatible = "colorway,lpd8803", "greeled,lpd8803";
...
};
Other new bindings in alphabetical order: :dtcompatible:andestech,atcgpio100,
:dtcompatible:arm,gic-v3-its, :dtcompatible:atmel,sam0-gmac,
:dtcompatible:atmel,sam0-pinctrl, :dtcompatible:atmel,sam-dac,
:dtcompatible:atmel,sam-mdio, :dtcompatible:atmel,sam-usbc,
:dtcompatible:cdns,tensilica-xtensa-lx7,
:dtcompatible:espressif,esp32c3-uart,
:dtcompatible:espressif,esp32-intc,
:dtcompatible:espressif,esp32s2-uart, :dtcompatible:ethernet-phy,
:dtcompatible:fcs,fxl6408, :dtcompatible:ilitek,ili9341,
:dtcompatible:ite,it8xxx2-bbram, :dtcompatible:ite,it8xxx2-kscan,
:dtcompatible:ite,it8xxx2-pinctrl-conf, :dtcompatible:ite,it8xxx2-pwm,
:dtcompatible:ite,it8xxx2-pwmprs, :dtcompatible:ite,it8xxx2-watchdog,
:dtcompatible:lm75, :dtcompatible:lm77, :dtcompatible:meas,ms5607,
:dtcompatible:microchip,ksz8863, :dtcompatible:microchip,mcp7940n,
:dtcompatible:microchip,xec-adc-v2, :dtcompatible:microchip,xec-ecia,
:dtcompatible:microchip,xec-ecia-girq,
:dtcompatible:microchip,xec-gpio-v2,
:dtcompatible:microchip,xec-i2c-v2, :dtcompatible:microchip,xec-pcr,
:dtcompatible:microchip,xec-uart, :dtcompatible:nuvoton,npcx-bbram,
:dtcompatible:nuvoton,npcx-booter-variant,
:dtcompatible:nuvoton,npcx-ps2-channel,
:dtcompatible:nuvoton,npcx-ps2-ctrl, :dtcompatible:nuvoton,npcx-soc-id,
:dtcompatible:nxp,imx-ccm-rev2, :dtcompatible:nxp,lpc-ctimer,
:dtcompatible:nxp,lpc-uid, :dtcompatible:nxp,mcux-usbd,
:dtcompatible:nxp,sctimer-pwm, :dtcompatible:ovti,ov2640,
:dtcompatible:renesas,rcar-can, :dtcompatible:renesas,rcar-i2c,
:dtcompatible:reserved-memory, :dtcompatible:riscv,sifive-e24,
:dtcompatible:sensirion,sgp40, :dtcompatible:sensirion,sht4x,
:dtcompatible:sensirion,shtcx, :dtcompatible:silabs,si7055,
:dtcompatible:silabs,si7210, :dtcompatible:snps,creg-gpio,
:dtcompatible:st,i3g4250d, :dtcompatible:st,stm32-aes,
:dtcompatible:st,stm32-dma, :dtcompatible:st,stm32-dma-v2bis,
:dtcompatible:st,stm32-hsem-mailbox, :dtcompatible:st,stm32-nv-flash,
:dtcompatible:st,stm32-spi-subghz,
:dtcompatible:st,stm32u5-flash-controller,
:dtcompatible:st,stm32u5-msi-clock, :dtcompatible:st,stm32u5-pll-clock,
:dtcompatible:st,stm32u5-rcc, :dtcompatible:st,stm32wl-hse-clock,
:dtcompatible:st,stm32wl-subghz-radio, :dtcompatible:st,stmpe1600,
:dtcompatible:syscon, :dtcompatible:telink,b91,
:dtcompatible:telink,b91-flash-controller,
:dtcompatible:telink,b91-gpio, :dtcompatible:telink,b91-i2c,
:dtcompatible:telink,b91-pinmux, :dtcompatible:telink,b91-power,
:dtcompatible:telink,b91-pwm, :dtcompatible:telink,b91-spi,
:dtcompatible:telink,b91-trng, :dtcompatible:telink,b91-uart,
:dtcompatible:telink,b91-zb, :dtcompatible:ti,hdc2010,
:dtcompatible:ti,hdc2021, :dtcompatible:ti,hdc2022,
:dtcompatible:ti,hdc2080, :dtcompatible:ti,hdc20xx,
:dtcompatible:ti,ina219, :dtcompatible:ti,ina23x,
:dtcompatible:ti,tca9538, :dtcompatible:ti,tca9546a,
:dtcompatible:ti,tlc59108,
:dtcompatible:xlnx,gem, :dtcompatible:zephyr,bbram-emul,
:dtcompatible:zephyr,cdc-acm-uart, :dtcompatible:zephyr,gsm-ppp,
:dtcompatible:zephyr,native-posix-udc
West (extensions)
CONFIG_DEBUG_THREAD_INFO set to y
in :ref:kconfig. This applies to west debug, west debugserver,
and west attach. OpenOCD version later than 0.11.0 must be installed
on the host system.Libraries / Subsystems
Disk
Management
CMSIS subsystem
Power management
The APIs to set/clear/check if devices are busy from a power management perspective have been moved to the PM subsystem. Their naming and signature has also been adjusted to follow common conventions. Below you can find the equivalence list.
device_busy_set -> pm_device_busy_setdevice_busy_clear -> pm_device_busy_cleardevice_busy_check -> pm_device_is_busydevice_any_busy_check -> pm_device_is_any_busyThe device power management callback (pm_device_control_callback_t) has
been largely simplified to work based on actions, resulting in simpler and
more natural implementations. This principle is also used by other OSes like
the Linux Kernel. As a result, the callback argument list has been reduced
to the device instance and an action (e.g. PM_DEVICE_ACTION_RESUME).
Other improvements include specification of error codes, removal of some
unused/unclear states, or guarantees such as avoid calling a device for
suspend/resume if it is already at the right state. All these changes
together have allowed simplifying multiple device power management callback
implementations.
Introduced a new API to allow devices capable of wake up the system register themselves was wake up sources. This permits applications to select the most appropriate way to wake up the system when it is suspended. Devices marked as wake up source are not suspended by the kernel when the system is idle. It is possible to declare a device wake up capable direct in devicetree like this example::
&gpio0 {
compatible = "zephyr,gpio-emul";
gpio-controller;
wakeup-source;
};
Removed PM_DEVICE_STATE_FORCE_SUSPEND device power state.because it
is an action and not a state.
Removed PM_DEVICE_STATE_RESUMING and PM_DEVICE_STATE_SUSPENDING.
They were transitional states and only used in device runtime. Now the
subsystem is using device flag to keep track of a transition.
Implement constraint API as weak symbols so applications or platform can override them. Platforms can have their own way to set/release constraints in their drivers that are not part of Zephyr code base.
Logging
MODBUS
Random
Shell
Storage
Task Watchdog
Tracing
Debug
OS
HALs
Trusted Firmware-m
Documentation
:kconfig:option: Sphinx role.
Previous to this change, :option: was used for this purpose.@config{} has been deprecated in favor of @kconfig{}.Tests and Samples
Issue Related Items
These GitHub issues were addressed since the previous 2.6.0 tagged release:
39443 - Be more inclusive39419 - STM32WL55 not found st/wl/stm32wl55jcix-pinctrl.dtsi39413 - warnings when using newlibc and threads39409 - runners: canopen: program download fails with slow flash access and/or congested CAN nets39389 - http_get, big_http_download samples fails to build39388 - GSM Modem sample fails to build39378 - Garbage IQ Data Reports are generated if some check in hci_df_prepare_connectionless_iq_report fails39294 - noticing stm32 clock domain naming changes39291 - Bluetooth: Periodic advertising39284 - mdns + dns_sd: fix regression that breaks ptr queries39281 - Undefined references to k_thread_abort related tracing routines39270 - example-application CI build fails39263 - Bluetooth: controller: DF: wrong handling of max_cte_count39260 - [backport v2.7-branch] backport of #38292 failed39240 - ARC Kconfig allows so select IRQ configuration which isn't supported in SW39206 - lwm2m: send_attempts field does not seem to be used?39205 - drivers: wifi: esp_at: cannot connect to open (unsecure) WiFi networks39195 - USB: netusb: example echo_server not working as expected39190 - tests/subsys/logging/log_core_additional/logging.add.log2 fails39188 - tests/bluetooth/mesh/bluetooth.mesh.ext_adv fails39185 - tests/subsys/logging/log_core_additional/logging.add.user fails on several platforms39180 - samples/subsys/mgmt/osdp/peripheral_device & samples/subsys/mgmt/osdp/control_panel fail to build39170 - Can not run correctly on NXP MIMXRT1061 CVL5A.39135 - samples/compression/lz4 build failed (lz4.h: No such file or directory)39132 - subsys/net/ip/tcp2: Missing feature to decrease Receive Window size sent in the ACK messge39123 - ztest: Broken on NRF52840 Platform39115 - sensor: fdc2x1x: warnings and compilation errors when PM_DEVICE is used39086 - CMake warning during build - depracated roule CMP007939085 - Ordering of device_map() breaks PCIe config space mapping on ARM6439075 - IPv6 address not set on loopback interface39051 - Zephyr was unable to find the toolchain. Is the environment misconfigured?39036 - Multicast packet forwarding not working for the coap_server sample and Openthread39022 - [backport v2.7-branch] backport of #38834 failed39011 - Bluetooth: Mesh: Model extensions walk stops before last model39009 - Nordic PWM causing lock up due to infinte loop39008 - tests: logging.add.user: build failure on STM32H7 targets38999 - [backport v2.7-branch] backport of #38407 failed38996 - There is no way to leave a ipv6 multicast group38994 - ARP: Replies are sent to multicast MAC address rather than senders MAC address.38970 - LWM2M Client Sample with DTLS enabled fail to connect38966 - Please add STM32F412VX38961 - tests: kernel: sched: schedule_api: instable on disco_l475_iot138959 - ITE RISCV I2C driver returning positive values for error instead of negative values38943 - west: update hal_espressif failure38938 - Bluetooth tester application should be able return L2CAP ECFC credits on demand38930 - Low Power mode not functional on nucleo_l073rz38924 - twister: cmake: Misleading error in Twister when sdk-zephyr 0.13.1 not used38904 - [backport v2.7-branch] backport of #38860 failed38902 - i2c_nrfx_twim: Error 0x0BAE0002 if sensor is set in trigger mode and reset with nrf device38899 - There is no valid date setting function in the RTC driver of the LL Library of STM3238893 - g0b1re + spi_flash_at45 + flash_shell: First write always fails with CONFIG_PM_DEVICE38886 - devicetree/memory.h probably should not exist as-is38877 - Running the zephyr elf natively on an arm a53 machine (ThunderX2) with KVM emulation38870 - stm32f1: Button callback not fired38853 - Bluetooth: host: bt_unpair failed because function [bt_conn_set_state] wont work as expected38849 - drivers: i2c: nrf: i2c error with burst write38829 - net_buf issue leads to unwanted elem free38826 - tests/lib/cmsis_dsp: malloc failed on 128K SRAM targets38818 - driver display display_st7789v.c build error38815 - kernel/mem_domain: Remove dead case in check_add_partition()38807 - stm32: Missing header in power.c files38804 - tests\kernel\threads\thread_stack test fail with ARC38799 - BLE central_ht only receives 7 notifications38796 - Failure building the zephyr\tests\subsys\cpp\libcxx project38791 - Example code_relocation not compiling.38790 - SD FatFS Sample Build Failure38784 - stm32: pm: Debug mode not functional on G038782 - CONFIG_BT_CTLR_DATA_LENGTH_MAX=250 causes pairing compatibility issues with many devices38769 - mqtt: the size of a mqtt payload is limited38765 - samples: create an OLED example38764 - CBPRINTF_FP_SUPPORT does not work after NEWLIB_LIBC enabled38761 - Does zephyr_library_property defines -DTRUE in command-line?38756 - Twister: missing testcases with error in report38745 - Bluetooth when configured for extended advertising does not limit advertisement packet size if a non-extended avertisement is used38737 - drivers: syscon: missing implementation38735 - nucleo_wb55rg: Flash space left to M0 binary is not sufficient anymore38731 - test-ci: ptp_clock_test : test failure on frdm_k64f platform38727 - [RFC] Add hal_gigadevice to support GigaDevice SoC Vendor38716 - modem: HL7800: does not work with IPv638702 - Coap server not properly removing observers38701 - Observable resource of coap server seems to not support a restart of an observer38700 - Observable resource of coap server seems to not support 2 observers simultaneously38698 - stm32f4_disco: Socket CAN sample not working38697 - The coap_server sample is missing the actual send in the retransmit routine38694 - Disabling NET_CONFIG_AUTO_INIT does not require calling net_config_init() manually in application as mentioned in Zephyr Network Configuration Library documentation38692 - samples/tfm_integration: Compilation fails ("unexpected keyword argument 'rom_fixed'")38691 - MPU fault with mcumgr bluetooth FOTA started whilst existing FOTA is in progress38690 - Wrong initialisation priority on different display drivers (eg. ST7735r) cause exception when using lvgl.38688 - bt_gatt_unsubscribe does not remove subscription from internal list/returning BT_GATT_ITER_STOP causes bt_gatt_subscribe to return -ENOMEM / -1238675 - DTS binding create devicetree_unfixed.h build error at v2.7.038673 - DNS-SD library does not support _services._dns-sd._udp.local meta-query for service enumeration38668 - ESP32‘s I2S38667 - ST LSM6DSO polling mode does not work on nRF52dk_nrf5283238655 - Failing Tests for Regulator API38653 - drivers: modem: gsm_ppp: Add support for Quectel modems38646 - SIMD Rounding bug while running Assembly addps instruction on Zephyr38641 - Arm v8-M '_ns' renaming was applied inconsistently38635 - USDHC driver broken on RT10XX after 387e6a676f86c00d1f9ef018e4b2480e0bcad3c8 commit38622 - subsys/usb: CONFIG_USB_DEVICE_STACK resulted in 10kb increase in firmware size38621 - Drivers: spi: stm32: Transceive lock forever38620 - STM32 uart driver prevent system to go to deep sleep38617 - HL7800 PSM not working as intended38613 - BLE connection parameters updated with inconsistent values38612 - Fault with assertions enabled prevents detailed output because of ISR() assertion check in shell function38602 - modem gsm38601 - nucleo_f103rb: samples/posix/eventfd/ failed since "retargetable locking" addition38593 - using RTT console to print along with newlib C library in Zephyr38591 - nucleo_f091rc: Linking issue since "align __data_ram/rom_start/end linker" (65a2de84a9d5c535167951bf1cf610c4f7967ea5)38586 - olimexino_stm32: "no DEVICE_HANDLE_ENDS inserted" builld issue (samples/subsys/usb/audio/headphones_microphone)38581 - tests-ci : kernel: scheduler: multiq test failed38582 - tests-ci : kernel: scheduler: test failed38578 - STM32L0X ADC hangs38572 - Builds with macOS SDK are failing38571 - bug: drivers: ethernet: build as static library breaks frdm_k64f gptp sample application38563 - ISO broadcast cannot send with callback if CONFIG_BT_CONN=n38560 - log v2 with 64-bit integers and threads causes invalid 64-bit value output38559 - Shell log backend may hang on qemu_x86_6438558 - CMake warning: CMP007938554 - tests-ci : kernel: scheduler: test failed38552 - stm32: g0b1: garbage output in log and suspected hard fault when configuring modem38536 - samples: tests: display: Sample for display.ft800 causes end in timeout38535 - drivers: modem: bg9x: Kconfig values compiled into autoconf.h even if it isn't being used38534 - lwm2m: add api to inspect observation state of resource/object38532 - samples: audio: tests: Twister fails on samples/drivers/audio/dmic38527 - lwm2m: re-register instead of removing observer on COAP reset answer to notification38520 - Bluetooth:Host:Scan: "bt_le_per_adv_list_add" function doesn't work38519 - stm32: g0b1re: Log/Shell subsys with serial uart buggy after #3843238516 - subsys: net: ip: packet_socket: always returning of NET_CONTINUE caused access to unreferred pkt and causing a crash/segmentation fault38514 - mqtt azure sample failing with net_tcp "is waiting on connect semaphore"38512 - stm32f7: CAN: STM32F645VE CAN signal seems upside down.38500 - tests/kernel/device/kernel.device.pm fails to build on TI platforms38498 - net: ipv6: nbr_lock not initialized with CONFIG_NET_IPV6_ND=n38480 - Improve samples documentation38479 - "west flash" command exiting with error38477 - json: JSON Library Orphaned, Request to Become a Maintainer38474 - command exited with status 63: nrfjprog --ids38463 - check_compliance gives very many Kconfig warnings38452 - Some STM32 series require CONFIG_PM_DEVICE if CONFIG_PM=y38442 - test-ci: can: twr_ke18f: all can driver test fails with BUS Fault38438 - test-ci: test_flash_map:twr_ke18f: test failure38437 - stm32: g0b1re: Serial UART timing issue after MCU entered deep sleep38433 - gpio_pin_set not working on STM32 with CONFIG_PM_DEVICE_RUNTIME38428 - http_client response callback always reports final_data == HTTP_DATA_FINAL38427 - mimxrt1050_evk and mimxrt1020_evk boards fail to boot some sample applications38421 - HardFault regression detected on Cortex-M0+ following Cortex-R introduction38418 - twister: Remove toolchain-depandat filter for native_posix38417 - Add support for WeAct-F401CC board38414 - Build of http client fails if CONFIG_POSIX_API=y38405 - samples/philosophers/sample.kernel.philosopher.stacks fails on xtensa38403 - Cleanup No SOURCES given to Zephyr library warnings38402 - module: MCUboot module missing fixes available upstream38401 - Builds fail due to a proxy error by launchpadlibrarian38400 - mec15xxevb_assy6853: arm_ramfunc and arm_sw_vector_relay tests timeout after the build38398 - DT_N_INST error for TMP116 sample38396 - RISC-V privilege SoC initialisation code skips the __reset vector38382 - stm32 uart finishes Tx before going to PM38365 - drivers: gsm_ppp: gsm_ppp_stop fails to lock tx_sem after some time38362 - soc: ti cc13x2-cc26x2: PM standby + radio interaction regression38354 - stm32: stm32f10x JTAG realated gpio repmap didn't works38351 - Custom radio protocol38349 - XCC compilation fails on Intel cAVS platforms38348 - Bluetooth: Switch to inclusive terminology from the 5.3 specification38340 - Bluetooth:DirectionFinding: Disabling the MPU causes some compilation errors38332 - stm32g0: power hooks should be define as weak38323 - Can not generate code coverage report by running samples/subsys/tracing38316 - Synchronize multiple DF TX devices in the DF Connectionless RX Example "Periodic Advertising list"38309 - ARC context switch to interrupted thread busted with CONFIG_ARC_FIRQ=y and CONFIG_NUM_IRQ_PRIO_LEVELS=138303 - The current BabbleSim tests build system based on bash scripts hides warnings38290 - net_buf_add_mem() hard-faults when adding buffer from external SDRAM38279 - Bluetooth: Controller: assert LL_ASSERT(!radio_is_ready()) in lll_conn.c38277 - soc: stm32h7: Fails to boot with LDO power supply, if soc has SMPS support.38276 - LwM2M: RD Client: Wrong state if registration fails38273 - Support UART4 on STM32F303Xe38272 - "west flash" stopped working38271 - Expose emulator_get_binding function38264 - Modbus over RS485 on samd21g18a re-gpios turning on 1 byte too early38259 - subsys/shell: [JJ escape codes in logs after disabling colors38258 - newlib: first malloc call may fail on Xtensa depending on image size38246 - samples: drivers: flash_shell: fails on arduino_due due to compilation issue38245 - board: bl654_usb project: samples/basic/blinky does not blink LED38240 - Connected ISO does not disconnect gracefully38237 - [backport v2.6-branch] backport of #37479 failed38235 - Please add stm32h723Xe.dtsi to dts/arm/st/h7/38234 - Newlib retargetable lock init fails on qemu_xtensa38233 - Build newlib function read() and write() failed when enable userspace38219 - kernel: Z_MEM_SLAB_INITIALIZER MACRO not compatible with C++38216 - nxp_adsp_imx8 fails to build a number of tests38214 - xtensa builds fail in CI due to running out of ram to link38207 - Use of unaligned noinit data hangs qemu_arc_hs38202 - mbedtls and littlefs on a STM32L438197 - Invalid NULL check for iso in bt_iso_connected38196 - net nbr command might crash38191 - Unable to connect multiple MQTT clients38186 - i.MX RT10xx boards fail to initialize when Ethernet is enabled38181 - tests/drivers/uart/uart_basic_api/drivers.uart.cdc_acm fails to build38177 - LORA Module crashes SHT3XD sensor.38173 - STM32WB: Low power modes entry blocked by C2 when CONFIG_BLE=n38172 - modem_context_sprint_ip_addr returns pointer to stack array38170 - Shell argument in second position containing a question mark is ignored38168 - aarch32: flags value collision between base IRQ layer and GIC interrupt controller driver38162 - Upgrade to 2.6 GPIO device_get_binding("GPIO_0") now returns null38154 - Error building example i2c_fujitsu_fram38153 - Zephyr Native POSIX select() implementation too frequent wakeup on pure timeout based use38145 - [backport v2.6-branch] backport of #37787 failed38144 - [backport v2.6-branch] backport of #37787 failed38141 - Wrong output from printk() with CONFIG_CBPRINTF_NANO=y38138 - [Coverity CID: 239554] Out-of-bounds read in /zephyr/include/generated/syscalls/log_msg2.h (Generated Code)38137 - [Coverity CID: 239555] Unchecked return value in subsys/mgmt/hawkbit/hawkbit.c38136 - [Coverity CID: 239557] Out-of-bounds read in /zephyr/include/generated/syscalls/kernel.h (Generated Code)38135 - [Coverity CID: 239560] Out-of-bounds access in subsys/modbus/modbus_core.c38134 - [Coverity CID: 239563] Logically dead code in subsys/bluetooth/host/id.c38133 - [Coverity CID: 239564] Side effect in assertion in subsys/bluetooth/controller/ll_sw/nordic/lll/lll.c38132 - [Coverity CID: 239565] Unchecked return value in drivers/sensor/adxl372/adxl372_trigger.c38131 - [Coverity CID: 239568] Out-of-bounds access in subsys/modbus/modbus_core.c38130 - [Coverity CID: 239569] Out-of-bounds access in subsys/bluetooth/host/id.c38129 - [Coverity CID: 239572] Out-of-bounds read in /zephyr/include/generated/syscalls/kernel.h (Generated Code)38127 - [Coverity CID: 239579] Logically dead code in drivers/flash/nrf_qspi_nor.c38126 - [Coverity CID: 239581] Out-of-bounds access in subsys/modbus/modbus_core.c38125 - [Coverity CID: 239582] Unchecked return value in drivers/display/ssd1306.c38124 - [Coverity CID: 239583] Side effect in assertion in subsys/bluetooth/controller/ll_sw/nordic/lll/lll.c38123 - [Coverity CID: 239584] Improper use of negative value in subsys/logging/log_msg2.c38122 - [Coverity CID: 239585] Side effect in assertion in subsys/bluetooth/controller/ll_sw/nordic/lll/lll.c38121 - [Coverity CID: 239586] Side effect in assertion in subsys/bluetooth/controller/ll_sw/nordic/lll/lll.c38120 - [Coverity CID: 239588] Unchecked return value in subsys/bluetooth/host/id.c38119 - [Coverity CID: 239592] Dereference before null check in subsys/ipc/rpmsg_multi_instance/rpmsg_multi_instance.c38118 - [Coverity CID: 239597] Explicit null dereferenced in tests/net/context/src/main.c38117 - [Coverity CID: 239598] Unchecked return value in drivers/sensor/adxl362/adxl362_trigger.c38116 - [Coverity CID: 239601] Untrusted loop bound in subsys/bluetooth/host/sdp.c38115 - [Coverity CID: 239605] Logically dead code in drivers/flash/nrf_qspi_nor.c38114 - [Coverity CID: 239607] Missing break in switch in subsys/usb/class/dfu/usb_dfu.c38113 - [Coverity CID: 239609] Out-of-bounds access in subsys/random/rand32_ctr_drbg.c38112 - [Coverity CID: 239612] Out-of-bounds read in /zephyr/include/generated/syscalls/log_ctrl.h (Generated Code)38111 - [Coverity CID: 239615] Out-of-bounds access in subsys/net/lib/sockets/sockets_tls.c38110 - [Coverity CID: 239619] Out-of-bounds access in subsys/net/lib/sockets/sockets_tls.c38109 - [Coverity CID: 239623] Out-of-bounds access in subsys/net/lib/sockets/sockets_tls.c38108 - nxp: usb driver build failure due to d92d1f162af3ba24963f1026fc0a304f1a44d1f338104 - kheap buffer own section attribute causing memory overflow in ESP3238101 - bt_le_adv_update_data() assertion fail38093 - preempt_cnt not reset in each test case in tests/lib/ringbuffer/libraries.data_structures38090 - LPS22HH: int32_t overflow in pressure calculations38082 - Hawkbit (http request) and MQTT can't seem to work together38078 - RT6XX I2S test fails after d92d1f162af3ba24963f1026fc0a304f1a44d1f338069 - stm32h747i_disco M4 not working following merge of 9fa5437447712eece9c88e728ac05ac10fb01c4a38065 - Bluetooth: Direction Finding: Compiler warning when included in other header files38059 - automount configuration in nrf52840dk_nrf52840.overlay causes error: mount point already exists!! in subsys/fs/littlefs sample38054 - Bluetooth: host: Local Host terminated but send host number of completed Packed38047 - twister: The --board-root parameter doesn't appear to work38046 - twister: The --device-serial only works at 115200 baud38044 - tests: newlib: Scenarios from tests/lib/newlib/thread_safety fail on nrf9160dk_nrf9160_ns38031 - STM32WB - Problem with data reception on LPUART when PM and LPTIM are enabled38026 - boards: bl654_usb: does not support samples/bluetooth/hci_uart38022 - thread: k_float_enable() API can't build on x86_64 platforms, fix that API and macro documentation38019 - nsim_sem_mpu_stack_guard board can't run38017 - [Coverity CID: 237063] Untrusted value as argument in tests/net/lib/coap/src/main.c38016 - [Coverity CID: 238375] Uninitialized pointer read in subsys/bluetooth/mesh/shell.c38015 - [Coverity CID: 237072] Uninitialized pointer read in subsys/bluetooth/controller/ll_sw/ull_adv_aux.c38014 - [Coverity CID: 237071] Unexpected control flow in subsys/bluetooth/host/keys.c38013 - [Coverity CID: 237070] Unchecked return value in subsys/bluetooth/shell/gatt.c38012 - [Coverity CID: 236654] Unchecked return value in subsys/bluetooth/host/gatt.c38011 - [Coverity CID: 236653] Unchecked return value in drivers/sensor/bmi160/bmi160_trigger.c38010 - [Coverity CID: 236652] Unchecked return value in drivers/sensor/fxas21002/fxas21002_trigger.c38009 - [Coverity CID: 236651] Unchecked return value in drivers/sensor/bmg160/bmg160_trigger.c38008 - [Coverity CID: 236650] Unchecked return value in drivers/sensor/fxos8700/fxos8700_trigger.c38007 - [Coverity CID: 236649] Unchecked return value in drivers/sensor/adt7420/adt7420_trigger.c38006 - [Coverity CID: 236648] Unchecked return value in drivers/sensor/sx9500/sx9500_trigger.c38005 - [Coverity CID: 236647] Unchecked return value in drivers/sensor/bmp388/bmp388_trigger.c38004 - [Coverity CID: 238360] Result is not floating-point in drivers/sensor/sgp40/sgp40.c38003 - [Coverity CID: 238343] Result is not floating-point in drivers/sensor/sgp40/sgp40.c38002 - [Coverity CID: 237060] Out-of-bounds access in subsys/bluetooth/host/gatt.c38001 - [Coverity CID: 238371] Negative array index read in tests/lib/cbprintf_package/src/test.inc38000 - [Coverity CID: 238347] Negative array index read in tests/lib/cbprintf_package/src/test.inc37999 - [Coverity CID: 238383] Logically dead code in tests/bluetooth/tester/src/mesh.c37998 - [Coverity CID: 238381] Logically dead code in tests/bluetooth/tester/src/mesh.c37997 - [Coverity CID: 238380] Logically dead code in tests/bluetooth/tester/src/mesh.c37996 - [Coverity CID: 238379] Logically dead code in tests/bluetooth/tester/src/mesh.c37995 - [Coverity CID: 238378] Logically dead code in tests/bluetooth/tester/src/mesh.c37994 - [Coverity CID: 238377] Logically dead code in tests/bluetooth/tester/src/mesh.c37993 - [Coverity CID: 238376] Logically dead code in tests/bluetooth/tester/src/mesh.c37992 - [Coverity CID: 238374] Logically dead code in tests/bluetooth/tester/src/mesh.c37991 - [Coverity CID: 238373] Logically dead code in tests/bluetooth/tester/src/mesh.c37990 - [Coverity CID: 238372] Logically dead code in tests/bluetooth/tester/src/mesh.c37989 - [Coverity CID: 238370] Logically dead code in tests/bluetooth/tester/src/mesh.c37988 - [Coverity CID: 238369] Logically dead code in tests/bluetooth/tester/src/mesh.c37987 - [Coverity CID: 238368] Logically dead code in tests/bluetooth/tester/src/mesh.c37986 - [Coverity CID: 238367] Logically dead code in tests/bluetooth/tester/src/mesh.c37985 - [Coverity CID: 238366] Logically dead code in tests/bluetooth/tester/src/mesh.c37984 - [Coverity CID: 238364] Logically dead code in tests/bluetooth/tester/src/mesh.c37983 - [Coverity CID: 238363] Logically dead code in tests/bluetooth/tester/src/mesh.c37982 - [Coverity CID: 238362] Logically dead code in tests/bluetooth/tester/src/mesh.c37981 - [Coverity CID: 238361] Logically dead code in tests/bluetooth/tester/src/mesh.c37980 - [Coverity CID: 238359] Logically dead code in tests/bluetooth/tester/src/mesh.c37979 - [Coverity CID: 238358] Logically dead code in tests/bluetooth/tester/src/mesh.c37978 - [Coverity CID: 238357] Logically dead code in tests/bluetooth/tester/src/mesh.c37977 - [Coverity CID: 238356] Logically dead code in tests/bluetooth/tester/src/mesh.c37976 - [Coverity CID: 238355] Logically dead code in tests/bluetooth/tester/src/mesh.c37975 - [Coverity CID: 238354] Logically dead code in tests/bluetooth/tester/src/mesh.c37974 - [Coverity CID: 238353] Logically dead code in tests/bluetooth/tester/src/mesh.c37973 - [Coverity CID: 238352] Logically dead code in tests/bluetooth/tester/src/mesh.c37972 - [Coverity CID: 238351] Logically dead code in tests/bluetooth/tester/src/mesh.c37971 - [Coverity CID: 238350] Logically dead code in tests/bluetooth/tester/src/mesh.c37970 - [Coverity CID: 238349] Logically dead code in tests/bluetooth/tester/src/mesh.c37969 - [Coverity CID: 238348] Logically dead code in tests/bluetooth/tester/src/mesh.c37968 - [Coverity CID: 238346] Logically dead code in tests/bluetooth/tester/src/mesh.c37967 - [Coverity CID: 238345] Logically dead code in tests/bluetooth/tester/src/mesh.c37966 - [Coverity CID: 238344] Logically dead code in tests/bluetooth/tester/src/mesh.c37965 - [Coverity CID: 238342] Logically dead code in tests/bluetooth/tester/src/mesh.c37964 - [Coverity CID: 238341] Logically dead code in tests/bluetooth/tester/src/mesh.c37963 - [Coverity CID: 238340] Logically dead code in tests/bluetooth/tester/src/mesh.c37962 - [Coverity CID: 238339] Logically dead code in tests/bluetooth/tester/src/mesh.c37961 - [Coverity CID: 238337] Logically dead code in tests/bluetooth/tester/src/mesh.c37960 - [Coverity CID: 238336] Logically dead code in tests/bluetooth/tester/src/mesh.c37959 - [Coverity CID: 238335] Logically dead code in tests/bluetooth/tester/src/mesh.c37958 - [Coverity CID: 238334] Logically dead code in tests/bluetooth/tester/src/mesh.c37957 - [Coverity CID: 238333] Logically dead code in tests/bluetooth/tester/src/mesh.c37956 - [Coverity CID: 238332] Logically dead code in tests/bluetooth/tester/src/mesh.c37955 - [Coverity CID: 238331] Logically dead code in tests/bluetooth/tester/src/mesh.c37954 - [Coverity CID: 238330] Logically dead code in tests/bluetooth/tester/src/mesh.c37953 - [Coverity CID: 238328] Logically dead code in tests/bluetooth/tester/src/mesh.c37952 - [Coverity CID: 238327] Logically dead code in tests/bluetooth/tester/src/mesh.c37951 - [Coverity CID: 238365] Logical vs. bitwise operator in drivers/i2s/i2s_nrfx.c37950 - [Coverity CID: 237067] Division or modulo by zero in tests/benchmarks/latency_measure/src/heap_malloc_free.c37949 - [Coverity CID: 238382] Dereference before null check in subsys/bluetooth/mesh/cfg_cli.c37948 - [Coverity CID: 238338] Dereference before null check in subsys/bluetooth/mesh/cfg_cli.c37947 - [Coverity CID: 237069] Dereference before null check in subsys/bluetooth/host/att.c37946 - [Coverity CID: 237066] Calling risky function in tests/lib/c_lib/src/main.c37945 - [Coverity CID: 237064] Calling risky function in tests/lib/c_lib/src/main.c37944 - [Coverity CID: 237062] Calling risky function in tests/lib/c_lib/src/main.c37940 - Unconsistent UART ASYNC API37927 - tests-ci: net-lib: test/net/lib : build missing drivers__net and application has no console output37916 - [Coverity CID :219656] Uninitialized scalar variable in file /tests/kernel/threads/thread_stack/src/main.c37915 - led_pwm driver not generating correct linker symbol37896 - samples: bluetooth: mesh: build failed for native posix37876 - Execution of twister in makefile environment37865 - nRF Battery measurement issue37861 - tests/lib/ringbuffer failed on ARC boards37856 - tests: arm: uninitialized FPSCR37852 - RISC-V machine timer time-keeping question37850 - Provide macros for switching off Zephyr kernel version37842 - TCP2 statemachine gets stuck in TCP_FIN_WAIT_2 state37839 - SX1272 LoRa driver is broken and fails to build37838 - cmake 3.20 not supported (yet) by recent Ubuntu37830 - intel_adsp_cavs15: run queue testcases failed on ADSP37827 - stm32h747i_disco M4 not working, if use large size(>1KB) global array37821 - pm: pm_device_request incorrectly returns errors37797 - Merge vendor-prefixes.txt from all modules with build.settings.dts_root in zephyr/module.yml37790 - Bluetooth: host: Confusion about periodic advertising interval37786 - Example for tca9546a multiplexor driver37784 - MPU6050 accel and gyro values swapped37781 - nucleo_l496zg lpuart1 driver not working37779 - adc sam0 interrupt mapping, RESRDY maps to second interrupt in samd5x.dtsi37772 - samples: subsys: usb: mass: Use &flash0 storage_partition for USB mass storage37768 - tests/lib/ringbuffer/libraries.data_structures fails to build on number of platforms due to CONFIG_SYS_CLOCK_TICKS_PER_SEC=10000037765 - cmake: multiple No SOURCES given to Zephyr library: warnings37746 - qemu_x86_64 fails samples/hello_world/sample.basic.helloworld.uefi in CI37735 - Unsigned types are incorrectly serialized when TLV format is used in LWM2M response37734 - xtensa xcc build spi_nor.c fail37720 - net: dtls: received close_notify alerts are not properly handled by DTLS client sockets37718 - Incompatible (u)intptr_t type and PRIxPTR definitions37709 - x86 PCIe ECAM does not work as expected37701 - stm32: conflicts with uart serial DMA37696 - Modbus TCP: wrong transaction id in response37694 - Update CMSIS-DSP version to 1.9.0 (CMSIS 5.8.0)37693 - Update CMSIS-Core version to 5.5.0 (CMSIS 5.8.0)37691 - samples/subsys/canbus/isotp/sample.subsys.canbus.isotp fails to build on mimxrt1170_evk_cm737687 - Support MVE on ARMv8.1-M37684 - Add State Machine Framework to Zephyr37676 - tests/kernel/device/kernel.device.pm (and tests/subsys/pm/power_mgmt/subsys.pm.device_pm) fails to build on mec172xevb_assy6906 & mec1501modular_assy688537675 - tests/kernel/device/kernel.device.pm fails on bt510/bt6x037672 - Board qemu_x86 is no longer working with shell37665 - File system: wrong type for ssize_t in fs.h for CONFIG_ARCH_POSIX37660 - Changing zephyr,console requires a clean build37658 - samples: boards/stm32/backup_sram : needs backup sram enabled in DT to properly display memory region37652 - bluetooth: tests/bluetooth/bsim_bt/bsim_test_advx reported success but still reported failed.37637 - Infinite configuring loop for samples\drivers\led_ws2812 sample37619 - RT6xx TRNG reports error on first request after reset37611 - Bluetooth: host: Implement L2CAP ecred reconfiguration request as initiator37610 - subsys/mgmt/hawkbit: Unable to parse json if the payload is split into 2 packets37600 - Invalidate TLB after ptables swap37597 - samples: bluetooth: scan_adv37586 - get_maintainer.py is broken37581 - Bluetooth: controller: radio: Change CTE configuration method37579 - PWM: Issue compiling project when CONFIG_PWM and CONFIG_PWM_SAM is used with SAME7037571 - Bluetooth: Extended advertising assertion37556 - Schedule or timeline of LE audio in zephyr37547 - Bluetooth: Direction Finding: Channel index of received CTE packet is incorrect37544 - Change partition name using .overlay37543 - Using STM32Cube HAL function results in linker error37536 - _pm_devices() skips the very first device in the list and suspend() is not called.37530 - arc smp build failed with mwdt toolchain.37527 - Replace mqtt-azure example with azure-sdk-for-c37526 - ehl_crb: edac tests are failing37520 - Is zephyr can run syscall or extrenal program37519 - friend.c:unseg_app_sdu_decrypt causes assert: net_buf_simple_tailfroom(buf) >= len when payload + opcode is 10 or 11 bytes long37515 - drivers: flash_sam: Random failures when writing large amount of data to flash37502 - OPENTHREAD_CUSTOM_PARAMETERS does not seem to work37495 - mcuboot: Booting an image flashed on top of a Hawkbit updated ones results in hard fault37491 - wrong documentation format on DMA peripheral API reference37482 - 'cmd.exe' is not recognized as an internal or external command, operable program or batch file.37475 - twister: wrong test statuses in json report37472 - Corrupted timeout on poll for offloaded sockets37467 - Bluetooth: host: Incorrect advertiser timeout handling when using Limited Discoverable flag37465 - samples/bluetooth/iso_receive fails on nrf5340dk target37462 - Bluetooth: Advertising becomes scannable even if BT_LE_ADV_OPT_FORCE_NAME_IN_AD is set37461 - Schedule of LE audio in zephyr37460 - tests/kernel/sched/schedule_api/kernel.scheduler and tests/kernel/fifo/fifo_timeout/kernel.fifo.timeout failed on nsim_hs_smp board37456 - script: Unaccounted size in ram/rom reports37454 - Sensor driver: sht4x, sgp40, invalid include path37446 - Sensor driver: ST LPS22HH undeclared functions and variables37444 - MSI-X: wrong register referenced in map_msix_table()37441 - Native POSIX Flash Storage Does not Support Multiple Instances37436 - Delayed startup due to printing over not ready console37412 - IQ samples are not correct during the "reference period" of CTE signal37409 - Allow dual controller on usb37406 - ISO disconnect complete event doesn't reach the application37400 - esp32 build37396 - DHCP issue with events not triggering on network with microsoft windows DHCP server37395 - stm32h747i_disco board M4 core not working37391 - Bluetooth: 4 Bits of IQ Samples Are Removed (Direction Finding Based on CTE)37386 - bt_vcs_register() enhancement for setting default volume and step37379 - drivers: adc for stm32h7 depends on the version for oversampling37376 - samples/subsys/usb/dfu/sample.usb.dfu fails on teensy41/teensy4037375 - tests/drivers/adc/adc_api/drivers.adc fails to build on nucleo_h753zi37371 - logging.log2_api_deferred_64b_timestamp tests fails running on several qemu platforms37367 - Bluetooth: Host: Support setting long advertising data37365 - STM32 :DTCM: incorrect buffer size utilization37346 - STM32WL LoRa increased the current in "suspend_to_idle" state37338 - west flash to teensy 41 fail, use blinky with west build37332 - Increased power consumption for STM32WB55 with enabled PM and Bluetooth37327 - subsys/mgmt/hawkbit: hawkbit run can interrupt a running instance37319 - West 0.11.0 fails in Zephyr doc build under other manifest repo & renamed Zephyr fork37309 - ARC: add MPU v6 (and others) support37307 - Use XOSHIRO random number generator on NXP i.MX RT platform37306 - revert commit with bogus commit message37305 - Bluetooth Direction Finding Support of "AoA RX 1us"37304 - k_timer_status_sync can lock forever on qemu_x86_6437303 - tests: drivers: i2s: drivers.i2s.speed scenario fails on nrf platforms37294 - RTT logs not found with default west debug invocation on jlink runner37293 - Native POSIX MAC addresses are not random and are duplicate between multiple instances37272 - subsys/mgmt/hawkbit: Falsely determine that an update is installed successfully37270 - stm32l4 System Power Management issue37264 - tests-ci : can: isotp: implemmentation test report FATAL ERROR when do not connect can loopback test pins37265 - tests-ci : kernel: scheduler: multiq test failed37266 - tests-ci : kernel: memory_protection: userspace test Timeout37267 - tests-ci : kernel: threads: apis test Timeout37263 - lib: timeutil: conversion becomes less accurate as time progresses37260 - STM32WL does not support HSE as RCC source and HSEDiv37258 - symmetric multiprocessing failed in user mode37254 - Run Coverity / Generate GitHub Issues37253 - west flash is failed with openocd for on macOS37236 - ESP32 will not start when CONFIG_ASSERT=y is enabled37231 - BME280 faulty measurement after power cycle37228 - Bluetooth SMP does not complete pairing37226 - PM: soc: Leftover in conversion of PM hooks to __weak37225 - subsys/mgmt/hawkbit & sample: Bugs/improvements37222 - k_queue data corruption, override user data after reserved heading word37221 - nRF5340: SPIM4 invalid clock frequency selection37213 - ESP32: can't write to SD card over SPI (CRC error)37207 - drivers: serial: convert uart_altera_jtag_hal to use devicetree37206 - counter: stm32: Missing implementation of set_top_value37205 - openocd: Configure thread awareness by default37202 - esp32c3 build error37189 - Bug "Key 'name', 'cmake-ext' and 'kconfig-ext' were not defined" when build a zephyr application37188 - Get an error of "Illegal load of EXC_RETURN into PC" when print log in IO interrupt callback37182 - cmsis_v1 osSignalWait doesn't clear the signals properly when any signal mask is set37180 - Led driver PCA9633 does nok take chip out from sleep37175 - nucleo-f756zg: rtos aware debugging not working37174 - Zephyr's .git directory is 409 MiB, can it be squashed?37173 - drivers: clock_control: stm32: AHB prescaler usable for almost all stm32 series37170 - LwM2M lwm2m_rd_client_stop() not working when called during bootstrapping/registration37160 - [Moved] Bootloader should provide the version of zephyr, mcuboot and a user defined version to the application37159 - osThreadTerminate does not decrease the instances counter37153 - USB serial number is not unique for STM32 devices37145 - sys: ring_buffer: ring_buf_peek() and ring_buf_size_get()37140 - Twister: Cmake error wrongly counted in the report37135 - Extend the HWINFO API to provide variable length unique ID37134 - Add support for the Raspberry Pi Compute Module 437132 - Assert on enabling Socket CAN37120 - Documentation on modules37119 - tests: kernel tests hardfault on nucleo_l073rz37115 - tests/bluetooth/shell fails to builds on a lot of platforms37109 - Zephyr POSIX layer uses swapping with an interrupt lock held37105 - mcumgr: BUS FAULT when starting dfu with mcumgr CLI37104 - tests-ci : kernel: scheduler: multiq test failed37075 - PlatformIO: i cannot use the Wifi Shield ESP8266 to build the sample wifi project with the Nucleo F429ZI37070 - NXP mcux ADC16 reading 6553537057 - PWM-blinky for Silabs MCU37038 - stm32f4 - DMA tx interrupt doesn't trigger37032 - document: API reference missing: In clock of zephyr document37029 - drivers: sensor: sensor_value_to_double requieres non const sensor_value pointer37028 - ipv6 multicast addresses vanish after iface down/up sequence37024 - Compile error if we only use VCS without VOCS and AICS37023 - zephyr_prebuilt.elf and zephyr.elf has inconsistent symbol address in RISC-V platform37007 - Problem with out of tree driver37006 - tests: kernel: mem_protect: stack_random: enable qemu_riscv3236998 - TF-M: does not allow PSA Connect to proceed with IRQs locked36990 - Memory misalignment ARM Cortex-M3336971 - ESP32: wifi station sample does not get IP address by DHCP436967 - Bluetooth: public API to query controller public address36959 - Direction Finding - CTE transmitted in connectionless mode has wrong length36953 - <err> lorawan: MlmeConfirm failed : Tx timeout36948 - Cluttering of logs on USB Console in Zephyr when CDC Shell is enabled36947 - Tensorflow: Dedicated tflite-micro repository36929 - Failure to build OpenThread LwM2M client on nrf52840dk36928 - Disconnecting ISO mid-send giver error in hci_num_completed_packets36927 - LWM2M: Writing to Write-Only resource causes notification36926 - samples/boards/nrf/system_off wouldn't compile on Particle Xenon board36924 - embARC Machine Learning Inference Library from Synopsys36917 - Runtime device PM is broken on STM3236909 - Shell log` commands crash the system if CONFIG_SHELL_LOG_BACKEND is not defined36896 - tests: net: select: still failing occasionally due to FUZZ36891 - Significant TCP perfomance regression36889 - string.h / strcasestr() + strtok()36885 - Update ISO API to better support TWS36882 - MCUMGR: fs upload fail for first time file upload36873 - USB AUDIO Byte alignment issues36869 - Direction Finding Connectionless porting to nrf5281136866 - CONFIG_NO_OPTIMIZATIONS=y MPU fault on Zephyr 2.636865 - k_work_q seems to check uninitialized flag on start36859 - Possible Advertising PDU Corruption if bt_enable called in SYS_INIT function36858 - Static object constructors execute twice on the NATIVE_POSIX target36857 - i2c_samd0.c burst write not compatible with ssd1306.c36851 - FS logging backend assumes littlefs36823 - Build excludes paths to standard C++ headers when using GNUARMEMB toolchain variant36819 - qemu_leon3 samples/subsys/portability/cmsis_rtos_v2 samples failing36814 - Wrong format type for uint32_t36811 - Clarify Z_ APIs naming conventions and intended scope36802 - MCUboot doesn't work with encrypted images on external flash36796 - Build failure: samples/net/civetweb/http_server using target stm32h735g_disco36794 - Build failure: tests/drivers/adc using stm32l562e_dk36790 - sys: ring_buffer: correct space calculation when tail is less than head36789 - [ESP32] samples blinky / gpio / custom board36783 - drivers: modem: hl7800 gpio init failed with interrupt flags36782 - drivers: serial: nrfx: Enforced pull-ups on RXD and CTS conflict on many custom boards36781 - source_periph incorrectly set in dma_stm3236778 - firmware update using mcumgr displays information for only slot 0 and not slot 1.36770 - doc:Missing description for deadline scheduling36769 - Zephyr assumes Interrupt Line config space register is RW, while ACRN hardwired it to 0.36767 - tests-ci :arch.arm.irq_advanced_features.arm_irq_target_state : test failed36768 - tests-ci :coredump.logging_backend : test failed36765 - [PCI] ACRN sets Interrupt Line config space register to 0 and ReadOnly.36764 - Bluetooth Require paired after disconnected work with iphone36755 - NTP client faults module when it fails36748 - Zephyr IP Stack Leaks when using PROMISCUOUS socket along with POSIX sockets based implementation.36747 - Adding Board Support for STEVAL-STWINKT1B36745 - Zephyr IP Stack Limited to 1514 bytes on the wire - no ICMPs beyond this limit36739 - coap_packet_get_payload() returns the wrong size36737 - Cortex M23: "swap_helper.S:223: Error: invalid offset, value too big (0x0000009C)"36736 - kernel: SMP global lock (and therefore irq_lock) works incorrectly on SMP platforms36718 - st_ble_sensor sample references wrong attribute36716 - zephyr - ADC - ATSAMD21G18A36713 - nrf5 ieee802154 driver does not compile and breaks CI36711 - Enable "template repository" for zephyrproject-rtos/example-application36696 - Json on native_posix_64 board36695 - net: ieee802154: cc13xx_26xx: Sub-GHz RF power saving36692 - Release Notes for 2.6.0 not useful (BLE API changes)36679 - Bluetooth - notifications not sending (bonded, CONFIG_BT_MAX_CONN=4, after disconnection then reconnection)36678 - Zephyr Throws Exception for Shell "log status" command when Telnet is shell backend and log is UART backend36668 - LittleFS example overwrite falsh memory36667 - logger: Filesystem backend doesn't work except for first time boot36665 - l2cap cids mixed up in request36661 - xtensa xcc does not support "-Warray-bounds"36659 - samples/net/sockets small bugs36655 - twister: sometimes the twister fails because the error configparser.NoSectionError: No section: 'manifest'36652 - deadlock in pthread implementation on SMP platforms36646 - sample.shell.shell_module.minimal_rtt fails to build on mimxrt1170_evk_cm4/mimxrt1170_evk_cm736644 - Toolchain C++ headers can be included when libstdc++ is not selected36631 - Turn on GPIO from DTS36625 - compilation fails while building samples/net/openthread/coprocessor for Arduino nano 33 ble36613 - LoRaWAN - Provide method to register a callback for received data36609 - could not mount fatfs on efm32pg_stk3402a36608 - Unable to compile USB console example with uart_mux36606 - Regression in udp socket performance from zephyr v2.3.0 to v2.6.036600 - Bluetooth: Peripheral: Bond issue when using secure connection36598 - Lora driver TX done wait/synchronous call36593 - Failing IPv6 Ready compliance (RFC 2460)36590 - NVS sector size above 65535 not supported36578 - net: ip: Assertion fails when tcp_send_data() with zero length packet36575 - Modbus RTU Client on ESP3236572 - kernel: Negative mutex lock_count value36570 - Use a custom role for Kconfig configuration options36569 - '.. only:' is not working as expected in documentation36568 - net: lib: sockets: Assertion fails when zsock_close()36565 - ehl_crb: Only boot banner is printed but not the test related details for multiple tests due to PR #36191 is not backported to v2.6.0 release36553 - LoRaWAN Sample: join accept but "Join failed"36552 - Bluetooth v2.6.0 connectable advertising leak/loss36540 - LoRaWAN otaa.app_key belongs to mib_req.Param.AppKey36524 - HSE clock doesn't initialize and blinky doesn't run on custom board when moving from zephyr v2.3.0 to v2.6.036520 - tests/kernel/timer/timer_api/kernel.timer.tickless fails to build on npcx9m6f_evb36500 - espressif: cannot install toolchain on Darwin-arm6436496 - bluetooth: only the first Extended Advertising Report with data status "incomplete, more data to come" is issued36495 - dtc generates missing #address-cells in interrupt provider warning36486 - LOG2 - self referential macro36467 - runner mdb-hw not work with arc hsdk board36466 - tests/kernel/mem_protect/mem_protect failed with arcmwdt toolchain36465 - samples/compression/lz4 failed with arcmwdt toolchian36462 - [bluetooth stack][limited_discoverable_advertising timeout] Some problems about the lim_adv_timeout36448 - samples: subsys: fs: fat_fs: adafruit_2_8_tft_touch_v2: buildkite compilation failed when no i2c defined36447 - net: socket: socketpair: Poll call resetting all events36435 - RFC: API Change: Mesh: Add return value for opcode callback36427 - test: kernel.common.nano32: zephyr-v2.6.0-286-g46029914a7ac: mimxrt1060_evk: test fails36419 - test-ci: net.ethernet_mgmt: zephyr-v2.6.0-286-g46029914a7ac: frdm_k64f: test fails36418 - test-ci: net.socket.tls: zephyr-v2.6.0-286-g46029914a7ac: frdm_k64f: test fail36417 - tests-ci :coredump.logging_backend : zephyr-v2.6.0-286-g46029914a7ac: lpcxpresso55s28: test failed36416 - tests-ci :arch.arm.irq_advanced_features.arm_irq_target_state : zephyr-v2.6.0-286-g46029914a7ac: lpcxpresso55s28: test failed36414 - ESP32 with samples/net/wifi gives: net_if: There is no network interface to work with!36412 - Blinky on ESP32: Unsupported board: led0 devicetree alias is not defined"36410 - board: cc1352r_sensortag: add dts entry for hdc208036408 - ARM_MPU on boards stm32_min_dev_* without MPU enabled36398 - [Video API] Erroneous function pointer validation36390 - net: ip: Negative TCP unacked_len value36388 - ARM: Architecture Level user guide36382 - segfault when hardware isn't emulated36381 - Bluetooth ASSERTION FAIL [evdone] Zephyr v2.6.036380 - missing auto-dependency on CONFIG_EMUL36357 - tests: samples: watchdog: sample.subsys.task_wdt fails on nrf platforms36356 - Network fails to transmit STM32H747DISC0 board zephyr v2.6.036351 - nRF: we do not always guarantee that SystemInit is inlined36347 - Zephyr Wifi IoT device - whats a good board to start with?36344 - Zephyr 2.6.0 st_ble_sensor sample is broken when compiled for nucleo_wb55rg36339 - samples/subsys/logging/dictionary doesn't build under MS Windows environment36329 - Support for CC3120 WiFi module36324 - add project groups to upsteam west manifest36323 - Don't set TFM_CMAKE_BUILD_TYPE_DEBUG by default on LPC55S69-NS if DEBUG_OPTIMIZATIONS36319 - Help: Asking for Help Tips page gets 404 error36318 - [Coverity CID: 236600] Unused value in drivers/ieee802154/ieee802154_nrf5.c36317 - [Coverity CID: 236599] Unused value in drivers/ieee802154/ieee802154_nrf5.c36316 - [Coverity CID: 236597] Unused value in drivers/ieee802154/ieee802154_nrf5.c36315 - [Coverity CID: 236604] Untrusted value as argument in subsys/net/lib/lwm2m/lwm2m_engine.c36314 - [Coverity CID: 236610] Uninitialized pointer read in subsys/bluetooth/mesh/proxy.c36313 - [Coverity CID: 236602] Unchecked return value in drivers/modem/gsm_ppp.c36312 - [Coverity CID: 236608] Out-of-bounds access in subsys/bluetooth/audio/mics_client.c36311 - [Coverity CID: 236598] Out-of-bounds access in subsys/bluetooth/audio/mics_client.c36310 - [Coverity CID: 236607] Missing break in switch in drivers/ieee802154/ieee802154_nrf5.c36309 - [Coverity CID: 236606] Missing break in switch in drivers/ieee802154/ieee802154_nrf5.c36308 - [Coverity CID: 236601] Missing break in switch in drivers/ieee802154/ieee802154_nrf5.c36307 - [Coverity CID: 236605] Logically dead code in subsys/bluetooth/audio/mics.c36306 - [Coverity CID: 236596] Logically dead code in subsys/bluetooth/audio/mics.c36305 - [Coverity CID: 236595] Logically dead code in samples/drivers/eeprom/src/main.c36304 - [Coverity CID: 236609] Explicit null dereferenced in subsys/bluetooth/audio/mics_client.c36303 - [Coverity CID: 236603] Dereference after null check in subsys/bluetooth/audio/vcs_client.c36301 - soc: cypress: Port Zephyr to Cypress CYW4390736298 - TF-M integration: add a brief user guide36291 - ADC and math library functions use for stm32l49636289 - eswifi gets a deadlock on b_l4s5i_iot01a target36282 - Overwrite mode for RTT logging36278 - ARM: Cortex-M: SysTick priority is not initialized if the SysTick is not used36276 - NULL pointer access in check_used_port()36270 - TF-M: introduce uniformity in Non-Secure target names36267 - net: ieee802154: software address filtering36263 - up_squared: kernel.memory_protection.mem_map.x86_64 failed.36256 - SPI4 & 3 MISO not working on nRF534036255 - tests/subsys/logging/log_core failed on hsdk board36254 - Zephyr shell subsystem not work with ARC hardware boards.36250 - tests/subsys/cpp/cxx - doesn't compile on native_posix when CONFIG_EXCEPTIONS=y36247 - samples: usb: testusb: Problems with using with cdc-acm36242 - Zephyr Upstream + sdk-nrf BLE NUS SHELL LOG/CBPRINTF build problem.36238 - net_if.c: possible mutex deadlock36237 - fs_open returns 0 on existing file with FS_O_CREATE | FS_O_WRITE36197 - BOSSA flashing on Arduino Nano 33 BLE (NRF52840)36185 - CMP0116 related warnings36172 - net: ieee802154: LL src/dst address is lost from received net_pkt (when using 6LO)36163 - nvs no longer supports the use of id=0xffff36131 - Occasionally unable to scan for extended advertisements when connected36117 - toolchain: The added abstraction for llvm, breaks builds with off-tree llvm based toolchains36107 - ehl_crb: Multiple tests are failing and board is not booting up.36101 - tfm related build rebuild even if nothing changes36100 - pb_gatt buf_send does not call callback36095 - drivers: pwm: sam: compilation failure for sam_v71b_xult36094 - BLE wrong connections intervals on multible connections36093 - Fix dt_compat_enabled_with_label behavior (or usage)36089 - intel_adsp_cavs25: support more than 2 DSP cores36088 - intel_adsp_cavs25: secondary boot fails in arch_start_cpu()36084 - Arduino Nano 33 BLE: USB gets disconnected after flashing36078 - coredump.logging_backend: lpcxpresso55s28: test failure assertion fail36077 - net: lib: coap: Impossible to get socket info from incoming packet36075 - drivers: can: stm32fd: can2 does not work36074 - LoRaWAN: sx126x: infinite loop on CRC error36061 - Undefined reference to z_priq_rb_lessthan(rbnode*, rbnode*) when using k_timer_start in cpp file.36057 - Zephyr Shell Console and Logging Targeting Isolated Different Device Interfaces36048 - Cannot establish ISO CIS connection properly after ACL disconnected several times36038 - iotdk: the testcase samples/modules/nanopb can't build36037 - bt_init returning success when Bluetooth initialization does not get finalized.36035 - struct devices should be allocated in ROM, not RAM36033 - Mere warnings slow down incremental documentation build from seconds to minutes36030 - West warnings (and others?) are ignored when building documentation36028 - More Description in Example Documentation36026 - wolfssl / wolfcrypt36022 - Wrong channel index in connectionless IQ samples report36014 - stm32g050: Missing closing parenthesis for soc prototype36013 - arm: qemu: run cmsis-dsp tests on the qemu target with FPU35999 - Unexpected Bluetooth disconnection and removal of bond35992 - stm32f303k8 device tree missing DACs35986 - POSIX: multiple definition of posix_types35983 - [backport v1.14-branch] backport of #35935 failed35978 - ESP32 SPI send data hangup35972 - C++ exceptions do not work when building with GNU Arm Embedded35971 - ehl_crb: test_nop is failing under tests/kernel/common/35970 - up_squared: samples/boards/up_squared/gpio_counter/ is failing35964 - shell_uart hangs when putting UART into PM_LOW_POWER_STATE / PM_DEVICE_STATE_LOW_POWER35962 - drivers using deprecated Kconfigs35955 - Bluetooth: Controller: Regression in connection setup35949 - can: mcan: sjw-data devicetree configuration is not written correctly35945 - SPI4 on nRF5340 not working when using k_sleep() in main35941 - subsys: tracing: sysview: No SEGGER_SYSVIEW.h in path35939 - enc424j600 driver unusable/broken on stm32l55235931 - Bluetooth: controller: Assertion in ull_master.c35930 - nRF Dongle as BLE Central Unstable Connectivity at Long-ish Range35926 - Shell tab-completion with more than two levels of nested dynamic commands fails35916 - drivers: TI cc13xx_cc26xx: build error when PM is enabled (serial, entropy, spi, i2c modules)35908 - Stopping DHCP with network interface goes down leaves networking state in a broken state35897 - Bluetooth: PTS Tester on native posix35890 - Build system ignores explicit ZephyrBuildConfiguration_ROOT variable35880 - PSA tests run indefinitely when CONFIG_TFM_IPC=y35870 - Build failure with gcc 11.x on native_posix35857 - intel_adsp_cavs15: run msgq testcases failed on ADSP35856 - intel_adsp_cavs15: run semaphore testcases failed on ADSP35850 - the sample kernel/metairq_dispatch fails on nucleo_g474re35835 - ADC support for STM32l496_disco board35809 - sample: USB audio samples are not working on STM3235793 - kernel.scheduler.multiq: Failed since #35276 ("cooperative scheduling only" special cases removal)35789 - sockets_tls: receiving data on offloaded socket before handshake causes pollin | pollerr and failed recvfrom (SARA-R4)35721 - Atmel sam0 Async and/or DMA may not work35720 - tests:kernel timer fails on test_sleep_abs with TICKLESS_KERNEL and PM on nucleo_wb55rg35718 - Excessive error messages from filesystem interface35711 - net: sockets: dtls: handshake not reset as it ought to be35707 - AssertionError: zephyr/tests/kernel/common test case is failing with gcc-11 (Yocto)35703 - posix_apis: fails at test_posix_realtime for mimxrt1024_evk35681 - Unable to get output for samples/subsys/logging/logger and samples/philosophers35668 - The channel selection of auxiliary advertisments in extended advertisments35663 - STM32H7: Support memory protection unit(MPU) to enable shared memory35658 - arch.interrupt.arm.irq_vector_table.arm_irq_vector_table: MPU FAULT Halting system for mximxrt685_evk_cm3335656 - arch.interrupt.arm.arm_interrupt: hangs on mimxrt685_evk_cm3335581 - stm32 SPI problems with DMA and INTR set-up35550 - nRF91: DPS310 I2C driver not working35532 - SSL Handshake error with modified http(s) client example35529 - STM32: STM32H7 ADC calibration must be performed on startup35429 - subsys: settings: Encryption35377 - add creg_gpio driver for ARC HSDK board35354 - Adding support for measurement of Ultraviolet(UV) Light.35293 - Sporadic boot failure35256 - DOC: DATA PASSING TABLE MISSING THE OBJECT QUEUES35250 - Twister is not reading the serial line output completely35244 - twister: build failure for native_posix with GNU binutils 2.3535238 - ieee802.15.4 support for stm32wb5535229 - twister log mixing between tests35190 - echo_server sample non-functional rails all CPUs on native_posix_64 board build35055 - STM32L432KC Nucleo Reference board SWD problem after programming with Zephyr34917 - arch.interrupt.arm| arch.interrupt.extra_exception_info: lpcxpresso55s28 series: test failure34913 - ModuleNotFoundError: No module named 'elftools'34879 - mec15xxevb_assy6853: 2 GPIO test failures34855 - FANSTEL BT840X34832 - Coding Guideline - MISRA rule 14.4 not applied properly34829 - Bluetooth: ISO: Don't attempt to remove the ISO data path of a disconnected ISO channel34767 - C++ support on ESP boards34760 - Hawkbit not downloading large files34659 - Bluetooth: HCI cmd response timeout34571 - Twister mark successfully passed tests as failed34557 - upgrade fatfs to 0.14b34554 - Settings FS: Duplicate finding is extremely slow when dealing with larger number of settings entries34544 - lib: gui: lvgl: buffer overflow bug on misconfiguration34543 - STM32F1 failed to compile with CONFIG_UART_ASYNC_API34392 - [backport v2.5-branch] backport of #34237 failed34391 - [backport v1.14-branch] backport of #34237 failed34390 - i2s: bitrate is wrongly configured on STM3234372 - CPU Lockups when using own Log Backend34354 - Please investigate adding DMA support to STM32 I2C!34324 - RTT is not working on STM3234315 - BMI270 configuration file sending to I2C seems to be not handling the last part of the configuration properly.34305 - Shell [modem send] command causes shell to hang after about 10 seconds, Sara R4 - Particle Boron34282 - HAL Module Request: hal_telink34273 - mqtt_publisher: Unable to connect properly on EC21 modem with bg9x driver34269 - LOG_MODE_MINIMAL BUILD error34268 - Bluetooth: Mesh: Sample is stuck in init process on disco_l475_iot34259 - Problem running code with memory domain34239 - Call settings_save_one in the system work queue, which will cause real-time performance degradation.34236 - External source code integration request: Raspberry Pi Pico SDK34231 - uzlib (decompression library)34226 - Compile error when building civetweb http_server sample for posix_native34222 - Commit related to null pointer exception detection causing UART issues34218 - Civetweb server crashing when trying to access invalid resource34204 - nvs_write: Bad documented return value.34192 - Sensor BME680: Add support for SPI operation34134 - USB do not works if bootloader badly use the device before34131 - TFTP client ignores incoming data packets34121 - Unable to generate pdf according to the documentation steps on windows34105 - Convert tests/kernel/workq to new kwork API34049 - Nordic nrf9160 switching between drivers and peripherals34015 - cfb sample "Device not found" for esp32 when SSD1306 is enabled33994 - kscan_ft5336 doesn't provide proper up/down information when polling, and hogs resources in interrupt mode33960 - Zephyr for Briey SoC33937 - [backport v1.14-branch] backport of #26712 failed33932 - [backport v1.14-branch] backport of #26083 failed33910 - sam_v71_xult -> I2C_1 hang during scanning i2c devices33901 - tests: interrupt: irq_enable() and irq_disable() do not work with direct and regular interrupt on x8633895 - Device tree: STM32L412 and STM32L422 are missing nodes33883 - [backport v2.5-branch] backport of #33340 failed33876 - Lora sender sample build error for esp3233873 - arm_arch_timer: Too many clock announcements with CONFIG_TICKLESS_KERNEL=n on SMP33862 - [backport v2.5-branch] backport of #33771 failed33753 - LVGL output doesn't match the LVGL TFT simulator for gauge widget33652 - Monitoring the BLE connection33573 - JSON_OBJ_DESCR_ARRAY_ARRAY is dangerously broken33554 - Request to add OM13056 board (LPC1500 family or specifically SoC LPC1519) support to Zephyr33544 - ehl_crb: portability.posix.common.posix_realtime failed.33485 - Issue with DMA transfers outside of the Zephyr DMA driver on STM32F76733483 - TIMESLICE and PM interaction and expected behavior33449 - Remove deprecated items in 2.733440 - lsm6dso sensor driver not working on nRF534033435 - armclang / armlinker33337 - twister: Find and fix all "dead" samples/tests33275 - ehl_crb: samples/subsys/shell/shell_module does not work33265 - Power Management Overhaul33192 - LoRaWAN - Application fails to start if module is not powered33113 - Improve code coverage for new feature or code change in kernel33104 - Updating Zephyr to fix Work Queue Problems33099 - ppp: termination packet not sent33052 - [Coverity CID :219624] Untrusted loop bound in subsys/bluetooth/host/sdp.c33041 - [Coverity CID :219645] Untrusted loop bound in subsys/bluetooth/host/sdp.c33016 - spi_nor: CONFIG_SPI_NOR_SFDP_RUNTIME leaves flash in Standby after spi_nor_configure()33015 - spi_nor driver: SPI_NOR_IDLE_IN_DPD breaks SPI_NOR_SFDP_RUNTIME32997 - Improve documentation search experience32990 - FS/littlefs: it is possible to write to already deleted file32984 - West: openocd runner: Don't let debug mode on by default32875 - Benchmarking Zephyr vs. RIOT-OS32836 - Remaining integration failures on intel_adsp_cavs1532822 - Code doesn't compile after changing the PWM pin on example "blinky_pwm" on NRF5232803 - Extend mcux uart drivers to support async API32789 - USB DFU support w/o MPU support32733 - RS-485 support32669 - [Bluetooth] sample code for Periodic Advertising Sync Transfer32603 - acrn_ehl_crb: test case of arch.interrupt.prevent_interruption failed32564 - net_buf reference count not protected32545 - It seems that CONFIG_IMG_MGMT_VERBOSE_ERR does not work32531 - get_maintainer.py cannot parse MAINTAINERS.yml32293 - Zephyr 2.6 Release Checklist32289 - USDHC: Fails after reset32282 - x86 ACPI images are much too large32261 - problem with CONFIG_STACK_SENTINEL32133 - Current atomics are subtly broken on AArch64 due to memory ordering32111 - Zephyr build fail with LLVM on Windows32035 - Bluetooth: application notification when MTU updated31993 - Add west extension to parse yml file31985 - riscv: Long execution time when TICKLESS_KERNEL=y31943 - drivers: flash: stm32: harmonization of flash erase implementation across STM32 series31739 - Convert CoAP unit tests to use ztest API31593 - civetweb hangs when there are no free filedescriptors31499 - lwm2m : Add visibility into observer notification success/fail31475 - TCP keepalive31473 - Failed phy request not retried and may prevent DLE procedure during auto-initiation31447 - MQTT idling gets disconnected when using TCP231290 - dts: arm: st: standardize pwm default property st,prescaler to 031253 - lis3dh driver support is confusing31162 - Mapping between existing and new system power management states31107 - libc: minimal: add qsort routine31043 - Infinite loop in modem cmd_handler_process30921 - west flash failed with an open ocd error30861 - drivers: uart: increase timeout precision in uart_rx_enable30635 - cpu_stats: Change from printk to LOG_*30429 - Thread Border Router with NRC/RCP sample and nrf52840dk not starting30367 - TCP2 does not send our MSS to peer30245 - Bluetooth: controller: event scheduling pipeline preemption by short schedule30244 - Bluetooth: controller: Extended scan window time reservation prevents auxiliary channel reception30243 - Bluetooth: controller: IRK resolution in extended scanning breaks auxiliary PDU reception30236 - Main thread sometimes looping forever before user application is reached when using UDP and IPv6 on Nucleo F767ZI30209 - TCP2 : How to add MSS option on sending [SYN, ACK] to client?30066 - CI test build with RAM overflow30026 - Can not make multiple BLE IPSP connection to the same host29545 - samples: tfm_integration: tfm_ipc: No module named 'cryptography.hazmat.primitives.asymmetric.ed25519'29535 - riscv: stack objects are mis-aligned29520 - make k_current_get() work without a system call29397 - Build all tests of module mcuboot28872 - Support ESP32 as Bluetooth controller28819 - memory order and consistency promises for Zephyr atomic API?28729 - ARM: Core Stack Improvements/Bug fixes for 2.6 release28716 - 2.5 Release Checklist28312 - Add option to enable ART Accelerator on STM32 FLASH controller27992 - stm32f7: usb: Bursting HID Get and Set report requests leads to unresponding Control endpoint.27525 - Including STM32Cube's USB PD support to Zephyr27415 - Decide if we keep a single thread support (CONFIG_MULTITHREADING=n) in Zephyr27176 - [v1.14] Restore socket descriptor permission management27015 - Add custom transport support for MQTT26981 - Problem with PPP + GSM MUX with SIMCOM7600E26585 - IPv4 multicast datagrams can't be received for mimxrt1064_evk board (missing ethernet API)26256 - NRF51822 BLE Micro module: hangs on k_msleep() (RTC counter not working)26136 - CMake Error in Windows Environment26051 - shell: uart: Allow a change in the shell initalisation to let routing it through USB UART25832 - [test][kernel][lpcxpresso55s69_ns] kernel cases meet ESF could not be retrieved successfully25182 - Raspberry Pi 4B Support25015 - Bluetooth Isochronous Channels Support24854 - docs: Using third-party libraries not well documented in Memory partitions docs24733 - Misconfigured environment24200 - USB GET_INTERFACE response always 0, even when an alternate setting is used24051 - double to sensor_val23745 - Align PS/2 handlers with the handlers found in other drivers23723 - Poor sinf/cosf performance compared to the Segger math libraries23349 - Question: How to add external soc, board, DTS, drivers and libs?22731 - Improve docker CI documentation22705 - Implement counter driver for lpcxpresso55s6922702 - Implement I2S driver for lpcxpresso55s6922455 - How to assign USB endpoint address manually in stm32f4_disco for CDC ACM class driver22210 - Bluetooth - bt_gatt_get_value_attr_by_uuid22131 - ARM Cortex_R: CONFIG_USERSPACE: external interrupts are disabled during system calls21869 - IPv6 neighbors get added too eagerly21648 - improve documentation on meta-IRQ threads21519 - RFC: libc: thread-safe newlib21339 - Expired IPv6 router causes an infinite loop21293 - adding timeout the I2C read/write functions for the stm32 port21205 - get_device_list only available if power management invoked21167 - libraries.libc.newlib test fails20576 - DTS overlay files must include full path name20409 - USB: Create webusb shell20236 - usb: api: Cleanup of current inclusion path for USB20171 - support external spi nor flash on mimxrt1060-evk19882 - Add support for multiple channel sampling to STM32 ADC driver19328 - Logger could block in thread at certain log message pool usage18960 - [Coverity CID :203908]Error handling issues in /lib/libc/newlib/libc-hooks.c18896 - Concurrent Multi-Protocol Support NRF5284018850 - Bluetooth: controller: Advertiser following directed advertiser will have corrupt data18386 - [Coverity CID :203443]Memory - corruptions in /subsys/bluetooth/host/rfcomm.c18351 - logging: 32 bit float values don't work.18316 - Support for unregistering bt_conn callbacks18042 - Only corporate members can join the slack channel17748 - stm32: clock-control: Remove usage of SystemCoreClock17692 - Proper way for joining a multicast group (NRF52840/OpenThread)17375 - Add VREF, TEMPSENSOR, VBAT internal channels to the stm32 adc driver17021 - revise concurrency control in kernel/userspace.c16761 - nrf52840 usb driver with openthread16671 - ideas for future of the settings16231 - Add CONFIG_UART_DYNAMIC_SETTINGS option15841 - Support AT86RF23315793 - Unable to load binaries into iotdk15676 - Support instrumentation for time spent in various power states15555 - Counter Docs Missing Callback Context Note14308 - Better integration between system and device power modes.12405 - add test to catch issues fixed in PR #1238411773 - Add Bluetooth support for Silicon Labs EFR32MG1211702 - Add support for nrfx i2s driver11519 - Add at least build test for cc120011193 - ARM V8M Trusted Execution Environments and Zephyr11028 - CONFIG_LOAPIC_SPURIOUS_VECTOR not being tested11000 - USB 2.0 high-speed support in Zephyr10930 - Extending string formatting function10676 - Feature Required: DFU over Thread network10378 - watchdog: Limitation with the current watchdog API for Nordic devices10324 - Publish PDF with the release doc build10198 - Add support for FRDM-STBC-AGM01 sensor shield8876 - Adapt net/l2/ieee802154 subsystem to new shell subsystem8275 - when zephyr can support popular IDE develop?7001 - ST Sensors: Driver factorization6777 - Add copyright handling to contributing doc6657 - Question: Is Bluetooth avrcp supported in Zephyr? Or any plan?6493 - need APIs for ranged random number generation6450 - Several devices of same type on same bus - how to address?6117 - Make sanitycheck aware of DTS and HW support4911 - Filesystem support for qemu1392 - No module named 'elftools'3886 - Add mutual authentication to net/crypto examples3885 - Add real entropy to crypto-based net samples3884 - Improve the TLS and DTLS examples to use best practices on security3879 - k_thread_abort vs k_thread->fn_abort()3677 - Implement HCI Zephyr extensions3199 - xtensa: simplify linker scripts2811 - Investigate having timeout code track tick deadlines instead of deltas2619 - Define APIs for hashing/ Message Authentication2248 - Split LE Controller: style fixes