doc/releases/release-notes-2.6.rst
:orphan:
.. _zephyr_2.6:
Zephyr 2.6.0 ############
We are pleased to announce the release of Zephyr RTOS version 2.6.0.
Major enhancements with this release 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
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
Driver APIs now return -ENOSYS if optional functions are not implemented.
If the feature is not supported by the hardware -ENOTSUP will be returned.
Formerly -ENOTSUP was returned for both failure modes, meaning this change
may require existing code that tests only for that value to be changed.
The :c:func:wait_for_usb_dfu function now accepts a k_timeout_t argument instead of
using the CONFIG_USB_DFU_WAIT_DELAY_MS macro.
Added disconnect reason to the :c:func:disconnected callback of :c:struct:bt_iso_chan_ops.
Align error handling of :c:func:bt_l2cap_chan_send and
:c:func:bt_iso_chan_send so when an error occur the buffer is not unref.
Added :c:func:lwm2m_engine_delete_obj_inst function to the LwM2M library API.
Deprecated in this release
:c:macro:DT_CLOCKS_LABEL_BY_IDX, :c:macro:DT_CLOCKS_LABEL_BY_NAME,
:c:macro:DT_CLOCKS_LABEL, :c:macro:DT_INST_CLOCKS_LABEL_BY_IDX,
:c:macro:DT_INST_CLOCKS_LABEL_BY_NAME, and
:c:macro:DT_INST_CLOCKS_LABEL was deprecated in favor of utilizing
:c:macro:DT_CLOCKS_CTLR and variants.
:c:macro:DT_PWMS_LABEL_BY_IDX, :c:macro:DT_PWMS_LABEL_BY_NAME,
:c:macro:DT_PWMS_LABEL, :c:macro:DT_INST_PWMS_LABEL_BY_IDX,
:c:macro:DT_INST_PWMS_LABEL_BY_NAME, and
:c:macro:DT_INST_PWMS_LABEL was deprecated in favor of utilizing
:c:macro:DT_PWMS_CTLR and variants.
:c:macro:DT_IO_CHANNELS_LABEL_BY_IDX,
:c:macro:DT_IO_CHANNELS_LABEL_BY_NAME,
:c:macro:DT_IO_CHANNELS_LABEL,
:c:macro:DT_INST_IO_CHANNELS_LABEL_BY_IDX,
:c:macro:DT_INST_IO_CHANNELS_LABEL_BY_NAME, and
:c:macro:DT_INST_IO_CHANNELS_LABEL were deprecated in favor of utilizing
:c:macro:DT_IO_CHANNELS_CTLR and variants.
:c:macro:DT_DMAS_LABEL_BY_IDX,
:c:macro:DT_DMAS_LABEL_BY_NAME,
:c:macro:DT_INST_DMAS_LABEL_BY_IDX, and
:c:macro:DT_INST_DMAS_LABEL_BY_NAME were deprecated in favor of utilizing
:c:macro:DT_DMAS_CTLR and variants.
USB HID specific macros in <include/usb/class/usb_hid.h> are deprecated
in favor of new common HID macros defined in <include/usb/class/hid.h>.
USB HID Kconfig option USB_HID_PROTOCOL_CODE is deprecated. USB_HID_PROTOCOL_CODE does not allow to set boot protocol code for specific HID device. USB HID API function usb_hid_set_proto_code() can be used instead.
USB HID class API is changed by removing get_protocol/set_protocol and get_idle/set_idle callbacks. These callbacks are redundant or do not provide any additional value and have led to incorrect usage of HID class API.
The CONFIG_OPENOCD_SUPPORT Kconfig option has been deprecated in favor
of CONFIG_DEBUG_THREAD_INFO.
Disk API header <include/disk/disk_access.h> is deprecated in favor of
<include/storage/disk_access.h>.
:c:func:flash_write_protection_set().
The CONFIG_NET_CONTEXT_TIMESTAMP is removed as it was only able to work
with transmitted data. The same functionality can be achieved by setting
CONFIG_NET_PKT_RXTIME_STATS and CONFIG_NET_PKT_TXTIME_STATS options.
These options are also able to calculate the RX & TX times more accurately.
This means that support for the SO_TIMESTAMPING socket option is also removed
as it was used by the removed config option.
The device power management (PM) APIs and data structures have been renamed
from device_pm_* to pm_device_* since they are not device APIs but PM
subsystem APIs. The same applies to enumerations and definitions, they now
follow the PM_DEVICE_* convention. Some other API calls such as
device_set_power_state and device_get_power_state have been renamed to
pm_device_state_set and pm_device_state_get in order to align with
the naming of other device PM APIs.
The runtime device power management (PM) APIs is now synchronous by default
and the asynchronous API has the _async sufix. This change aligns the API
with the convention used in Zephyr. The affected APIs are
pm_device_put and pm_device_get.
The following functions, macros, and structures related to the kernel work queue API:
k_work_pending() replace with :c:func:k_work_is_pending()k_work_q_start() replace with :c:func:k_work_queue_start()k_delayed_work replace with :c:struct:k_work_delayablek_delayed_work_init() replace with
:c:func:k_work_init_delayablek_delayed_work_submit_to_queue() replace with
:c:func:k_work_schedule_for_queue() or
:c:func:k_work_reschedule_for_queue()k_delayed_work_submit() replace with :c:func:k_work_schedule()
or :c:func:k_work_reschedule()k_delayed_work_pending() replace with
:c:func:k_work_delayable_is_pending()k_delayed_work_cancel() replace with
:c:func:k_work_cancel_delayable()k_delayed_work_remaining_get() replace with
:c:func:k_work_delayable_remaining_get()k_delayed_work_expires_ticks() replace with
:c:func:k_work_delayable_expires_get()k_delayed_work_remaining_ticks() replace with
:c:func:k_work_delayable_remaining_get()K_DELAYED_WORK_DEFINE replace with
:c:macro:K_WORK_DELAYABLE_DEFINE==========================
Removed APIs in this release
Removed support for the old zephyr integer typedefs (u8_t, u16_t, etc...).
Removed support for k_mem_domain_destroy and k_mem_domain_remove_thread
Removed support for counter_read and counter_get_max_relative_alarm
Removed support for device_list_get
============================
Kernel
Added :c:func:k_mem_unmap() so anonymous memory mapped via :c:func:k_mem_map()
can be unmapped and virtual address reclaimed.
Added the ability to gather more statistics for demand paging, including execution time histograms for eviction algorithms and backing stores.
Architectures
ARC
ARM
AARCH32
AARCH64
x86
Added SoC configuration for Lakemont SoC.
Removed kconfig CONFIG_CPU_MINUTEIA as there is no user of this option.
Renamed kconfig CONFIG_SSE* to CONFIG_X86_SSE*.
Extended the pagetable generation script to allow specifying additional memory mapping during build.
x86-32
Bluetooth
Audio
Host
Added basic support for Direction Finding.
Added support for CTE connectionless transimission and reception over periodic advertising.
Refactored the HCI and ECC handling implementations.
Stopped auto updating the device name in the adv data.
Added support for logging security keys to be used by an air sniffer.
Fixed a bonding issue where the local bond data was not being updated after the remote device had removed it when the peer was not using the IRK stored in the bonding information.
Implemented the directory listing object to OTS.
Added a function to access the bt_conn_iso object.
Added a new configuration option for writeable device name.
Added a new configuration option for minimum encryption key size.
Added support for keypress notifications as an SMP responder.
Added a new option, BT_LE_ADV_OPT_FORCE_NAME_IN_AD, which forces the
device name to appear in the adv packet instead of the scan response.
Added a security level check when sending a notification or indication.
Added the ability to send HCI monitor traces over RTT.
Refactored the Bluetooth buffer configuration for simplicity. See the commit message of 6483e12a8ac4f495b28279a6b84014f633b0d374 for more info. Note however that the aforementioned commit message has two typos;
BT_CTLR_TX_BUFFER should be BT_CTLR_TX_BUFFERSBT_CTLR_TX_BUFFERS_SIZE should be BT_CTLR_TX_BUFFER_SIZEAdded support for concurrent advertising with multiple identities.
Changed the logic to disable scanning before setting the random address.
Fixed a crash where an ATT timeout occurred on a disconnected ATT channel.
Changed the pairing procedure to fail pairing when both sides have the same public key.
Fixed an issue where GATT requests could deadlock the RX thread.
Fixed an issue where a fixed passkey that was previously set could not be cleared.
Fixed an issue where callbacks for "security changed" and "pairing failed" were not always called.
Changed the pairing procedure to fail early if the remote device could not reach the required security level.
Fixed an issue where GATT notifications and Writes Without Response could be sent out of order.
Changed buffer ownership of bt_l2cap_chan_send.
The application must now release the buffer for all returned errors.
Mesh
LPNTimeout in cfg_srv.Bluetooth LE split software Controller
HCI Driver
Boards & SoC Support
Added support for these SoC series:
Removed support for these SoC series:
Made these changes in other SoC series:
Changes for ARC 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
Bluetooth
CONFIG_BT_CTLR_TO_HOST_UART_DEV_NAME was removed.
Use the :ref:zephyr,bt-c2h-uart chosen node <devicetree-chosen-nodes>
directly instead.CAN
A driver for CAN-FD based on the Bosch M_CAN IP was added. The driver currently supports STM32G4 series MCUs. Additional support for Microchip SAM and NXP chips is in progress.
The CAN ISO-TP subsystem was enhanced to allow padding and fixed addressing.
Clock Control
Console
UART_CONSOLE_INPUT_EXPIRED and UART_CONSOLE_INPUT_EXPIRED_TIMEOUT
Kconfig options to notify the power management module that UART console is
in use now and forbid it to enter low-power states.Counter
DAC
Disk
Display
Disk
disk_access_*.c) to drivers/disk and renamed
according to their function.sdmmc_spi.c driver.DMA
EEPROM
ESPI
Ethernet
Flash
GPIO
gpio_dt_spec: a new structure which makes it more convenient to
access GPIO configuration in the :ref:devicetree <dt-guide>.gpio_dt_spec values:
:c:macro:GPIO_DT_SPEC_GET_BY_IDX, :c:macro:GPIO_DT_SPEC_GET_BY_IDX_OR,
:c:macro:GPIO_DT_SPEC_GET, :c:macro:GPIO_DT_SPEC_GET_OR,
:c:macro:GPIO_DT_SPEC_INST_GET_BY_IDX,
:c:macro:GPIO_DT_SPEC_INST_GET_BY_IDX_OR,
:c:macro:GPIO_DT_SPEC_INST_GET, and :c:macro:GPIO_DT_SPEC_INST_GET_ORgpio_dt_spec values:
:c:func:gpio_pin_configure_dt, :c:func:gpio_pin_interrupt_configure_dtGPIO_INT_* flags in :c:func:gpio_pin_configure().
The feature has been deprecated in the Zephyr 2.2 release. The interrupt
flags are now accepted by :c:func:gpio_pin_interrupt_configure()
function only.Hardware Info
I2C
I2S
IEEE 802.15.4
Fixed various issues in IEEE 802.15.4 L2 driver.
nrf5:
rf2xx:
Interrupt Controller
LED
LoRa
Modem
PWM
Sensor
Serial
SPI
Timer
USB
Watchdog
WiFi
Converted eswifi and esp drivers to new DT device macros
esp:
Networking
CoAP:
DHCPv4:
DNS:
HTTP:
IPv4:
LwM2M:
Misc:
OpenThread:
Socket:
TCP:
TLS:
USB
Reworked USB classes configuration. Various minor fixes in USB DFU class.
USB HID class
Samples
Build and Infrastructure
Improved support for additional toolchains:
Devicetree
:c:macro:DT_COMPAT_GET_ANY_STATUS_OKAY: new macro
the 96b-lscon-3v3 and 96b-lscon-1v8 :ref:compatible properties <dt-important-props> now have linaro, vendor prefixes, i.e. they are
now respectively :dtcompatible:linaro,96b-lscon-3v3 and
:dtcompatible:linaro,96b-lscon-1v8.
This change was made to bring Zephyr's devicetrees into compliance with an upstream Linux regular expression used to validate compatible properties. This regular expression requires a letter as the first character.
West (extensions)
This section only covers west :ref:west-extensions maintained in the
zephyr repository. For release notes on west's built-in features, see
:ref:west-release-notes.
Changes to the runners backends used for :ref:flashing and debugging commands <west-build-flash-debug>:
bossac runner: added legacy mode option into extended SAM-BA bootloader selection. This extends compatibility between Zephyr and some Arduino IDE bootloaders.
jlink runner: Zephyr thread awareness is now available in GDB by default
for application builds with :kconfig:option:CONFIG_DEBUG_THREAD_INFO set to y
in :ref:kconfig. This applies to west debug, west debugserver,
and west attach. JLink version 7.11b or later must be installed on the
host system, with JLink 7.20 or later strongly recommended.
jlink runner: default west flash output is less verbose. The old
behavior is still available when run as west --verbose flash.
jlink runner: when flashing, this runner now prefers a .hex file
generated by the build system to a .bin. Unlike .bin, the HEX
format includes information on the image's address range in flash, so
this works better when flashing Zephyr images linked for locations other
than the target's boot address, e.g. images meant to be run by
bootloaders. The .bin file is still used as a fallback if a HEX File
is not present.
openocd runner: support for west debug and west attach has been
fixed. Previously with this runner, west debug behaved like west attach should, and west attach behaved like west debugserver
should.
pyocd runner: board-specific pyOCD configuration files in YAML can now be
placed in :file:support/pyocd.yaml inside the board directory. See
boards/arm/reel_board/support/pyocd.yaml for an example,
and the pyOCD documentation for details on its configuration format.
west spdx: new command which can be used to generate SPDX software
bills of materials for a Zephyr application build. See :ref:west-spdx.
Libraries / Subsystems
Disk
disk_access_*.c) are moved to drivers/disk and renamed
according to their function. Driver's Kconfig options are revised and renamed.
SDMMC host controller drivers are selected when the corresponding node
in devicetree is enabled. Following application relevant Kconfig options
are renamed: CONFIG_DISK_ACCESS_RAM -> CONFIG_DISK_DRIVER_RAM,
CONFIG_DISK_ACCESS_FLASH -> CONFIG_DISK_DRIVER_FLASH,
CONFIG_DISK_ACCESS_SDHC -> CONFIG_DISK_DRIVER_SDMMC.Management
MCUmgr
fs_file_t
structures.CMSIS subsystem
Power management
device_pm_control_nop has been removed in favor of NULL when device
PM is not supported by a device. In order to make transition easier for
out-of-tree users a macro with the same name is provided as an alias to
NULL. The macro is flagged as deprecated to make users aware of the
change.
Devices set as busy are no longer suspended by the system power management.
The time necessary to exit a sleep state and return to the active state was
added in zephyr,power-state binding and accounted when the system
changes to a power state.
Device runtime power management (PM), former IDLE runtime, was completely overhauled.
pm_device_get_async and
pm_device_put_async) to finish.pm_device_wait was added so that drivers can easily
wait for an async request to finish.pre-kernel <api_term_pre-kernel-ok> stages.Logging
log_strdup()). Legacy mode remains and is still the default
but user API is not changed and modes are interchangeable.
CONFIG_LOG2_MODE_DEFERRED or CONFIG_LOG2_MODE_IMMEDIATE enable
logging v2. Logging backend API is extended to support v2 and the most
popular backends (UART, shell) are updated.Shell
CONFIG_SHELL_BACKEND_DUMMY_BUF_SIZE option that allows to set
size of the dummy backend buffer; changing this parameter allows to work
around issue, where output from command, shell that is gathered by the dummy
backend, gets cut to the size of buffer.Storage
Task Watchdog
This new subsystem was added with this release and allows supervision of individual threads. It is based on a regularly updated kernel timer, whose ISR is never actually called in regular system operation.
An existing hardware watchdog can be used as an optional fallback if the task watchdog itself gets stuck.
Tracing
CONFIG_TRACING_CPU_STATS was removed in favor of
CONFIG_THREAD_RUNTIME_STATS which provides per thread statistics. The
same functionality is also available when Thread analyzer is enabled with
the runtime statistics enabled.Debug
OS
subsys/os from subsys/power.
A consequence of this movement is that the <power/reboot.h> header has
been moved to <sys/reboot.h>. <power/reboot.h> is still provided
for compatibility, but it will produce a warning to inform users of the
relocation.HALs
Trusted Firmware-m
Synchronized Trusted-Firmware-M module to the upstream v1.3.0 release.
Configured QEMU to run Zephyr samples and tests in CI on mps2_an521_nonsecure (Cortex-M33 Non-Secure) with TF-M as the secure firmware component.
Added Kconfig options for selecting the desired TF-M profile and build type
Added Kconfig options for enabling the desired TF-M secure partitions
Added a new sample to run the PSA tests with Zephyr
Added a new sample to run the TF-M regression tests using the Zephyr build system
Added support for new platforms
NOTE: Trusted-Firmware-M can not currently be used with mbedtls 2.26.0 when
PSA APIs are enabled in mbedtls (MBEDTLS_USE_PSA_CRYPTO and
MBEDTLS_PSA_CRYPTO_C). If both TF-M and mbedtls are required, mbedtls
must be used without the PSA APIs. This will be resolved in a future
update to mbedtls.
Documentation
doxyrunner custom extension. The
new extension centralizes multiple scattered workarounds that existed before
in a single place.WARN_AS_ERROR enabled.warnings_filter. This extension removes the need of post-processing
the Sphinx output and allows to use the -W option (treat warnings as
errors) which has been enabled by default.external_content extension.-j auto).Makefile has been moved from the repository root
to the doc folder.Tests and Samples
Twister's dt_compat_enabled_with_alias() test case filter was deprecated
in favor of a new dt_enabled_alias_with_parent_compat() filter. The old
filter is still supported, but it may be removed in a future release.
To update, replace uses like this:
.. code-block:: yaml
filter: dt_compat_enabled_with_alias("gpio-leds", "led0")
with:
.. code-block:: yaml
filter: dt_enabled_alias_with_parent_compat("led0", "gpio-leds")
Add a feature which handles pytest script in twister and provide an example.
Provide test execution time per ztest testcase.
Added and refined some testcases, most of them are negative testcases, to improve the test code coverage:
Issue Related Items
These GitHub issues were addressed since the previous 2.5.0 tagged release:
35962 - drivers using deprecated Kconfigs35955 - Bluetooth: Controller: Regression in connection setup35949 - can: mcan: sjw-data devicetree configuration is not written correctly35941 - subsys: tracing: sysview: No SEGGER_SYSVIEW.h in path35926 - Shell tab-completion with more than two levels of nested dynamic commands fails35924 - Help with Configuring Custom GPIO Pins35916 - drivers: TI cc13xx_cc26xx: build error when PM is enabled (serial, entropy, spi, i2c modules)35911 - shield sample sensorhub does not produce and meaningful data35910 - LIS2MDL reporting wrong temperature35896 - frdm_k64f: build failure missing dt-bindings/clock/kinetis_sim.h: No such file or directory35890 - Build system ignores explicit ZephyrBuildConfiguration_ROOT variable35882 - Fixed width documentation makes DT bindings docs unreadable35876 - Bluetooth: host: CCC store not correctly handled for multiple connections35871 - LPS22HH sensor reporting wrong pressure data35840 - Bluetooth: host: L2CAP enhanced connection request conformance test issues35838 - Bluetooth: ISO: BIG termination doesn't fully unref the connection35826 - LORAWAN Compatibility with nrf52832 and sx126235813 - Zephyr Native Posix Build Uses Linux Build Machine Headers out of Sandbox35812 - ESP32 Factory app partition is not bootable35781 - Missing response parameter for HCI_LE_Set_Connectionless_IQ_Sampling_Enable HCI command35772 - Support C++ exceptions on NIOS235764 - tests: kernel: threads: no multithreading: fails with CONFIG_STACK_SENTINEL=y35762 - SAMPLES: shell_module gives no console output on qemu_leon335756 - ESP32 Ethernet Support35737 - drivers: can: mcan: sjw not initialized when CAN_FD_MODE is enabled35714 - samples: subsys: testusb: I want to know how to test in window10.35713 - tests: kernel.scheduler.multiq: test_k_thread_suspend_init_null failure35694 - No console output from NIOS2 Max1035693 - gpio_mcux_lpc.c uses devicetree instance numbers incorrectly35686 - Bluetooth: Crash in bt_gatt_dm_attr_chrc_val when BLE device is disconnected during discovery process35681 - Unable to get ouput for samples/subsys/logging/logger and samples/philosophers35677 - samples/subsys/console/getchar and samples/subsys/console/getline build breaks for arduino_nano_33_ble35655 - Arm64: Assertion failed when CONFIG_MP_CPUS >= 3.35653 - ARC MWDT toolchain put __start and __reset at different address35633 - Out of bound read: Multiple Coverity sightings in generated code35631 - [Coverity CID: 205610] Out-of-bounds read in /zephyr/include/generated/syscalls/kernel.h (Generated Code)35630 - [Coverity CID: 205657] Out-of-bounds read in /zephyr/include/generated/syscalls/sample_driver.h (Generated Code)35629 - [Coverity CID: 207968] Out-of-bounds read in /zephyr/include/generated/syscalls/counter.h (Generated Code)35628 - [Coverity CID: 207976] Out-of-bounds read in /zephyr/include/generated/syscalls/counter.h (Generated Code)35627 - [Coverity CID: 208195] Out-of-bounds read in /zephyr/include/generated/syscalls/gpio.h (Generated Code)35626 - [Coverity CID: 210588] Out-of-bounds read in /zephyr/include/generated/syscalls/dac.h (Generated Code)35625 - [Coverity CID: 211042] Out-of-bounds read in /zephyr/include/generated/syscalls/socket.h (Generated Code)35624 - [Coverity CID: 214226] Out-of-bounds read in /zephyr/include/generated/syscalls/uart.h (Generated Code)35623 - [Coverity CID: 215223] Out-of-bounds read in /zephyr/include/generated/syscalls/net_ip.h (Generated Code)35622 - [Coverity CID: 215238] Out-of-bounds read in /zephyr/include/generated/syscalls/net_ip.h (Generated Code)35621 - [Coverity CID: 219477] Out-of-bounds read in /zephyr/include/generated/syscalls/pwm.h (Generated Code)35620 - [Coverity CID: 219482] Out-of-bounds read in /zephyr/include/generated/syscalls/pwm.h (Generated Code)35619 - [Coverity CID: 219496] Out-of-bounds read in /zephyr/include/generated/syscalls/ztest_error_hook.h (Generated Code)35618 - [Coverity CID: 219506] Out-of-bounds read in /zephyr/include/generated/syscalls/log_ctrl.h (Generated Code)35617 - [Coverity CID: 219568] Out-of-bounds read in /zephyr/include/generated/syscalls/net_if.h (Generated Code)35616 - [Coverity CID: 219586] Out-of-bounds read in /zephyr/include/generated/syscalls/net_if.h (Generated Code)35615 - [Coverity CID: 219648] Uninitialized scalar variable in /zephyr/include/generated/syscalls/test_syscalls.h (Generated Code)35614 - [Coverity CID: 219725] Out-of-bounds read in /zephyr/include/generated/syscalls/kernel.h (Generated Code)35613 - [Coverity CID: 225900] Out-of-bounds access in tests/net/lib/dns_addremove/src/main.c35612 - [Coverity CID: 229325] Out-of-bounds read in /zephyr/include/generated/syscalls/log_msg2.h (Generated Code)35611 - [Coverity CID: 230223] Out-of-bounds read in /zephyr/include/generated/syscalls/log_msg2.h (Generated Code)35610 - [Coverity CID: 232755] Out-of-bounds read in /zephyr/include/generated/syscalls/log_ctrl.h (Generated Code)35609 - [Coverity CID: 235917] Out-of-bounds read in /zephyr/include/generated/syscalls/log_msg2.h (Generated Code)35608 - [Coverity CID: 235923] Out-of-bounds read in /zephyr/include/generated/syscalls/log_msg2.h (Generated Code)35607 - [Coverity CID: 235933] Out-of-bounds read in /zephyr/include/generated/syscalls/gpio.h (Generated Code)35606 - [Coverity CID: 235951] Out-of-bounds read in /zephyr/include/generated/syscalls/log_ctrl.h (Generated Code)35605 - [Coverity CID: 236005] Out-of-bounds read in /zephyr/include/generated/syscalls/log_ctrl.h (Generated Code)35604 - [Coverity CID: 236129] Unused value in drivers/adc/adc_lmp90xxx.c35603 - [Coverity CID: 236130] Wrong sizeof argument in drivers/adc/adc_lmp90xxx.c35596 - Bluetooth: Cannot connect if extended advertising is enabled in prj.conf35586 - Timer based example on docu using nrf52-dk compile error.35580 - Fault when logging35569 - tests/lib/mem_alloc failed with arcmwdt toolchain35567 - some mwdt compiler options can't be recognized by zephyr_cc_option35561 - Issue with fat_fs example on nucleo_f767zi35553 - all menuconfig interfaces contain sound open firmware/SOF text35543 - samples: subsys: display: lvgl: is run on nucleo_f429zi and nucleo_f746zg but should be skipped35541 - sockets_tls: when using dtls with sara-r4 modem, handshake hangs if no reply35540 - tests: ztest: error_hook: fails on nucleo_g071rb and nucleo_l073rz35539 - tests: drivers: spi: spi_loopback: test failed since #34731 is merged35524 - tests: samples: led: LED PWM sample fails on nrf platforms35522 - doc: Current section is not shown in the side pane nor the page top cookie35512 - OpenThread can't find TRNG driver on nRF534035509 - tests: timer: Unstable tests using timer at nrf platforms35489 - samples: net: gsm_modem: build fails if CONFIG_GSM_MUX=y35480 - pm: device_runtime: pm_device_request can block forever35479 - address is not a known kernel object exception with arcmwdt toolchain35476 - bluetooth: controller assertion when scanning with multiple active connections35474 - The dma-stm32 driver don't build for STM32F0 MCUs35444 - drivers: sensor: sbs-gauge: The sbs-gauge cannot be read from sensor shell35401 - Enabling POSIX_API leads to SSL handshake error35395 - STM32F4: Infinite reboot loop due to Ethernet initialization35390 - net.socket.tls.tls_ext: frdm_k64f test failure35383 - Can't setup ISO Broadcast Demo on nrf53dk35380 - sys: timeutil: inconsistent types for local times35363 - bt_gatt_discover() retunrs incorrect handle (offset by -1)35360 - Power consumption nRF5235352 - [Coverity CID: 215376] Out-of-bounds access in drivers/sensor/lis2dh/lis2dh_trigger.c35351 - [Coverity CID: 219472] Unrecoverable parse warning in tests/kernel/mem_protect/mem_protect/src/mem_domain.c35350 - [Coverity CID: 236055] Out-of-bounds access in subsys/modbus/modbus_core.c35349 - [Coverity CID: 236057] Unrecoverable parse warning in tests/kernel/mem_protect/mem_protect/src/mem_domain.c35348 - [Coverity CID: 236060] Out-of-bounds access in subsys/net/l2/ppp/ppp_l2.c35347 - [Coverity CID: 236064] Dereference null return value in subsys/bluetooth/controller/ll_sw/ull.c35346 - [Coverity CID: 236069] Out-of-bounds access in tests/lib/c_lib/src/main.c35345 - [Coverity CID: 236074] Out-of-bounds access in tests/lib/c_lib/src/main.c35344 - [Coverity CID: 236075] Out-of-bounds access in subsys/bluetooth/controller/hci/hci.c35343 - [Coverity CID: 236079] Untrusted divisor in subsys/bluetooth/controller/hci/hci.c35342 - [Coverity CID: 236085] Dereference after null check in samples/userspace/prod_consumer/src/app_a.c35341 - twister: Hardware map creation is buggy (+ inaccurate docs)35338 - USB: ethernet CDC ECM/EEM support is broken35336 - tests: samples: power: samples/subsys/pm/device_pm/sample.power.ospm.dev_idle_pm fails on nrf52 platforms35329 - samples: gsm_modem: Compilation failed, likely related to logging changes35327 - Sensor Code for CC3220sf35325 - Shell: Kernel: Reboot: echo is abruptly terminated35321 - Improve STM32: Serial Driver,Handle uart mode per instance35307 - ARM64 system calls are entered with interrupts masked35305 - Linking order when using both TF-M and Mbed TLS35299 - PM suspend IPC message sporadically not being delivered35297 - STM32 SPI - wrong behavior after PR 3473135286 - New logging breaks eclipse35278 - LittleFs Sample will not build for qemu_riscv64 sample target35263 - device_pm_control_nop is used in dac_mcp4725.c35242 - intel_adsp_cavs15: run kernel common testcases failed on ADSP35241 - intel_adsp_cavs15: run interrupt testcases failed on ADSP35236 - tests: doc: Document generation process FAILS with valid module samples:35223 - Coverity [CID 221772]: Wrong operator used in logging subsystem, multiple violations35220 - tests: dma: memory-to-memory transfer fails on stm32f746zg nucleo board35219 - tests: driver: dma test case loop_transfer fails on stm32 with dmamux35215 - tests/kernel/msgq/msgq_usage failed on hsdk board35209 - tests/kernel/mem_heap/mheap_api_concept failed on hsdk board35204 - PPI channel assignment for Bluetooth controller is incorrect for nRF5280535202 - smp atomic_t global_lock will never be cleared when a thread oops with global_lock is set35200 - tests/kernel/smp failed on hsdk board35199 - Queues: there is no documentation about queue's implementation.35198 - subsys.pm.device_pm: frdm_k64f leave idel fails35197 - Zephyr Project Development with 2 Ethernet Interfaces Supported (eth0, and eth1)35195 - doc, coding guidelines: broken CERT-C links35191 - GIT Checkout of Master Branch is 2.6.0rc1 versus west update as 2.5.9935189 - Coding Guidelines: Resolve the issues under Rule 21.235187 - Version selection not working35176 - strtol crashes35175 - quectel-bg9x crashes in modem_rssi_query_work35169 - esp32: uart_poll_in never ready for UART2 only35163 - [Coverity CID: 236009] Wrong sizeof argument in tests/lib/cbprintf_package/src/test.inc35162 - [Coverity CID: 235972] Wrong sizeof argument in tests/lib/cbprintf_package/src/test.inc35161 - [Coverity CID: 235962] Unused value in tests/kernel/mem_protect/mem_map/src/main.c35160 - [Coverity CID: 235930] Unused value in kernel/mmu.c35159 - [Coverity CID: 232698] Uninitialized scalar variable in samples/net/sockets/txtime/src/main.c35158 - [Coverity CID: 224630] Uninitialized scalar variable in subsys/net/ip/igmp.c35157 - [Coverity CID: 221380] Uninitialized scalar variable in subsys/bluetooth/controller/ll_sw/ull_iso.c35156 - [Coverity CID: 235979] Unchecked return value in drivers/sensor/iis2mdc/iis2mdc_trigger.c35155 - [Coverity CID: 235677] Unchecked return value in drivers/gpio/gpio_cy8c95xx.c35154 - [Coverity CID: 233524] Unchecked return value in include/drivers/dma.h35153 - [Coverity CID: 236006] Structurally dead code in tests/subsys/logging/log_api/src/test.inc35152 - [Coverity CID: 235986] Structurally dead code in tests/subsys/logging/log_api/src/test.inc35151 - [Coverity CID: 235943] Reliance on integer endianness in include/sys/cbprintf_cxx.h35150 - [Coverity CID: 225136] Out-of-bounds write in tests/kernel/sched/deadline/src/main.c35149 - [Coverity CID: 234410] Out-of-bounds read in tests/kernel/sched/preempt/src/main.c35148 - [Coverity CID: 236015] Out-of-bounds access in tests/subsys/logging/log_api/src/mock_backend.c35147 - [Coverity CID: 236012] Out-of-bounds access in subsys/bluetooth/audio/vcs_client.c35146 - [Coverity CID: 235994] Out-of-bounds access in tests/kernel/interrupt/src/interrupt_offload.c35145 - [Coverity CID: 235984] Out-of-bounds access in include/sys/cbprintf_cxx.h35144 - [Coverity CID: 235944] Out-of-bounds access in subsys/bluetooth/audio/vcs_client.c35143 - [Coverity CID: 235921] Out-of-bounds access in include/sys/cbprintf_cxx.h35142 - [Coverity CID: 235914] Out-of-bounds access in subsys/bluetooth/audio/vcs.c35141 - [Coverity CID: 235913] Out-of-bounds access in subsys/bluetooth/audio/vcs.c35140 - [Coverity CID: 231072] Out-of-bounds access in tests/kernel/sched/preempt/src/main.c35139 - [Coverity CID: 229646] Out-of-bounds access in subsys/bluetooth/audio/vocs.c35138 - [Coverity CID: 229545] Out-of-bounds access in tests/subsys/canbus/isotp/conformance/src/main.c35137 - [Coverity CID: 225993] Out-of-bounds access in tests/subsys/canbus/isotp/conformance/src/main.c35136 - [Coverity CID: 235916] Operands don't affect result in drivers/adc/adc_stm32.c35135 - [Coverity CID: 235911] Negative array index write in tests/subsys/logging/log_api/src/mock_backend.c35134 - [Coverity CID: 222151] Negative array index write in tests/subsys/logging/log_msg2/src/main.c35133 - [Coverity CID: 232501] Missing varargs init or cleanup in subsys/logging/log_msg2.c35132 - [Coverity CID: 236003] Logically dead code in subsys/bluetooth/audio/vcs.c35131 - [Coverity CID: 235998] Logically dead code in subsys/bluetooth/audio/vcs.c35130 - [Coverity CID: 235997] Logically dead code in drivers/adc/adc_stm32.c35129 - [Coverity CID: 235990] Logically dead code in subsys/bluetooth/audio/vcs.c35128 - [Coverity CID: 235970] Logically dead code in subsys/bluetooth/audio/vcs.c35127 - [Coverity CID: 235965] Logically dead code in tests/subsys/logging/log_api/src/test.inc35126 - [Coverity CID: 235961] Logically dead code in tests/subsys/logging/log_api/src/test.inc35125 - [Coverity CID: 235956] Logically dead code in subsys/bluetooth/audio/vcs.c35124 - [Coverity CID: 235955] Logically dead code in subsys/bluetooth/audio/vcs.c35123 - [Coverity CID: 235954] Logically dead code in subsys/bluetooth/audio/vcs.c35122 - [Coverity CID: 235952] Logically dead code in subsys/bluetooth/audio/vcs.c35121 - [Coverity CID: 235950] Logically dead code in subsys/bluetooth/audio/vcs.c35120 - [Coverity CID: 235934] Logically dead code in subsys/bluetooth/audio/vcs.c35119 - [Coverity CID: 235932] Logically dead code in samples/sensor/adxl372/src/main.c35118 - [Coverity CID: 235919] Logically dead code in samples/sensor/bmg160/src/main.c35117 - [Coverity CID: 235945] Incorrect sizeof expression in include/sys/cbprintf_cxx.h35116 - [Coverity CID: 235987] Incompatible cast in include/sys/cbprintf_cxx.h35115 - [Coverity CID: 236000] Improper use of negative value in tests/lib/cbprintf_package/src/test.inc35114 - [Coverity CID: 221976] Division or modulo by zero in tests/drivers/can/timing/src/main.c35113 - [Coverity CID: 235985] Dereference before null check in subsys/bluetooth/audio/vcs_client.c35112 - [Coverity CID: 235983] Dereference after null check in samples/sensor/max17262/src/main.c35111 - [Coverity CID: 234630] Dereference after null check in tests/net/dhcpv4/src/main.c35110 - [Coverity CID: 220616] Arguments in wrong order in tests/subsys/canbus/isotp/conformance/src/main.c35108 - tests: drivers: pwm: pwm_api: failed on nucleo_f207zg35107 - Atmel SAM E70 / Cortex-M7 fails to boot if CONFIG_NOCACHE_MEMORY=y35104 - arch.interrupt.gen_isr_table.arm_mainline: fails on lpcxpresso55s16_ns35102 - testing.ztest.error_hook: fails on lpcxpresso55s16_ns35100 - libraries.libc.sprintf_new: fails on lpcxpresso55s16_ns and lpcxpresso55s69_ns35099 - benchmark.kernel.application.fp.arm: Illegal load of EXC_RETURN into PC on lpcxpresso55s16_ns and lpcxpresso55s69_ns35097 - arch.interrupt: fails on NXP Cortex-M0+ platforms35091 - enc424j600 does not work35089 - stm32h7: systematic crash at each second boot with NETWORKING=y35083 - dts: stm32mp1: SPI2 mixup with SAI2, SPI3 mixup with SAI335082 - intel_adsp_cavs15: All the testcases run failed on ADSP35079 - acrn_ehl_crb: build warnings for old APIC_TIMER configs35076 - acrn_ehl_crb does not work with CPUs >135075 - .west/config west.yml and zephyr versioning during project development35073 - timer: cortex_m_systick: uptime drifting in tickless mode35060 - tests/kernel/common: test_nop failed on ARMV7_M_ARMV8_M_MAINLINE35058 - Bluetooth: deadlock when canceling db_hash.work from settings commit handler35051 - CONFIG_LOG2 fails for floating point output with warning and bad output35048 - mcuboot with enabled serial recovery does not compile35046 - Tracing shows k_busy_wait() being executed very often on nRF platforms35043 - NXP: Build error : ModuleNotFoundError: No module named 'elftools'35041 - Crash in net-shell when invoking "net dns" command35036 - STM32: Wrong uart_event_tx len calculation35033 - samples/boards: stm32 pm blinky fails when run with twister35028 - frdm_k64f: failed to run tests/subsys/pm/power_mgmt/35027 - frdm_k64f: failed to run testcase tests/drivers/adc/adc_emul/35026 - sam_e70b_xplained: failed to run testcases tests/drivers/adc/adc_emul/35013 - Bluetooth: Controller: Out-of-Bound ULL context access during connection completion34999 - Using BT_ISO bluetooth hci_usb sample, and enable, but still shows no command supported34989 - Implement arch_page_phys_get() for ARM6434979 - MIMRT685-EVK board page has broken links34978 - misleading root folder size in footprint reports34969 - Documentation still mentions deprecated macro DT_INST_FOREACH_STATUS_OKAY34964 - net regression: Connection to Zephyr server non-deterministically leads to client timeout, ENOTCONN on server side34962 - tfm: cmake: Toolchain not being passed into psa-arch-tests34950 - xtensa arch :The source code version is too old34948 - SoF module is not pointing at Zehpyr repo34935 - LwM2M: Block transfer with TLV format does not work34932 - drvers/flash/nrf_qspi_nor: high power consumption on nrf5284034931 - dns resolve timeout leads to CPU memory access violation error34925 - tests/lib/cbprintf_package fails to build34923 - net.socket.get_addr_info: frdm_k64f test fails34917 - arch.interrupt.arm| arch.interrupt.extra_exception_info: lpcxpresso55s28 series: test failure34915 - arch.interrupt.gen_isr_table.arm_mainline:lpcxpresso55s16_ns/lpcxpresso55s28: interrupt 57 does not work34911 - tests/kernel/mem_protect/mem_protect: frdm_k82f/frdm_k64f unexpected fatal error34909 - dma_loopback:lpcxpresso55s28_ns driver test failure34904 - uart_mcux_lpuart: Enable driver to work with CONFIG_MULTITHREADING=n34903 - doc: Target name is wrong for rcar_h3ulcb board34891 - mcumgr timeout due to smp_shell_process stalling34880 - Convert SoF Module to new kwork API34865 - CONFIG_NET_SOCKETS_PACKET interferes with other network traffic (gptp, IP)34862 - CAN ISO-TP implementation not using local work queue34852 - Some bluetooth advertising packages never get transmitted over-air (Bluetooth Mesh application)34844 - qemu_cortex_a53_smp: tests/ztest/error_hook failed after enabling the FPU context switching support34840 - CONFIG_MULTITHREADING=n is not tested on hardware platforms34838 - tests/subsys/logging/log_msg2 failes on qemu_cortex_a5334837 - Unstable multi connections between NRF5284034827 - tests: power management: test_power_state_trans fails on nrf boards34796 - x86 jlink runner fails on M1 macs34794 - LIS2DH Hard Fault when INT2 is not defined34788 - APIC timer does not support SMP34777 - semaphore and condvar_api tests fails after ARM64 FPU context switch commit on qemu_cortex_a53_smp34772 - Mixed usage of signed/unsigned integer by the logging subsystem34757 - west update: Default behavior should fetch only --depth 134753 - Building and Debugging Zephyr for Native Platform on Linux using VSCode and/or QtCreator34748 - Native posix: Segmentation fault in case of allocations without explicit heap assignment34739 - tests/arch/arm/arm_no_multithreading/arch.arm.no_multithreading fails to build on a number of platforms34734 - Can handler doesn't compile with CONFIG_USERSPACE34722 - nvs: possibility of losing data34716 - flash: spi_nor: build fails when CONFIG_SPI_NOR_SFDP_RUNTIME is enabled34696 - Unable to select LOG_DICTIONARY_SUPPORT when TEST_LOGGING_DEFAULTS=y34690 - net: process_rx_packet() work handler violates requirements of Workqueue Threads implementation34687 - intel_adsp_cavs15: run tests/kernel/semaphore/semaphore/ failed on ADSP34683 - MCUboot not confirm image when using 'west flash'34672 - stm32h7: issue with CONFIG_UART_ASYNC_API=y34670 - smp_svr sample configured for serial port with shell management enabled does not work34669 - uart_read_fifo() reads only 2 chars on nucleo STM32L43KC and nRF52840-DK34668 - i2c_ite_it8xxx2.c fails to build - possibly related to device_pm_control_nop changes34667 - posix_apis:mimxrt685_evk_cm33 timeout in test_posix_realtime34662 - many udp networking cases fail on nxp platforms34658 - TF-M integration samples do not work with GNU ARM Embedded having GCC v10.x.x34656 - STM32 ADC - read of multiple channels in a sequence34644 - CAN - Bus Driver Sample34635 - BME280 build error34633 - STM32: Mass conversion of boards to dts based clock control configuration34624 - Coding guidelines 15.7 PR causes tests failures34605 - flash_stm32h7x.c fails to build34601 - sample: bluetooth: beacon: USAGE FAULT after few seconds on board b_l4s5i_iot01a34597 - Mismatch between ot ping and net ping34593 - Using hci_usb with Bluez 5.55 or 5.5834585 - mec15xxevb_assy6853: test_timeout_order in tests/kernel/common assertion failed34584 - kernel: workqueue thread is occasionally not invoked when kernel is run in cooperative mode only34583 - twister failing: fails platform native_posix, test lib/cmsis_dsp/filtering34581 - Unable to work with SX1276 Lora module.34570 - IPC samples running secure but configured nonsecure (AN521)34568 - Compilation error with zephyr 2.3.034563 - net: lib: sockets: Unable to select() file descriptors with number >= 3234558 - Compilation error with Log v2 and CONFIG_LOG_PRINTK34541 - per-adv-sync-create doesn't work on nRF52840, ./tests/bluetooth/shell/34538 - STM32 temperature sensor34534 - west sign regression when HEX file not exists34527 - Cpp compiling error: expected primary-expression before 'char'. _Generic macros problem34526 - logging tests fails to build on a number of platforms34515 - samples: net: syslog_net: hard fault when running on frdm_k64f34505 - mimxrt1050_evk:failed to run testcases tests/net34503 - up_squared and ehl_crb: test fails from timeout in application_development.cpp.libcxx.exceptions34500 - thingy52 lis2dh12 sensor values too large34495 - logger: Logger API cannot be compiled with C++34492 - Logging still broken with SOF34482 - net_tunnel_virtual:frdm_k64f: build failure34474 - MPS2-AN385 SRAM does not match what the documentation page says34473 - Add Requirements repository with infrastructure and placeholder requirements34469 - nrf53: nrf5340dk_nrf5340_cpunet not executing.34463 - LwM2M bootstrap DELETE operation not working34462 - samples: net: sockets: packet: reception stops working after a while34461 - Unable to use PWM pins with STM Nucleo H743ZI34443 - Document font display is incomplete34439 - Logging subsystem causes build to fail with LLVM34434 - subsys: testsuite: ztest framework breaks if run in cooperative mode only34426 - RFC: API Change: USB HID remove get_protocol/set_protocol/get_idle/set_idle callbacks34423 - twister build issue with arm6434419 - significant build time increase with new logging subsystem34416 - Configuration HAS_DTS has no function, preventing compile for vendors without device tree34409 - mDNS response on link local when using DHCPv4 and AutoIP/Static IP34403 - Logging disable function causes Zephyr hard lockup34402 - spi: spi_nrfx_spim: wrong clock frequency selected34397 - Update getting started docs to reflect gdb python requirements34387 - Error message in include/linker/kobject-text.ld is unclear34382 - fs/nvs: if closing ATE has to high offset NVS iterates up to the end of flash.34372 - CPU Lockups when using own Log Backend34369 - Driver esp for wifi got a dead lock.34368 - Cmake's Python path breaks after using west build --pristine34363 - k_work: incorrect return values for synchronous cancel34355 - LittleFS sample code catch an "undefined symbol 'ITCM_ADDR' referenced in expression" in linker step34345 - samples/net/civetweb/websocket_server fails to build34342 - No output on SWO pin (STM32L4)34341 - SWO logging and DWT timing collision34329 - lwm2m: pmin and pmax attributes should be optional34325 - hal: microchip: Missing Wake bit definitions34309 - unable to connect to azure iot hub via mqtt protocol34308 - SPI transceive function only transmitting first tx_buffer on Sifive's MCU34304 - intel_adsp_cavs15: run tests/kernel/queue/ failed on ADSP34295 - TensorFlow Lite Micro Module34280 - Add USB to LPCXpresso55S69 board34275 - drivers: led_pwm: Improper label assignment34272 - twister: Add memory footprint info to json report34270 - NVS read after consecutive restarts.34265 - BME280 Pressure calculation34264 - CI: twister: Add merged report from all sub-builds to buildkite build artifacts34262 - Unable to find detailed documentation on pinmux driver development34249 - Unable to initialize on STM32F103RE + Quectel EC21 using BG9x driver34246 - LoRa driver sending opcode of commands without parameters34234 - UART NS16550 Underflow Issue During Clearing Port34233 - OpenThread build issues34231 - uzlib (decompression library)34229 - C++ Exception Support in qemu_riscv32 emulation34225 - BBC micro:bit v1.5 LSM303AGR-ACCEL34216 - Using nrfx_gpiote library with spi(nrf52840)34214 - codes reference weak variable are optimized out34209 - BLE Mesh Provisioning generates value 0 outside of Specification for Blink, Beep, or Vibrate34206 - Question: Is zephyrproject actively maintaining the windows-curses sub-project?34202 - MPU Fault when running central coded bluetooth and ENC28J60 dhcpv4_client34201 - Fatal error when perform "bt phy-update" if there is not any connections at ./tests/bluetooth/shell34197 - samples: telnet: Tab completion not working in telnet shell34196 - st_lis2mdl: LSM303AGR-MAGN not detected34190 - Newbie: Simple C++ List App Builds for QEMU but not Native Posix Emulation34184 - video samples fail to build34178 - apds9960 sensor sample does not build on STM3234165 - SNTP fails to close the used socket34154 - AArch64 PR reviews and merges are lagging behind34152 - intel_adsp_cavs15: run tests/kernel/smp/ failed on ADSP34149 - Invalid link in Zephyr document to ACRN page34145 - Convert NXP kinetis boards to have pindata in devicetree34134 - USB do not works if bootloader badly use the device before34117 - ehl_crb: tests/kernel/context tests failed34116 - mec15xxevb_assy6853: tests/kernel/mutex/sys_mutex/34107 - Convert tests/benchmarks/mbedtls/src/benchmark.c to new kwork API34106 - Convert tests/kernel/pending/src/main.c to new kwork API34104 - Convert tests/benchmarks/footprints/src/workq.c to new kwork API34103 - Convert drivers/console/uart_mux.c to new kwork API34102 - Convert drivers/serial/uart_sam0.c to new kwork API34101 - Convert subsys/mgmt to new kwork API34100 - Convert subsys/shell/shell_telnet to new kwork API34099 - Convert subsys/tracing/cpu_stats.c to new kwork API34098 - Convert samples/drivers/led_sx1509b_intensity to new kwork API34097 - Convert samples/boards/reel_board/mesh_badge to new kwork API34096 - Convert samples nrf clock_skew to new kwork API34095 - Convert CAN to new kwork API34094 - Convert ubsys/ipc/rpmsg_service/rpmsg_backend.c to new kwork API34093 - Convert bluetooth to new kwork API34092 - Convert usb to new kwork API34091 - Convert uart_stm32.c to new kwork API34090 - Convert video_sw_generator.c to new kwork API34082 - Bullets are broken in documentation34076 - Unrecognized characters generated during document construction34068 - DOC BUILD FAIL34046 - Failed to build arm64 architecture related board34045 - samples: subsys: mgmt: smp_srv: UDP sample does not boot on frdm_k64f34026 - RISCV32 QEMU illegal instruction exception / floating point support34023 - test_prevent_interruption has wrong data type for key34014 - Toolchain Compile Error of RISC-V(rv32m1-vega board)34011 - NRF52840 DTS questions34010 - [Coverity CID: 220531] Copy into fixed size buffer in tests/net/socket/misc/src/main.c34009 - [Coverity CID: 220532] Unrecoverable parse warning in subsys/bluetooth/controller/ll_sw/ull_peripheral_iso.c34008 - [Coverity CID: 220533] Improper use of negative value in tests/net/socket/misc/src/main.c34007 - [Coverity CID: 220534] Out-of-bounds access in tests/arch/arm/arm_no_multithreading/src/main.c34006 - [Coverity CID: 220535] Dereference before null check in subsys/net/l2/virtual/virtual.c34005 - [Coverity CID: 220536] Pointer to local outside scope in subsys/net/lib/lwm2m/lwm2m_engine.c34004 - [Coverity CID: 220537] Uninitialized pointer read in tests/net/virtual/src/main.c34003 - [Coverity CID: 220538] Logically dead code in subsys/net/l2/virtual/virtual.c34002 - [Coverity CID: 220539] Improper use of negative value in tests/net/socket/misc/src/main.c34001 - [Coverity CID: 220540] Uninitialized scalar variable in samples/drivers/flash_shell/src/main.c34000 - [Coverity CID: 220541] Dereference before null check in subsys/net/lib/capture/capture.c33986 - TCP stack doesn't handle data received in FIN_WAIT_133983 - example-application module: add trivial driver33981 - example-application module: add board zxa_board_stub33978 - MCP2515 wrong BRP value33977 - Question: How best to contribute drivers upstream?33974 - The stm32wb55rc MCU does not operate on zephyr33969 - Hardfault error caused by ARM Cortex m0 non-4-byte alignment33968 - ESP32 Porting GSM Module Compile Error33967 - The printed total size differs from calculated from .json33966 - STM32: I-cache & D-cache33965 - example-application module: add trivial project33956 - tests: kernel: fpu: Several tests related to fpu fail on nrf5340dk_nrf5340_cpuappns33954 - I2C scan in UART shell is not detecting any I2C devices on ESP3233951 - periodic_adv not working with nRF5340 DK33950 - periodic_adv not working with nRF5340 DK33929 - subsys: logging: Sample app doesn't build if using Werror and logging with latest SDK33925 - Rework hl7800 driver to use new work queue APIs33923 - GSM modem automatic operation selection mode problems33911 - test:twr_ke18f: tests/kernel/sched/schedule_api - kernel_threads_sched_userspace cases meet out our space33904 - having issue compile a shell program and it is bug likely33898 - intel_adsp_cavs15: running testcases failed tests/kernel/workq/work on adsp33897 - Bluetooth: extended advertising can't restart after connection33896 - Device tree: STM32L4 defines can1 node for chips which do not support CAN peripheral33895 - Device tree: STM32L412 and STM32L422 are missing nodes33890 - Continuous Integration check patch false warnings33884 - CORTEX_M_DEBUG_NULL_POINTER_EXCEPTION_DETECTION_NONE is way too long33874 - twister: Add skip as error feature33868 - Bluetooth: controller: connectable advertisement disable race condition33866 - uart: TX_DONE occurs before transmission is complete.33860 - DEPRECATED, a replacement suggestion should be found somewhere33858 - tests: ztest: test trigger_fault_access from tests/ztest/error_hook fails on em_starterkit_em7d_v2233857 - atomic xtensa build fail33843 - ESP32 example does not connect to WiFi33840 - [Coverity CID: 220301] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33839 - [Coverity CID: 220302] Uninitialized scalar variable in subsys/net/lib/lwm2m/lwm2m_rw_link_format.c33838 - [Coverity CID: 220304] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33837 - [Coverity CID: 220305] Logically dead code in drivers/gpio/gpio_nrfx.c33836 - [Coverity CID: 220306] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33835 - [Coverity CID: 220309] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33834 - [Coverity CID: 220310] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33833 - [Coverity CID: 220311] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33832 - [Coverity CID: 220312] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33831 - [Coverity CID: 220313] Logically dead code in subsys/bluetooth/services/ots/ots_obj_manager.c33830 - [Coverity CID: 220314] Untrusted value as argument in subsys/bluetooth/services/ots/ots_dir_list.c33829 - [Coverity CID: 220315] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33828 - [Coverity CID: 220316] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33827 - [Coverity CID: 220317] Unchecked return value in tests/kernel/pipe/pipe_api/src/test_pipe_contexts.c33826 - [Coverity CID: 220318] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33825 - [Coverity CID: 220319] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33824 - [Coverity CID: 220320] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33823 - [Coverity CID: 220321] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33822 - [Coverity CID: 220413] Explicit null dereferenced in tests/lib/sprintf/src/main.c33821 - [Coverity CID: 220414] Unused value in tests/subsys/logging/log_backend_fs/src/log_fs_test.c33820 - [Coverity CID: 220415] Uninitialized scalar variable in tests/posix/common/src/pthread.c33819 - [Coverity CID: 220417] Out-of-bounds access in subsys/modbus/modbus_core.c33818 - [Coverity CID: 220418] Destination buffer too small in subsys/modbus/modbus_raw.c33817 - [Coverity CID: 220419] Unchecked return value in subsys/bluetooth/host/gatt.c33816 - [Coverity CID: 220420] Out-of-bounds access in tests/subsys/modbus/src/test_modbus_raw.c33815 - [Coverity CID: 220421] Incorrect sizeof expression in tests/lib/cbprintf_package/src/main.c33814 - [Coverity CID: 220422] Extra argument to printf format specifier in tests/lib/sprintf/src/main.c33813 - [Coverity CID: 220423] Out-of-bounds access in subsys/net/l2/ppp/ppp_l2.c33812 - [Coverity CID: 220424] Out-of-bounds access in drivers/watchdog/wdt_mcux_imx_wdog.c33811 - [Coverity CID: 220425] Destination buffer too small in tests/subsys/modbus/src/test_modbus_raw.c33810 - [Coverity CID: 220426] Out-of-bounds access in tests/lib/c_lib/src/main.c33809 - [Coverity CID: 220427] Unchecked return value in tests/posix/common/src/pthread.c33808 - [Coverity CID: 220428] Out-of-bounds access in subsys/bluetooth/audio/vocs.c33807 - [Coverity CID: 220429] Out-of-bounds access in subsys/net/l2/ppp/ppp_l2.c33806 - [Coverity CID: 220430] Operands don't affect result in tests/lib/c_lib/src/main.c33805 - [Coverity CID: 220431] Extra argument to printf format specifier in tests/lib/sprintf/src/main.c33804 - [Coverity CID: 220432] Out-of-bounds access in subsys/net/l2/ethernet/ethernet.c33803 - [Coverity CID: 220433] Printf arg count mismatch in tests/lib/sprintf/src/main.c33802 - [Coverity CID: 220434] Resource leak in tests/lib/mem_alloc/src/main.c33801 - [Coverity CID: 220435] Extra argument to printf format specifier in tests/lib/sprintf/src/main.c33800 - [Coverity CID: 220436] Explicit null dereferenced in tests/lib/sprintf/src/main.c33799 - [Coverity CID: 220437] Wrong size argument in tests/lib/mem_alloc/src/main.c33798 - [Coverity CID: 220438] Out-of-bounds access in subsys/bluetooth/audio/vocs_client.c33797 - [Coverity CID: 220439] Destination buffer too small in tests/subsys/modbus/src/test_modbus_raw.c33796 - [Coverity CID: 220440] Out-of-bounds access in tests/subsys/modbus/src/test_modbus_raw.c33795 - [Coverity CID: 220441] Untrusted loop bound in subsys/modbus/modbus_client.c33794 - [Coverity CID: 220442] Pointless string comparison in tests/lib/c_lib/src/main.c33793 - [Coverity CID: 220443] Out-of-bounds access in tests/subsys/modbus/src/test_modbus_raw.c33792 - [Coverity CID: 220444] Out-of-bounds access in subsys/modbus/modbus_raw.c33791 - [Coverity CID: 220445] Unchecked return value in subsys/logging/log_backend_fs.c33790 - [Coverity CID: 220446] Printf arg count mismatch in tests/lib/sprintf/src/main.c33789 - [Coverity CID: 220447] Out-of-bounds access in subsys/modbus/modbus_raw.c33788 - [Coverity CID: 220448] Out-of-bounds access in tests/subsys/modbus/src/test_modbus_raw.c33787 - [Coverity CID: 220449] Unused value in tests/subsys/logging/log_backend_fs/src/log_fs_test.c33786 - [Coverity CID: 220450] Untrusted loop bound in subsys/modbus/modbus_client.c33785 - [Coverity CID: 220451] Resource leak in tests/lib/mem_alloc/src/main.c33784 - [Coverity CID: 220452] Out-of-bounds access in subsys/net/l2/ethernet/ethernet.c33783 - [Coverity CID: 220453] Extra argument to printf format specifier in tests/lib/sprintf/src/main.c33768 - Rpmsg initialisation on nRF53 may fail33765 - Regular loss of a few connection intervals33761 - Documentation: K_WORK_DEFINE usage is not shown in workqueue doc33754 - xtensa sys timer Interrupt bug?33745 - west attach silently downgrades to debugserver for openocd runner33729 - flash_write() in STM32L0 MCU throws hard fault33727 - mec15xxevb_assy6853: multiple tests failed due to assertion failure at kernel/sched.c:84133726 - test:mimxrt1010_evk: tests/kernel/sched/schedule_api - kernel_threads_sched_userspace cases meet out our space33721 - STM32 serial driver configure api doesn't set correct datalength when even or odd parity is used.33712 - kernel/poll: no error happened when mutil-threads poll a same event at a same time.33702 - cfb sample build error for esp32 when SSD1306 is enabled33697 - dts:dt-bindings No OCTOSPIM dt-bindings available for stm32h72333693 - cmake -E env: unknown option '-Wno-unique_unit_address_if_enabled'33667 - tests: kernel: timer: Test timeout_abs from tests/kernel/timer/timer_api hangs causing test scenarios to fail33665 - tests: kernel: timer_api fails with hard fault in CONFIG_TICKLESS_KERNEL33662 - Make twister dig deeper in directory structure to find additional .yaml files33658 - Question: How is NUM_IRQS determined for example for STM32F401xC33655 - Add support for board: Nucleo-L412RB-P33646 - Expose net_ipv4_create, net_ipv6_create, and net_udp_create in standard header33645 - Random MAC after RESET - NRF5283233641 - API Meeting Minutes33635 - subsys/ipc/openamp sample on QEMU not working when debugging33633 - NXP imx rt1064 evk: Application does not boot when flash/flexSPI driver is enabled33629 - tests: subsys: logging: Tests from /tests/subsys/logging/log_backend_fs fail on nrf52840dk33625 - NVS: replace dev_name parameter by device reference in nvs_init()33612 - Add support to get adv address of a per_adv_sync object and lookup per_adv_sync object from adv address33610 - ARC: add ARCv3 HS6x support33609 - Question about memory usage of the binary zephyr.exe33600 - Master is broken at build-time when SRAM is mapped at an high address33593 - acrn_ehl_crb: general tests and samples execution slowdown33591 - wordlist (kobject hash) is not generated correctly when using high addresses for SRAM on 64-bit platforms33590 - nrf: Debugging any test fails when CORTEX_M_DEBUG_NULL_POINTER_EXCEPTION_DETECTION_DWT is enabled33589 - SSD1306 driver no longer works for I2C displays33583 - nRF SPI CS control: CS set / release delay is longer than configured33572 - <err> esp_event: SYSTEM_EVENT_STA_DISCONNECTED for wifi sample for esp32 board33568 - Test tests/arch/x86/info fails for ehl_crb33567 - sof: framework is redefnining MAX, MIN to version with limited capabilities33559 - pin setting error on frdm_kl25z boards33558 - qemu_cortex_a53_smp and qemu_x86_64 failed in tests/kernel/condvar/condvar while enabling for SMP33557 - there is no network interface to work with for wifi sample for esp32 board33551 - tests: SMP: Two threads synchronize failed using mutex or semaphore while both doing irq_lock()33549 - xt-xcc unknown field 'obj' specified in initializer33548 - xt-xcc does not support deprecated attribute33545 - ehl_crb: tests/arch/x86/info failed.33544 - ehl_crb: portability.posix.common.posix_realtime failed.33543 - ehl_crb: tests/subsys/edac/ibecc failed.33542 - reel_board: samples/subsys/usb/hid/ timeout failure33539 - ehl_crb: tests/kernel/mem_heap/mheap_api_concept failed.33529 - adafruit_feather_nrf52840 dts not setting I2C controller compat (was: SSD1306 DTS properties not being generated in devicetree_unfixed.h)33526 - boards: Optimal way to have customized dts for my project.33525 - ST Nucleo G071RB board support issue33524 - minor: kswap.h is included twice in kernel/init.c33523 - Bossac runner flashes at an incorrect offset33516 - socket: tcp application crashes when there are no more net buffers in case of reception33515 - arm64/mmu: Are you sure it's OK to use atomic_cas before the MMU is initialized?33512 - build: build target is always out-of-date33509 - samples: tests: watchdog: samples/subsys/task_wdt breaks nrf platforms performace33505 - WS2812 SPI LED driver with DMA on nrf52 bad SPI data33498 - west: Question on west flash --hex-file behavior with build.dir-fmt33491 - fwrite() function will cause the program to crash when wrong parameters passed33488 - Ring buffer makes it hard to discard items33479 - disk_access_spi_sdhc: Missing stop/end bit33475 - Need to add device node for UART10 in dts/arm/st/h7/stm32h723.dtsi33464 - SYS_INIT initialize priority "2-9" ordering error33459 - Divide zero exception is not enabled in ARC33457 - Fail to build ARC zephyr with MetaWare toolchain33456 - lorawan: unconfirmed messages leave stack in busy state33426 - a few failures with CONFIG_HCI_ACL_DATA_SIZE in nightly builds33424 - tests: ztest: Test from tests/ztest/error_hook fails on nrf5340dk_nrf5340_cpuappns33423 - tests: portability: tests/portability/cmsis_rtos_v2 fails on nrf5340dk_nrf5340_cpuappns33422 - samples/subsys/usb/dfu/sample.usb.dfu fails on multiple platforms in daily build33421 - Add BT_LE_FEAT_BIT_PER_ADV checks for periodic advertising commands33403 - trigger_fault_divide_zero test case didn't run divide instruction33381 - West debug does not work with Bluetooth shell and nRF52840 DK33378 - Extended advertising switch on / switch off loop impossible33374 - Network interface routines are not thread safe33371 - mec15xxevb_assy6853: tests/drivers/gpio/gpio_basic_api/ failed33365 - Add STM32H7 Series USB Device Support33363 - Properly indicate ISR number in SystemView33356 - Using AT HOST fails build33353 - work: k_work_schedule from running work item does not schedule33352 - Arduino Nano 33 BLE sense constantly resetting.33351 - uart peripheral outputs 7 bits when configured in 8 bits + parity on stm3233348 - ip/dhcpv4 is not thread-safe in SMP/preemptive thread configurations33342 - disco_l475_iot1: Multiple definitions of z_timer_cycle_get_32, etc.33339 - API/functions to get remaining free heap size33330 - Poll on DTLS socket returns -EAGAIN if bind & receive any data.33326 - The gpio-map for adafruit_feather_stm32f405 looks like it contains conflicts33324 - Using bluetooth hci_usb sample, and set periodic adv enable, but bluez still shows no command supported33322 - Questions on ztest : 1) Can twister/ztests run on windows? 2) Project structure33319 - Kernel doesn't validate lock state on swap33318 - [Coverity CID: 219722] Resource leak in tests/lib/mem_alloc/src/main.c33317 - [Coverity CID: 219727] Improper use of negative value in tests/lib/cbprintf_package/src/main.c33316 - [Coverity CID: 219724] Side effect in assertion in tests/kernel/queue/src/test_queue_contexts.c33315 - [Coverity CID: 219723] Side effect in assertion in tests/kernel/queue/src/test_queue_contexts.c33314 - [Coverity CID: 219726] Side effect in assertion in tests/kernel/lifo/lifo_usage/src/main.c33313 - [Coverity CID: 219728] Untrusted array index read in subsys/bluetooth/host/iso.c33312 - [Coverity CID: 219721] Untrusted array index read in subsys/bluetooth/host/iso.c33311 - [Coverity CID: 219729] Logically dead code in lib/os/cbprintf_packaged.c33303 - __ASSERT does not display message or register info in v2.5.033291 - Using both NET_SOCKETS_SOCKOPT_TLS and POSIX_API fails build33280 - drivers: serial: nrf uarte: The application receives one more byte that was received over UART33273 - The z_smp_reacquire_global_lock() internal API is not used any where inside zephyr code base33269 - ILI9341 (ILI9XXX) set orientation function fails to update the display area correctly33265 - Power Management Overhaul33261 - gatt_notify too slow on Broadcast33253 - STM32G4 with USB-C PD: Some pins cannot be used as input by default33239 - lib/rbtree: Remove dead case in rb_remove()33238 - tests: drivers: pwm api fails on many boards33233 - uart9 missing from <st/h7/stm32h7.dtsi>33218 - Incorrect documentation CONFIG_LOG_STRDUP_MAX_STRING33213 - Configuring a project with a sub-project (e.g. nRF5340) and an overlay causes an infinite configuring loop33212 - GUI configuration system (ninja menuconfig) exists with an error when the windows key is pressed33208 - cbprintf: Package size calculation is using best case alignment33207 - twister: Add option to load list with quarantined tests33203 - Bluetooth: host: ISO: Missing terminate reason in ISO disconnected callback33200 - USB CDC ACM sample application fails to compile33196 - I2C doesn't work on STM32F103RE33185 - TCP traffic with IPSP sample not working on 96Boards Nitrogen33176 - tests: kernel: Multiple test cases from tests/kernel/workq/work_queue are failing33173 - tests/kernel/workq/work_queue fails on sam_e70_xplained33171 - Create Renesas HAL33169 - STM32 SPI Driver - Transmit (MOSI) Only - Infinite Loop on Tranceive33168 - CONFIG_HEAP_MEM_POOL_SIZE=64 doesn't work33164 - Newlib has no synchronization33153 - west flash cannot find OpenOCD33149 - subsys: canbus: canopen EDSEditor / libedssharp version that works with Zephyr's CANopenNode33147 - Not able to build blinky or set toolchain to zephyr33142 - fs_mount for FAT FS does not distingush between no file system and other errors33140 - STM32H7: Bus fault when reading corrupt flash sectors33138 - invalid west cmake diagnostics when using board alias33137 - Enabling DHCP without NET_MGMT shouldn't be allowed33127 - Improve documentation user experience33122 - Device-level Cache API33120 - iotdk: running testcase tests/kernel/mbox/mbox_api/ failed33114 - tests: mbox_api: testcase test_mbox_data_get_null has some bugs.33104 - Updating Zephyr to fix Work Queue Problems33101 - DNS resolver misbehaves if receiving response too late33100 - tcp2 not working with ppp33097 - Coverity ID links in associated GitHub issues are broken33096 - [Coverity CID :215373] Unchecked return value in subsys/net/lib/lwm2m/lwm2m_rd_client.c33095 - [Coverity CID :215379] Out-of-bounds write in subsys/mgmt/osdp/src/osdp_cp.c33094 - [Coverity CID :215381] Resource leak in samples/net/mdns_responder/src/service.c33093 - [Coverity CID :215391] Unchecked return value from library in samples/net/mdns_responder/src/service.c33092 - [Coverity CID :215392] Logically dead code in subsys/mgmt/osdp/src/osdp_cp.c33091 - [Coverity CID :219474] Logically dead code in subsys/bluetooth/controller/ll_sw/ull_scan.c33090 - [Coverity CID :219476] Dereference after null check in subsys/bluetooth/controller/ll_sw/ull_conn.c33089 - [Coverity CID :219556] Self assignment in drivers/espi/host_subs_npcx.c33088 - [Coverity CID :219558] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33087 - [Coverity CID :219559] Out-of-bounds access in tests/arch/arm/arm_interrupt/src/arm_interrupt.c33086 - [Coverity CID :219561] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33085 - [Coverity CID :219562] Out-of-bounds access in tests/bluetooth/tester/src/gatt.c33084 - [Coverity CID :219563] Dereference after null check in arch/x86/core/multiboot.c33083 - [Coverity CID :219564] Untrusted value as argument in subsys/net/lib/lwm2m/lwm2m_engine.c33082 - [Coverity CID :219566] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33081 - [Coverity CID :219572] Untrusted value as argument in tests/net/lib/coap/src/main.c33080 - [Coverity CID :219573] Untrusted value as argument in samples/net/sockets/coap_client/src/coap-client.c33079 - [Coverity CID :219574] Side effect in assertion in tests/subsys/edac/ibecc/src/ibecc.c33078 - [Coverity CID :219576] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33077 - [Coverity CID :219579] Out-of-bounds read in drivers/ipm/ipm_nrfx_ipc.c33076 - [Coverity CID :219583] Operands don't affect result in drivers/clock_control/clock_control_npcx.c33075 - [Coverity CID :219588] Out-of-bounds access in tests/bluetooth/tester/src/gatt.c33074 - [Coverity CID :219590] Unchecked return value in subsys/bluetooth/mesh/proxy.c33073 - [Coverity CID :219591] Untrusted divisor in drivers/sensor/bme680/bme680.c33072 - [Coverity CID :219593] Logically dead code in tests/arch/x86/pagetables/src/main.c33071 - [Coverity CID :219595] Dereference before null check in subsys/net/ip/net_context.c33070 - [Coverity CID :219596] Out-of-bounds read in tests/kernel/interrupt/src/dynamic_isr.c33069 - [Coverity CID :219597] Untrusted value as argument in tests/net/lib/coap/src/main.c33068 - [Coverity CID :219598] Out-of-bounds access in tests/bluetooth/tester/src/gatt.c33067 - [Coverity CID :219600] Unchecked return value in drivers/watchdog/wdt_wwdg_stm32.c33066 - [Coverity CID :219601] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33065 - [Coverity CID :219603] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33064 - [Coverity CID :219608] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33063 - [Coverity CID :219609] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33062 - [Coverity CID :219610] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33061 - [Coverity CID :219611] Dereference after null check in subsys/net/ip/tcp2.c33060 - [Coverity CID :219613] Uninitialized scalar variable in lib/cmsis_rtos_v1/cmsis_signal.c33059 - [Coverity CID :219615] Out-of-bounds access in tests/arch/arm/arm_irq_advanced_features/src/arm_zero_latency_irqs.c33058 - [Coverity CID :219616] Untrusted value as argument in subsys/net/lib/coap/coap_link_format.c33057 - [Coverity CID :219619] Untrusted divisor in subsys/bluetooth/controller/hci/hci.c33056 - [Coverity CID :219620] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33055 - [Coverity CID :219621] Uninitialized scalar variable in tests/net/socket/getaddrinfo/src/main.c33054 - [Coverity CID :219622] Untrusted value as argument in subsys/net/lib/coap/coap.c33053 - [Coverity CID :219623] Out-of-bounds read in drivers/ipm/ipm_nrfx_ipc.c33051 - [Coverity CID :219625] Unchecked return value in subsys/bluetooth/mesh/proxy.c33050 - [Coverity CID :219628] Untrusted value as argument in subsys/net/lib/lwm2m/lwm2m_engine.c33049 - [Coverity CID :219629] Operands don't affect result in drivers/clock_control/clock_control_npcx.c33048 - [Coverity CID :219631] Out-of-bounds read in drivers/espi/espi_npcx.c33047 - [Coverity CID :219634] Out-of-bounds access in tests/net/lib/dns_addremove/src/main.c33046 - [Coverity CID :219636] Untrusted value as argument in subsys/net/lib/lwm2m/lwm2m_engine.c33045 - [Coverity CID :219637] Untrusted value as argument in tests/net/lib/coap/src/main.c33044 - [Coverity CID :219638] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33043 - [Coverity CID :219641] Out-of-bounds access in tests/bluetooth/tester/src/gatt.c33042 - [Coverity CID :219644] Side effect in assertion in tests/subsys/edac/ibecc/src/ibecc.c33040 - [Coverity CID :219646] Untrusted value as argument in subsys/net/lib/coap/coap.c33039 - [Coverity CID :219647] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33038 - [Coverity CID :219649] Operands don't affect result in kernel/sem.c33037 - [Coverity CID :219650] Out-of-bounds access in samples/bluetooth/central_ht/src/main.c33036 - [Coverity CID :219651] Logically dead code in subsys/bluetooth/mesh/net.c33035 - [Coverity CID :219652] Unchecked return value in drivers/gpio/gpio_stm32.c33034 - [Coverity CID :219653] Unchecked return value in drivers/modem/hl7800.c33033 - [Coverity CID :219654] Out-of-bounds access in tests/net/lib/dns_addremove/src/main.c33032 - [Coverity CID :219656] Uninitialized scalar variable in tests/kernel/threads/thread_stack/src/main.c33031 - [Coverity CID :219658] Untrusted value as argument in samples/net/sockets/coap_client/src/coap-client.c33030 - [Coverity CID :219659] Side effect in assertion in tests/subsys/edac/ibecc/src/ibecc.c33029 - [Coverity CID :219660] Untrusted divisor in drivers/sensor/bme680/bme680.c33028 - [Coverity CID :219661] Unchecked return value in subsys/bluetooth/host/gatt.c33027 - [Coverity CID :219662] Inequality comparison against NULL in lib/os/cbprintf_packaged.c33026 - [Coverity CID :219666] Out-of-bounds access in tests/bluetooth/tester/src/gatt.c33025 - [Coverity CID :219667] Untrusted value as argument in tests/net/lib/coap/src/main.c33024 - [Coverity CID :219668] Dereference after null check in drivers/espi/host_subs_npcx.c33023 - [Coverity CID :219669] Untrusted value as argument in subsys/mgmt/updatehub/updatehub.c33022 - [Coverity CID :219672] Untrusted value as argument in samples/net/sockets/coap_server/src/coap-server.c33021 - [Coverity CID :219673] Untrusted value as argument in samples/net/sockets/coap_client/src/coap-client.c33020 - [Coverity CID :219675] Macro compares unsigned to 0 in kernel/include/mmu.h33019 - [Coverity CID :219676] Unchecked return value in drivers/modem/wncm14a2a.c33018 - [Coverity CID :219677] Logically dead code in drivers/timer/npcx_itim_timer.c33009 - kernel: k_heap failures on small heaps33001 - stm32: window watchdog (wwdg): setup of prescaler not valid for newer series33000 - stm32: window watchdog (wwdg): invalid interrupts priority for CM0 Series Socs32996 - SPI speed when using SDHC via SPI in Zephyr32994 - Question: Possible simplification in mutex.h?32975 - Where should a few include/ headers live32969 - Wrong board target in microbit v2 documentation32966 - frdm_k64f: Run some testcases timeout failed by using twister32963 - USB device is not supported by qemu_x86 platform32961 - [Coverity CID :219478] Unchecked return value in subsys/bluetooth/controller/ll_sw/ull_filter.c32960 - [Coverity CID :219479] Out-of-bounds access in subsys/net/l2/bluetooth/bluetooth.c32959 - [Coverity CID :219480] Out-of-bounds read in lib/os/cbprintf_nano.c32958 - [Coverity CID :219481] Out-of-bounds access in subsys/bluetooth/controller/ll_sw/nordic/lll/lll_adv_aux.c32957 - [Coverity CID :219483] Improper use of negative value in tests/drivers/timer/nrf_rtc_timer/src/main.c32956 - [Coverity CID :219484] Out-of-bounds access in tests/drivers/timer/nrf_rtc_timer/src/main.c32955 - [Coverity CID :219485] Logically dead code in subsys/bluetooth/controller/ll_sw/ull.c32954 - [Coverity CID :219486] Unrecoverable parse warning in tests/kernel/mem_protect/mem_protect/src/mem_domain.c32953 - [Coverity CID :219487] Resource leak in tests/net/socket/getaddrinfo/src/main.c32952 - [Coverity CID :219488] Unrecoverable parse warning in tests/kernel/mem_protect/mem_protect/src/mem_domain.c32951 - [Coverity CID :219489] Structurally dead code in tests/drivers/dma/loop_transfer/src/test_dma_loop.c32950 - [Coverity CID :219490] Unsigned compared against 0 in drivers/wifi/esp/esp.c32949 - [Coverity CID :219491] Resource leak in tests/net/socket/af_packet/src/main.c32948 - [Coverity CID :219492] Out-of-bounds access in tests/drivers/timer/nrf_rtc_timer/src/main.c32947 - [Coverity CID :219493] Unchecked return value in tests/kernel/workq/work/src/main.c32946 - [Coverity CID :219494] Logically dead code in boards/xtensa/intel_s1000_crb/pinmux.c32945 - [Coverity CID :219495] Pointless string comparison in tests/lib/devicetree/api/src/main.c32944 - [Coverity CID :219497] Logically dead code in subsys/bluetooth/host/gatt.c32943 - [Coverity CID :219498] Out-of-bounds access in tests/drivers/timer/nrf_rtc_timer/src/main.c32942 - [Coverity CID :219499] Argument cannot be negative in tests/net/socket/af_packet/src/main.c32941 - [Coverity CID :219501] Unchecked return value in subsys/net/l2/bluetooth/bluetooth.c32940 - [Coverity CID :219502] Improper use of negative value in tests/net/socket/af_packet/src/main.c32939 - [Coverity CID :219504] Logically dead code in subsys/net/lib/lwm2m/lwm2m_engine.c32938 - [Coverity CID :219508] Unchecked return value in lib/libc/minimal/source/stdlib/malloc.c32937 - [Coverity CID :219508] Unchecked return value in lib/libc/minimal/source/stdlib/malloc.c32936 - [Coverity CID :219509] Side effect in assertion in tests/net/socket/tcp/src/main.c32935 - [Coverity CID :219510] Improper use of negative value in tests/drivers/timer/nrf_rtc_timer/src/main.c32934 - [Coverity CID :219511] Uninitialized scalar variable in tests/kernel/mbox/mbox_api/src/test_mbox_api.c32933 - [Coverity CID :219512] Unrecoverable parse warning in tests/kernel/mem_protect/mem_protect/src/mem_domain.c32932 - [Coverity CID :219513] Logically dead code in drivers/wifi/esp/esp.c32931 - [Coverity CID :219514] Out-of-bounds access in tests/drivers/timer/nrf_rtc_timer/src/main.c32930 - [Coverity CID :219515] Side effect in assertion in subsys/bluetooth/controller/ll_sw/ull_sched.c32929 - [Coverity CID :219516] Improper use of negative value in tests/drivers/timer/nrf_rtc_timer/src/main.c32928 - [Coverity CID :219518] Macro compares unsigned to 0 in subsys/bluetooth/mesh/transport.c32927 - [Coverity CID :219519] Unchecked return value in drivers/ethernet/eth_sam_gmac.c32926 - [Coverity CID :219520] Unsigned compared against 0 in drivers/wifi/esp/esp.c32925 - [Coverity CID :219521] Unchecked return value in tests/kernel/workq/work/src/main.c32924 - [Coverity CID :219522] Unchecked return value in tests/subsys/dfu/mcuboot/src/main.c32923 - [Coverity CID :219523] Side effect in assertion in subsys/bluetooth/controller/ll_sw/ull_adv_sync.c32922 - [Coverity CID :219524] Logically dead code in drivers/wifi/esp/esp.c32921 - [Coverity CID :219525] Unchecked return value in tests/subsys/settings/functional/src/settings_basic_test.c32920 - [Coverity CID :219526] Operands don't affect result in tests/boards/mec15xxevb_assy6853/qspi/src/main.c32919 - [Coverity CID :219527] Resource leak in tests/net/socket/getaddrinfo/src/main.c32918 - [Coverity CID :219528] Arguments in wrong order in tests/drivers/pwm/pwm_loopback/src/main.c32917 - [Coverity CID :219529] Unchecked return value in subsys/bluetooth/controller/ll_sw/ull_filter.c32916 - [Coverity CID :219530] Dereference before null check in drivers/modem/ublox-sara-r4.c32915 - [Coverity CID :219531] Improper use of negative value in tests/drivers/timer/nrf_rtc_timer/src/main.c32914 - [Coverity CID :219532] Out-of-bounds access in tests/drivers/timer/nrf_rtc_timer/src/main.c32913 - [Coverity CID :219535] Dereference after null check in drivers/sensor/icm42605/icm42605.c32912 - [Coverity CID :219536] Dereference before null check in drivers/ieee802154/ieee802154_nrf5.c32911 - [Coverity CID :219537] Out-of-bounds access in samples/boards/nrf/system_off/src/retained.c32910 - [Coverity CID :219538] Illegal address computation in subsys/bluetooth/controller/ll_sw/nordic/lll/lll_adv_aux.c32909 - [Coverity CID :219540] Side effect in assertion in subsys/bluetooth/controller/ll_sw/ull_sched.c32908 - [Coverity CID :219541] Unused value in subsys/bluetooth/controller/ticker/ticker.c32907 - [Coverity CID :219542] Dereference null return value in subsys/bluetooth/mesh/heartbeat.c32906 - [Coverity CID :219543] Out-of-bounds access in samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/smp_svr.c32905 - [Coverity CID :219544] Logically dead code in drivers/wifi/esp/esp.c32904 - [Coverity CID :219545] Side effect in assertion in subsys/bluetooth/controller/ll_sw/ull_adv_aux.c32903 - [Coverity CID :219546] Unchecked return value in tests/kernel/workq/work/src/main.c32902 - [Coverity CID :219547] Improper use of negative value in tests/drivers/timer/nrf_rtc_timer/src/main.c32898 - Bluetooth: controller: Control PDU buffer leak into Data PDU buffer pool32877 - acrn: test case of kernel.timer and kernel.timer.tickless failed32875 - Benchmarking Zephyr vs. RIOT-OS32867 - tests/kernel/sched/schedule_api does not start with stm32wb55 on nucleo32866 - bt_le_ext_adv_create returns -5 with 0x2036 opcode status 132862 - MCUboot, use default UART_0 value for RECOVERY_UART_DEV_NAME32860 - Periodic advertising/synchronization on nRF5281032853 - lwm2m: uninitialized variable in this function32839 - tests/kernel/timer/timer_api/test_timeout_abs still fails on multiple platforms32835 - twister: integration_platforms stopped working as it should32828 - tests: posix: Test case portability.posix.common.tls.newlib.posix_realtime fails on nrf9160dk_nrf916032827 - question: Specify size of malloc arena32818 - Function z_swap_next_thread() missing coverage in sched.c32817 - Supporting fedora in the getting started docs32816 - ehl_crb: tests/kernel/timer/timer_api/timer_api/test_sleep_abs (kernel.timer.tickless) failed.32809 - Fail to build ARC zephyr with MetaWare toolchain32800 - Race conditions with setting thread attributes after z_ready_thread?32798 - west flash fails for reel board32778 - Cannot support both HID boot report keyboard and mouse on a USB HID device32774 - Sensor BMI160: set of undersampling mode is not working32771 - STM32 with Ethernet crashes when receiving packets early32757 - Need openthread merge32755 - mcumgr: shell output gets truncated32745 - Bluetooth PAST shell command32742 - Bluetooth: GAP: LE connection complete event handling priority32741 - ARM32 / ARM64 separation32735 - Subsys: Logging: Functions purely to avoid compiling error affects test coverage32724 - qemu timer change introducing new CI failures32723 - kernel/sched: Only send IPI to abort a thread if the hardware supports it32721 - samples/bluetooth/periodic_adv/, print random address after every reset32720 - ./samples/microbit/central_eatt builds failed at v2.5.0 release32718 - NUCLEO-F446RE: Enable CAN Module32715 - async uart api not working on stm32 with dmamux32705 - KERNEL_COHERENCE on xtensa doesn't quite work yet32702 - RAM overflow with bbc:microbit for samples/bluetooth/peripheral...32699 - Setting custom BOARD_ROOT raises FileNotFoundError32697 - sam_e70b_xplained: running tests/kernel/timer/timer_api failed32696 - intel_adsp_cavs15: run testcases failed of tests/kernel/common32695 - intel_adsp_cavs15: cannot get output of some testcases32691 - Function z_find_first_thread_to_unpend() missing coverage in sched.c32688 - up_squared: tests/kernel/timer/timer_api failed.32679 - twister with --device-testing sometimes overlaps tests32677 - z_user_string_nlen() might lead to non-recoverable errors, despite suggesting the opposite32657 - canopen sample wont respond on pdo mapping with CO_ODs from objdict.eds32656 - reel_board: tests/lib/devicetree/devices/ build failure32655 - reel_board: tests/kernel/timer/timer_api/ failure32644 - Cannot build any project with system-wide DTC32619 - samples: usb: audio: Samples for usb audio fail building32599 - bbc_microbit build failure is blocking CI32589 - ehl_crb: tests/kernel/context fails sporadically32581 - shell/usb cdc_acm: shell does not work on CDC_ACM32579 - Corrupt CBOR payloads in MCUMGR when sending multiple commands together32572 - tests/kernel/timer/timer_api/test_timeout_abs fails on stm32 boards32566 - lwm2m: Long endpoint names are truncated due to short buffer32537 - Fatal error syscall_list.h32536 - Codec phy connection ASSERTION FAIL [event.curr.abort_cb]32515 - zephyr/kernel/thread.c:382 failed32514 - frdm_k64f:running testcase tests/subsys/debug/coredump/ and tests/subsys/debug/coredump_backends/ failed32513 - intel_adsp_cavs15: run testcases of fifo failed32512 - intel_adsp_cavs15: run testcases of queue failed32511 - Zephyr build fail with LLVM on Ubuntu for target ARC32509 - west build -p auto -b nrf52840dk_nrf52840 samples/bluetooth/hci_uart FAILED with zephyr-v2.5.032506 - k_sleep: Invalid return value when using absolute timeout.32499 - k_sleep duration is off by 1 tick32497 - No checks of buffer size in l2cap_chan_le_recv32492 - AArch64: Rework secure states (NS vs S) discussion32485 - CONFIG_NFCT_PINS_AS_GPIOS not in Kconfig.soc for nRF5332478 - twister: Twister cannot properly handle runners errors (flashing)32475 - twister error building mcux acmp driver32474 - pm: review post sleep wake up application notification scheduling32469 - Twister: potential race conditions.32468 - up_squared: tests/kernel/smp failed.32467 - x86_64: page fault with access violation error complaining supervisor thread not allowed to rwx32459 - the cbprintf unit tests don't actually test all variations32457 - samples: drivers: espi: Need to handle failures in temperature retrieval32448 - C++ exceptions do not work on multiple platforms32445 - 2021 GSoC Project Idea: Transplantation for embarc_mli32444 - z_cstart bug32433 - pwm_stm32: warning: non-portable use of "defined"32431 - RTC driver support on STM32F1 series32429 - Only one PWM Channel supported in STM32L4 ?32420 - bbc_microbit_v2 build error for lis2dh32414 - [Coverity CID :218733] Explicit null dereferenced in tests/ztest/error_hook/src/main.c32413 - [Coverity CID :216799] Out-of-bounds access in tests/net/lib/dns_addremove/src/main.c32412 - [Coverity CID :216797] Dereference null return value in tests/net/6lo/src/main.c32411 - [Coverity CID :218744] Out-of-bounds access in subsys/bluetooth/host/gatt.c32410 - [Coverity CID :218743] Out-of-bounds access in subsys/bluetooth/host/gatt.c32409 - [Coverity CID :218742] Out-of-bounds access in subsys/bluetooth/host/gatt.c32408 - [Coverity CID :218741] Out-of-bounds access in subsys/bluetooth/host/att.c32407 - [Coverity CID :218740] Out-of-bounds access in subsys/bluetooth/host/gatt.c32406 - [Coverity CID :218737] Out-of-bounds write in subsys/bluetooth/host/gatt.c32405 - [Coverity CID :218735] Out-of-bounds access in subsys/bluetooth/host/att.c32404 - [Coverity CID :218734] Out-of-bounds access in subsys/bluetooth/host/smp.c32403 - [Coverity CID :218732] Out-of-bounds access in subsys/bluetooth/host/att.c32402 - [Coverity CID :218731] Out-of-bounds access in subsys/bluetooth/shell/gatt.c32401 - [Coverity CID :218730] Operands don't affect result in subsys/bluetooth/host/conn.c32400 - [Coverity CID :218729] Out-of-bounds access in subsys/bluetooth/host/gatt.c32399 - [Coverity CID :218728] Out-of-bounds access in subsys/bluetooth/host/gatt.c32398 - [Coverity CID :218727] Out-of-bounds access in subsys/bluetooth/host/gatt.c32397 - [Coverity CID :218726] Out-of-bounds access in subsys/bluetooth/host/att.c32385 - clock_control: int is returned on enum return value32382 - Clock issues for STM32F103RE custom board32376 - samples: driver: watchdog: Sample fails on disco_l475_iot132375 - Networking stack crashes when run in cooperative scheduling mode only32365 - samples: hci_rpmsg build fail for nrf534032344 - sporadic failure in tests/kernel/mem_protect/userspace/kernel.memory_protection.userspace32343 - openthread manual joiner hangs32342 - review use of cpsid in aarch32 / CONFIG_PM32331 - Use of unitialized variables in can_set_bitrate()32321 - /tmp/ccTlcyeD.s:242: Error: Unrecognized Symbol type " "32320 - drivers: flash: stm32: Flush ART Flash cache after erase operation32314 - 2021 GSoC Project Idea: Enable Interactive Zephyr Test Suite32291 - Zephyr don't build sample hello world for Particle Xenon32289 - USDHC: Fails after reset32279 - Question about flasing Adafruit Feather Sense with Zephyr32270 - TCP connection stalls32269 - shield: cmake: Shield conf is not loaded during build32265 - STM32F4 stuck handling I2C interrupt32261 - problem with CONFIG_STACK_SENTINEL32260 - STM32 counter driver error in estimating alarm time32258 - power mgmt: pm_devices: Get rid of z_pm_core_devices array32257 - Common DFU partition enumeration API32256 - Bluetooth mesh : Long friendship establishment after reset32252 - Building anything for nrf5340pdk_nrf5340_cpuappns/mps2_an521_ns(any non-secure platforms) pulls external git trees32237 - twister failing locally - fails to link native_posix w/lld32234 - Documentation: How to update Zephyr itself (with west)32233 - Often disconnect timeouts when running the BLE peripheral HR sample on Nitrogen9632224 - Treat devicetree binding deprecation usage as build error when running w/twister32212 - Tx power levels are not similar on ADV and CONN modes when set manually (nRF52)32206 - CMSIS-DSP support seems broken on link32205 - [misc] AArch64 improvements and fixes32203 - Cannot set static address when using hci_usb or hci_uart on nRF5340 attached to Linux Host32201 - arch_switch() on ARM64 isn't quite right32197 - arch_switch() on SPARC isn't quite right32195 - ARMv8-nofp support32193 - Plan to support raspberry pi Pico?32158 - twister: inconsistent total testcases number with same configuration32145 - kernel threads and kernel stacks deadlock in many scenarios32137 - Provide test execution times per ztest testcase32118 - drivers/flash/soc_flash_nrf: nRF anomaly 242 workaround is not implemented32098 - Implement a driver for the Microphone / audio sensor (MP23ABS1) in Sensotile.Box32084 - Custom Log Backend breaks performance32075 - net: lwm2m: Testing Strategy for LWM2M Engine32072 - tests/kernel/common seems to fail on nrf52833dk_nrf5283332071 - devicetree: bus: does not work in child-binding32052 - p4wq has a race with work item re-use32023 - samples: bluetooth: peripheral_hids: Unable to communicate with paired device after board reset32000 - 2021 GSoC Call for Project Ideas - deadline Feb.19, 2021 12:00PM PST31985 - riscv: Long execution time when TICKLESS_KERNEL=y31982 - tests: kernel: queue: regression introduced by FPU sharing PR #3177231980 - Communicating with BMI160 chip over SPI31969 - test_tcp_fn:net2 mximxrt1060/1064/1050 fails on test_client_invalid_rst with semaphore timed out31964 - up_squared: tests/kernel/timer/timer_api failed.31922 - hci_usb: HCI ACL packet with size divisible by 64 not sent31856 - power: device_pm_get_sync not thread-safe31854 - undefined reference to sys_arch_reboot31829 - net: lwm2m: Update IPSO objects to version 1.131799 - uart_configure does not return -ENOTSUP for stm32 uart with 9 bit data length.31774 - Add an application power management sample (PM_POLICY_APP)31762 - ivshmem application in acrn31761 - logging:buffer_write with len=0 causes kernel panic31757 - GCC compiler option should include '-mcpu=hs38' for HSDK31742 - Bluetooth: BLE 5 data throughput to Linux host31721 - tests: nrf: posix: portability.posix.common.tls.newlib fails on nrf9160dk_nrf916031711 - UART failure with CONFIG_UART_ASYNC_API31613 - Undefined reference errors when using External Library with k_msgq_* calls31588 - Bluetooth: Support for multiple connectable advertising sets with different identities.31585 - BMD345: Extended BLE range with PA/LNA31503 - drivers: i2c: i2c_nrfx_twim Power Consumption rises after I2C data transfer31416 - ARC MPU version number misuse ver3, should be ver431348 - twister: CI: Run twister daily builds with "--overflow-as-errors"31323 - Compilation warning regards the SNTP subsys31299 - tests/kernel/mbox/mbox_usage failed on hsdk board31284 - [stm32] PM restore console after sleep mode31280 - devicetree: Add a macro to easily get optionnal devicetree GPIO properties31254 - Bluetooth: Extended advertising with one advertising set fails after the first time31248 - i2c shell functions non-functional on nRF5331217 - Multi-threading flash access is not supported by flash_write_protection_set()31191 - Samples: TF-M: Enable NS test app(s)31179 - iso bind for slave not working as intended31169 - kconfig configuration (prj.conf) based on zephyr version31164 - Problem to build lorawan from samples31150 - tests/subsys/canbus/isotp/conformance: failing on nucleo_f746zg31149 - tests/subsys/canbus/isotp/implementation: failing on nucleo_f746zg31103 - CMSIS RTOS v2 API implementation bugs in osEventFlagsWait31058 - SWO log backend clock frequency is off on some CPUs31036 - BMI 160 i2c version not working. I modified to i2c in kconfig to make it use i2c.31031 - samples/bluetooth/mesh is not helpful30991 - Unable to add new i2c sensor to nrf/samples30943 - MPU fault with STM32L45230936 - tests: sockets: tcp: add a tls test30929 - PDM Driver for nrf52840dk30841 - How to disable reception of socket CAN frames30771 - Logging: Fault instruction address in the logging thread30770 - mps2_an521: no input to shell from Windows qemu host30618 - Add arduino header/spi support for HSDK board30544 - nrf5340 pwm "Unsupported board: pwm-led0 devicetree alias is not defined"30540 - CONFIG_TRACING not working after updating from v2.1.0 to 2.2.030520 - recv() call to Ublox Sara R4 cant return 030465 - Spurious interrupts not handled in ARMv7-R code with GICv2.30441 - hci_uart uses wrong BT_BUF_ACL_SIZE on dual chip solutions + multicore30429 - Thread Border Router with NRC/RCP sample and nrf52840dk not starting30416 - No restore possible with mesh shell app from /tests using qemu_x86 on RaspberryPi330395 - Add possibility to use alternative list of platforms default for CI runs.30355 - Multiple vlan interfaces on same interface not working30353 - RFC: Logging subsystem overhaul30325 - Stack overflow with http post when using civetweb30204 - Support for Teensy 4.0 and 4.130195 - Missing error check of device_get_binding() and flash_area_open()30192 - mec15xxevb_assy6853: running tests/subsys/power/power_mgmt_soc failed30162 - Build zephyr with Metaware toolchain for HSDK fails30121 - Make log subsystem power aware30101 - tests should not be silently skipped due to insufficient RAM30074 - Occasional Spinlocks on zephyr 2.4.0 (ASSERTION FAIL [z_spin_lock_valid(l)] @ WEST_TOPDIR/zephyr/include/spinlock.h:92)30055 - Memory corruption for newlib-nano with float printf and disabled heap29946 - SD card initialization is wrong29915 - eth: stm32h747i_disco: sem timeout and hang on debug build29798 - test spi loopback with dma fails on nucleo_f746zg29733 - SAM0 will wake up with interrupted execution after deep sleep29722 - West flash is not able to flash with openocd29689 - tests: drivers: gpio: gpio_basic_api: correct dts binding29610 - documentation says giving a semaphore can release IRQ lock29599 - gPTP: frdm_k64f : can not converge time29581 - LoRaWAN sample for 96b_wistrio - Tx timeout29545 - samples: tfm_integration: tfm_ipc: No module named 'cryptography.hazmat.primitives.asymmetric.ed25519'29526 - generic page pool for MMU-based systems29476 - Samples: TF-M: Add PSA FF API Sample29349 - Using float when driver init in RISC-V arch might cause system to get stuck.29224 - PTS: Test framework: Bluetooth: GATT/SR/GAC/BI-01-C - FAIL29107 - Bluetooth: hci-usb uses non-standard interfaces29038 - drivers/usb/device/usb_dc_native_posix_adapt.c sees weird commands and aborts28901 - implement searchable bitfields28900 - add support for memory un-mapping28873 - z_device_ready() lies28803 - Use generic config option for early platfrom init (AKA "warm boot")28722 - Bluetooth: provide struct bt_conn to ccc_changed callback28597 - Bluetooth: controller: Redesign the implementation/use of NODE_RX_TYPE_DC_PDU_RELEASE28551 - up_squared: samples/boards/up_squared/gpio_counter failed.28535 - RFC: Add lz4 Data Compresssion library Support28438 - Example downstream manifest+module repo in zephyrproject-rtos28249 - driver: espi: mchp: eSPI OOB driver does not support callbacks for incoming OOB messages from eSPI master.28105 - sporadic "Attempt to resume un-suspended thread object" faults on x86-6428096 - fatfs update to latest upstream version27855 - i2c bitbanging on nrf5284027697 - Add support for passing -nogui 1 to J-Link Commander on MS Windows27692 - Allow to select between advertising packet/scan response for BT LE device name27525 - Including STM32Cube's USB PD support to Zephyr27484 - sanitycheck: Ease error interception from calling script27415 - Decide if we keep a single thread support (CONFIG_MULTITHREADING=n) in Zephyr27356 - deep review and redesign of API for work queue functionality27203 - tests/subsys/storage/flash_map failure on twr_ke18f27048 - Improve out-of-tree driver experience27033 - Update terminology related to I2C27032 - zephyr network stack socket APIs are not thread safe27000 - Avoid oppressive language in code base26952 - SMP support on ARM64 platform26889 - subsys: power: Need syscall that allows to force sleep state26760 - Improve caching configuration and move it to be cross architecture26728 - Allow k_poll for multiple message queues26495 - Make k_poll work with KERNEL_COHERENCE26491 - PCIe: add API to get BAR region size26363 - samples: subsys: canbus: canopen: objdict: CO_OD.h is not normally made.26246 - Printing 64-bit values in LOG_DBG26172 - Zephyr Master/Slave not conforming with Core Spec. 5.2 connection policies26170 - HEXDUMP log gives warning when logging function name.26118 - Bluetooth: controller: nRF5x: refactor radio_nrf5_ppi.h25956 - Including header files from modules into app25865 - Device Tree Memory Layout25775 - [Coverity CID :210075] Negative array index write in samples/net/cloud/mqtt_azure/src/main.c25719 - sanitycheck log mixing between tests25601 - UART input does not work on mps2_an{385,521}25440 - Bluetooth: controller: ensure deferred PDU populations complete on time25389 - driver MMIO address range management25313 - samples:mimxrt1010_evk:samples/subsys/usb/audio: build error no usbd found25187 - Generic ethernet packet filtering based on link (MAC) address24986 - Convert dma_nios2_msgdma to DTS24731 - Bluetooth: controller: Network privacy not respected when address resolution is disabled24625 - lib: drivers: clock: rtc: rtc api to maintain calendar time through reboot24228 - system power states24142 - NRF5340 PA/LNA support24119 - STM32: SPI: Extend power saving SPI pin config to all stm32 series24113 - STM32 Flash: Device tree updates23727 - RFC: clarification and standardization of ENOTSUP/ENOSYS error returns23520 - JLink Thread-Aware Debugging (RTOS Plugin)23465 - Zephyr Authentication - ZAUTH23449 - "make clean" doesn't clean a lot of generated files23225 - Bluetooth: Quality of service: Adaptive channel map23165 - macOS setup fails to build for lack of "elftools" Python package22965 - 4 byte addressing in spi_nor driver for memory larger than 128Mb.22956 - nios2: k_busy_wait() never returns if called with interrupts locked22731 - Improve docker CI documentation22620 - adapt cpu stats tracing to tracing infrastructure22078 - stm32: Shell module sample doesn't work on nucleo_l152re22061 - Ethernet switch support22060 - Build fails with gcc-arm-none-eabi-9-2019-q4-major22027 - i2c_scanner does not work on olimexino_stm3221993 - Bluetooth: controller: split: Move the LLL event prepare/resume queue handling into LLL21840 - need test case for CONFIG_MULTIBOOT on x8621811 - Investigate using Doxygen-generated API docs vs. Sphinx/Breath API docs21809 - Update document generating tools to newer versions21783 - rename zassert functions21489 - Allow to read any types during discovery21484 - Option for safe k_thread_abort21342 - z_arch_cpu_halt() should enter deep power-down where supported21293 - adding timeout the I2C read/write functions for the stm32 port21136 - ARC: Add support for reduced register file21061 - Document where APIs can be called from using doxygen21033 - Read out heap space used and unallocated20707 - Define GATT service at run-time20576 - DTS overlay files must include full path name20366 - Make babbelsim testing more easily available outside of CI19655 - Milestones toward generalized representation of timeouts19582 - zephyr_library: missing 'kernel-mode' vs 'app-mode' documentation19340 - ARM: Cortex-M: Stack Overflows when building with NO_OPTIMIZATIONS19244 - BLE throughput of DFU by Mcumgr is too slow19224 - deprecate spi_flash_w25qxxdv18934 - Update Documentation To Reflect No Concurrent Multi-Protocol18554 - Tracking Issue for C++ Support as of release 2.118509 - Bluetooth:Mesh:Memory allocation is too large18351 - logging: 32 bit float values don't work.17991 - Cannot generate coverage reports on qemu_x86_6417748 - stm32: clock-control: Remove usage of SystemCoreClock17745 - stm32: Move clock configuration to device tree17571 - mempool is expensive for cyclic use17486 - nRF52: SPIM: Errata work-around status?17375 - Add VREF, TEMPSENSOR, VBAT internal channels to the stm32 adc driver17353 - Configuring with POSIX_API disables NET_SOCKETS_POSIX_NAMES17314 - doc: add tutorial for using mbed TLS16539 - include/ directory and header cleanup16150 - Make more LWM2M parameters configurable at runtime15855 - Create a reliable footprint tracking benchmark15854 - Footprint Enhancements15738 - Networking with QEMU for mac15497 - USB DFU: STM32: usb dfu mode doesn't work15134 - samples/boards/reel_board/mesh_badge/README.rst : No compilation or flash instructions14996 - enhance mutex tests14973 - samples: Specify the board target required for the sample14806 - Assorted pylint warnings in Python scripts14591 - Infineon Tricore architecture support14581 - Network interfaces should be able to declare if they work with IPv4 and IPv6 dynamically14442 - x86 SOC/CPU definitions need clean up.14309 - Automatic device dependency tracking19760 - Provide command to check board supported features13553 - Ways to reduce Bluetooth Mesh message loss13469 - Shell does not show ISR stack usage13436 - Enabling cooperative scheduling via menuconfig may result in an invalid configuration13091 - sockets: Implement MSG_WAITALL flag12718 - Generic MbedTLS setup doesn't use MBEDTLS_ENTROPY_C12098 - Not possible to print 64 bit decimal values with minimal libc12028 - Enable 16550 UART driver on x86_6411820 - sockets: Implement (POSIX-compatible) timeout support11529 - Get configuration of a running kernel in console11449 - checkpatch warns on .dtsi files about line length11207 - ENOSYS has ambiguous meaning.10621 - RFC: Enable device by using dts, not Kconfig10499 - docs: References to "user threads" are confusing10494 - sockets: Implement MSG_TRUNC flag for recv()10436 - Mess with ssize_t, off_t definitions10268 - Clean up remaining SPI_DW defines in soc.h10042 - MISRA C - Do not cast an arithimetic type to void pointer10041 - MISRA C - types that indicate size and signedness should be used instead of basic numerical types10030 - MISRA C - Document Zephyr's code guideline based on MISRA C 20129954 - samples/hello_world build failed on Windows/MSYS9895 - MISRA C Add 'u' or 'U' suffix for all unsigned integer constants9894 - MISRA C Make external identifiers distinct according with C999889 - MISRA C Avoid implicit conversion between integers and boolean expressions9886 - MISRA C Do not mix signed and unsigned types9885 - MISRA C Do not have dead code9884 - MISRA-C Check return value of a non-void function9882 - MISRA-C - Do not use reserved names9778 - Implement zephyr specific SEGGER_RTT_LOCK and SEGGER_RTT_UNLOCK macros9626 - Add support for the FRDM-KL28Z board9507 - pwm: No clear semantics to stop a PWM leads to diverse implementations9284 - Issues/experience trying to use TI ARM code gen tools in Zephyr8958 - Bluetooth: Proprietary vendor specific opcode discovery8400 - test kernel XIP case seems not well defined8393 - CONFIG_MULTITHREADING=n builds call main() with interrupts locked7317 - Add generation of SPDX TagValue documents to each build7297 - STM32: Drivers: Document series support for each driver7246 - esp32 fails to build with xtensa-esp32-elf-gcc: error: unrecognized command line option '-no-pie'7216 - Stop using gcc's "-include" flag7214 - Defines from DTS and Kconfig should be available simultaneously7151 - boards: Move existing boards to "default configuration guidelines"6925 - Provide Reviewer Guidelines as part of the documentation6291 - userspace: support MMU-based memory virtualization6066 - LwM2M: support object versioning in register / discover operations5517 - Expand toolchain/SDK support5325 - Support interaction with console in twister5116 - [Coverity CID: 179986] Null pointer dereferences in /subsys/bluetooth/host/mesh/access.c4911 - Filesystem support for qemu4569 - LoRa: support LoRa1418 - kconfig options need some cleanup and reorganisation1415 - Problem with forcing new line in generated documentation.1392 - No module named 'elftools'3933 - LWM2M: Create application/link-format writer object to handle discovery formatting3931 - LWM2M: Data Validation Callback3723 - WiFi support for ESP323675 - LE Adv. Ext.: Extended Scan with PHY selection for non-conn non-scan un-directed without aux packets3674 - LE Adv. Ext.: Non-Connectable and Non-Scannable Undirected without auxiliary packet3634 - ARM: implement NULL pointer protection3514 - Bluetooth: controller: LE Advertising Extensions3487 - Keep Zephyr Device tree Linux compatible3420 - Percepio Tracealyzer Support3280 - Paging Support2854 - Modbus RTU Support2542 - battery: Add standard APIs for Battery Charging and Fuel Gauge Handling (Energy Management)2470 - Supervisory and Monitoring Task2381 - SQL Database2336 - IPv4 - Multicast Join/Leave Support