1:orphan:
2
3.. _zephyr_2.0:
4
5Zephyr 2.0.0
6############
7
8We are pleased to announce the release of Zephyr RTOS version 2.0.0.
9
10Major enhancements with this release include:
11
12* The kernel now supports both 32- and 64-bit architectures.
13* We added support for SOCKS5 proxy. SOCKS5 is an Internet protocol that
14  exchanges network packets between a client and server through a proxy server.
15* Introduced support for 6LoCAN, a 6Lo adaption layer for Controller Area
16  Networks.
17* We added support for :ref:`Point-to-Point Protocol (PPP) <ppp>`. PPP is a
18  data link layer (layer 2) communications protocol used to establish a direct
19  connection between two nodes.
20* We added support for UpdateHub, an end-to-end solution for large scale
21  over-the-air device updates.
22* We added support for ARM Cortex-R Architecture (Experimental).
23
24The following sections provide detailed lists of changes by component.
25
26Security Vulnerability Related
27******************************
28
29The following security vulnerability (CVE) was addressed in this
30release:
31
32* Fixes CVE-2019-9506: The Bluetooth BR/EDR specification up to and
33  including version 5.1 permits sufficiently low encryption key length
34  and does not prevent an attacker from influencing the key length
35  negotiation. This allows practical brute-force attacks (aka "KNOB")
36  that can decrypt traffic and inject arbitrary ciphertext without the
37  victim noticing.
38
39Kernel
40******
41
42* New kernel API for per-thread disabling of Floating Point Services for
43  ARC, ARM Cortex-M, and x86 architectures.
44* New system call to set the clock frequency at runtime.
45* Additional support for compatibility with 64-bit architectures.
46* Userspace mutexes are now supported through the new k_futex primitive.
47* Improvements to the slab allocator.
48* Fixed the implementation of k_thread_name_set() with userspace enabled.
49* Boosted the default tick rate for tickless kernels to improve the
50  precision of timeouts.
51
52Architectures
53*************
54
55* ARM:
56
57  * Added initial support for ARM Cortex-R architecture (Experimental)
58  * We enhanced the support for Floating Point Services in Cortex-M
59    architecture, implementing and enabling lazy-stacking for FPU
60    capable threads and fixing stack overflow detection for FPU
61    capable supervisor threads
62  * Added QEMU support for ARMv8-M Mainline architecture
63  * Optimized the IRQ locking time in thread context switch
64  * Fixed several critical bugs in User Mode implementation
65  * Added test coverage for ARM-specific kernel features
66  * Improved support for linking TrustZone Secure Entry functions into
67    Non-Secure firmware
68
69* ARC:
70
71  * Added support for ARC HS architecture
72  * Added SMP support for ARC HS architecture
73  * Added support for ARC SecureShield based TEE (Experimental)
74  * Fixed several critical bugs in interrupt and exception handling
75  * Enhance the support for Floating Point Services
76
77* POSIX:
78
79  * Fixed race condition with terminated threads which had never been
80    scheduled by kernel. On very loaded systems it could cause swap errors.
81
82* x86:
83
84  * Dropped support for the Intel Quark microcontroller family.
85  * A new lightweight PCI implementation has been introduced which supports
86    MSI and other features required for PCIe devices. The previous PCI
87    implementation has been deprecated and will be removed in 2.1.
88
89* RISC-V:
90
91  * Added support for the SiFive HiFive1 Rev B development board.
92  * Added support for LiteX VexRiscv soft core.
93  * Added support for 64-bit RISC-V, renaming the architecture from "riscv32"
94    to "riscv".
95  * Added 64-bit QEMU support.
96  * Added DeviceTree bindings for RISC-V memory devices, CPU interrupt
97    controllers, and platform-local interrupt controllers.
98
99Boards & SoC Support
100********************
101
102* Added native_posix_64: A 64 bit variant of native_posix
103* Added support for these ARC boards:
104
105  .. rst-class:: rst-columns
106
107     * emsdp
108     * hsdk
109     * nsim for hs
110
111* Added support for these ARM boards:
112
113  .. rst-class:: rst-columns
114
115     * atsamr21_xpro
116     * cc1352r1_launchxl
117     * cc26x2r1_launchxl
118     * holyiot_yj16019
119     * lpcxpresso55s69
120     * mec15xxevb_assy6853
121     * mikroe_mini_m4_for_stm32
122     * mimxrt1015_evk
123     * mps2_an521
124     * nrf51_pca10031
125     * nrf52811_pca10056
126     * nucleo_g071rb
127     * nucleo_wb55rg
128     * qemu_cortex_r5
129     * stm32h747i_disco
130     * stm32mp157c_dk2
131     * twr_ke18f
132     * v2m_musca_b1
133     * 96b_avenger96
134     * 96b_meerkat96
135     * 96b_wistrio
136
137* Added support for these RISC-V boards:
138
139  .. rst-class:: rst-columns
140
141     * hifive1_revb
142     * litex_vexriscv
143     * qemu_riscv64
144
145* Added support for the gpmrb x86 board
146
147* Added support for these following shields:
148
149  .. rst-class:: rst-columns
150
151     * frdm_cr20a
152     * link_board_can
153     * sparkfun_sara_r4
154     * wnc_m14a2a
155     * x_nucleo_iks01a3
156
157* Removed support for these boards:
158
159  .. rst-class:: rst-columns
160
161     * arduino_101
162     * arduino_101_sss
163     * curie_ble
164     * galileo
165     * quark_d2000_crb
166     * quark_se_c1000_devboard
167     * quark_se_c1000_ss_devboard
168     * quark_se_c1000_ble
169     * tinytile
170     * x86_jailhouse
171
172Drivers and Sensors
173*******************
174
175* ADC
176
177  * Added API to support calibration
178  * Enabled ADC on STM32WB
179  * Removed Quark D2000 ADC driver
180  * Added NXP ADC12 and SAM0 ADC drivers
181  * Added ADC shell
182
183* Audio
184
185  * Added support for two microphones (stereo) in the mpxxdtyy driver
186
187* CAN
188
189  * Added support for canbus Ethernet translator
190  * Added 6LoCAN implementation
191  * Added MCP2515, NXP FlexCAN, and loopback drivers
192  * Added CAN shell
193
194* Clock Control
195
196  * Added NXP Kinetis MCG, SCG, and PCC drivers
197  * Added STM32H7, STM32L1X, and STM32WB support
198  * Removed Quark SE driver
199
200* Counter
201
202  * Added optional flags to alarm configuration structure and extended set channel alarm flags
203  * Added top_value setting configuration structure to API
204  * Enabled counter for STM32WB
205  * Added NXP GPT, "CMOS" RTC, SiLabs RTCC, and SAM0 drivers
206  * Removed Quark D2000 support from QMSI driver
207
208* Display
209
210  * Added ST7789V based LCD driver
211  * Renamed ssd1673 driver to ssd16xx
212  * Added framebuffer driver with multiboot support
213  * Added support for Seeed 2.8" TFT touch shield v2.0
214
215* DMA
216
217  * Added API to retrieve runtime status
218  * Added SAM0 DMAC driver
219  * Removed Quark SE C1000 support from QMSI driver
220
221* Entropy
222
223  * Added TI CC13xx / CC26xx driver
224
225* ESPI
226
227  * Added Microchip XEC driver
228
229* Ethernet
230
231  * Added LiteEth driver
232
233* Flash
234
235  * Removed Quark SE C1000 driver
236  * Removed support for Quark D2000 from QMSI driver
237  * Added STM32G0XX and STM32WB support to STM32 driver
238  * Added RV32M1 and native POSIX drivers
239
240* GPIO
241
242  * Added stm32f1x SWJ configuration
243  * Removed Quark SE C1000 and D2000 support from DesignWare driver
244  * Added support for STM32H7, STM32L1X, and STM32WB to STM32 driver
245  * Added Microchip XEC and TI CC13x2 / CC26x2 drivers
246  * Added HT16K33 LED driver
247  * Added interrupt support to SAM0 driver
248
249* Hardware Info
250
251  * Added ESP32 and SAM0 drivers
252
253* I2C
254
255  * Added support for STM32MP1, STM32WB, and STM32L1X to STM32 driver
256  * Added STM32F10X slave support
257  * Added power management to nrf TWI and TWIM drivers
258  * Added TI CC13xx / CC26xx, Microchip MEC, SAM0, and RV32M1 drivers
259  * Rewrote DesignWare driver for PCI(e) support
260
261* IEEE 802.15.4
262
263  * Fixed KW41z fault and dBm mapping
264
265* Interrupt Controller
266
267  * Added initial support for ARC TCC
268  * Added GIC400, LiteX, and SAM0 EIC drivers
269  * Added support for STM32G0X, STM32H7, STM32WB, and STM32MP1 to STM32 driver
270  * Removed MVIC driver
271
272* IPM
273
274  * Removed Quark SE driver
275  * Added MHU and STM32 drivers
276
277* LED
278
279  * Added Holtek HT16K33 LED driver
280
281* Modem
282
283  * Introduced socket helper layer
284  * Introduced command handler and UART interface driver layers
285  * Introduced modem context helper driver
286  * Added u-blox SARA-R4 modem driver
287
288* Pinmux
289
290  * Added SPI support to STM32MP1
291  * Enabled ADC, PWM, I2C, and SPI pins on STM32WB
292  * Added Microchip XEC and TI CC13x2 / CC26x2 drivers
293
294* PWM
295
296  * Added NXP PWM driver
297  * Added support for STM32G0XX to STM32 driver
298
299* Sensor
300
301  * Added STTS751 temperature sensor driver
302  * Added LSM6DSO and LPS22HH drivers
303  * Renamed HDC1008 driver to ti_hdc and added support for 1050 version
304  * Added LED current, proximity pulse length, ALS, and proximity gain configurations to APDS9960 driver
305  * Reworked temperature and acceleration conversions, and added interrupt handling in ADXL362 driver
306  * Added BME680 driver and AMS ENS210 drivers
307
308* Serial
309
310  * Added Xilinx ZynqMP PS, LiteUART, and TI CC12x2 / CC26x2 drivers
311  * Added support for virtual UARTS over RTT channels
312  * Added support for STM32H7 to STM32 driver
313  * Removed support for Quark D2000 from QMSI driver
314  * Enabled interrupts in LPC driver
315  * Implemented ASYNC API in SAM0 driver
316  * Added PCI(e) support to NS16550 driver
317
318* SPI
319
320  * Added support for STM32MP1X and STM32WB to STM32 driver
321  * Removed support for Quark SE C1000 from DesignWare driver
322  * Added TI CC13xx / CC26xx driver
323  * Implemented ASYNC API in SAM0 driver
324
325* Timer
326
327  * Added Xilinx ZynqMP PS ttc driver
328  * Added support for SMP to ARC V2 driver
329  * Added MEC1501 32 KHZ, local APIC timer, and LiteX drivers
330  * Replaced native POSIX system timer driver with tickless support
331  * Removed default selection of SYSTICK timer for ARM platforms
332
333* USB
334
335  * Added NXP EHCI driver
336  * Implemented missing API functions in SAM0 driver
337
338* WiFi
339
340  * Implemented TCP listen/accept and UDP support in eswifi driver
341
342Networking
343**********
344
345* Added support for `SOCKS5 proxy <https://en.wikipedia.org/wiki/SOCKS>`__.
346  See also `RFC1928 <https://tools.ietf.org/html/rfc1928>`__ for details.
347* Added support for 6LoCAN, a 6Lo adaption layer for Controller Area Networks.
348* Added support for :ref:`Point-to-Point Protocol (PPP) <ppp>`.
349* Added support for UpdateHub, an end-to-end solution for large scale
350  over-the-air update of devices.
351  See `UpdateHub.io <https://updatehub.io/>`__ for details.
352* Added support to automatically register network socket family.
353* Added support for ``getsockname()`` function.
354* Added SO_PRIORITY support to ``setsockopt()``
355* Added support for VLAN tag stripping.
356* Added IEEE 802.15.4 API for ACK configuration.
357* Added dispatching support to SocketCAN sockets.
358* Added user mode support to PTP clock API.
359* Added user mode support to network interface address functions.
360* Added AF_NET_MGMT socket address family support. This is for receiving network
361  event information in user mode application.
362* Added user mode support to ``net_addr_ntop()`` and ``net_addr_pton()``
363* Added support for sending network management events when DNS server is added
364  or deleted.
365* Added LiteEth Ethernet driver.
366* Added support for ``sendmsg()`` API.
367* Added `civetweb <https://civetweb.github.io/civetweb/>`__ HTTP API support.
368* Added LWM2M IPSO Accelerometer, Push Button, On/Off Switch and Buzzer object
369  support.
370* Added LWM2M Location and Connection Monitoring object support.
371* Added network management L4 layer. The L4 management events are used
372  when monitoring network connectivity.
373* Allow net-mgmt API to pass information length to application.
374* Removed network management L1 layer as it was never used.
375* By default a network interface is set to UP when the device starts.
376  If this is not desired, then it is possible to disable automatic start.
377* Allow collecting network packet TX throughput times in the network stack.
378  This information can be seen in net-shell.
379* net-shell Ping command overhaul.
380* Accept UDP packet with missing checksum.
381* 6lo compression rework.
382* Incoming connection handling refactoring.
383* Network interface refactoring.
384* IPv6 fragmentation fixes.
385* TCP data length fixes if TCP options are present.
386* SNTP client updates.
387* Trickle timer re-init fixes.
388* ``getaddrinfo()`` fixes.
389* Fixes in DHCPv4, LWM2M, gPTP, and MQTT
390* DNS fixes for non-compressed answers.
391* mDNS and LLMNR resolver fixes.
392* Ethernet ARP fixes.
393* OpenThread updates and fixes.
394* Network device driver fixes for:
395
396  .. rst-class:: rst-columns
397
398     - Ethernet e1000
399     - Ethernet enc28j60
400     - Ethernet mcux
401     - Ethernet stellaris
402     - Ethernet gmac
403     - Ethernet stm32
404     - WiFi eswifi
405     - IEEE 802.15.4 kw41z
406     - IEEE 802.15.4 nrf5
407
408Bluetooth
409*********
410
411* Host:
412
413  * GATT: Added support for database hashes, Read Using Characteristic
414    UUID, static services, disabling the dynamic database, and notifying
415    and indicating by UUID
416  * GATT: Simplified the bt_gatt_notify_cb() API
417  * GATT: Added additional attributes to the Device Information Service
418  * GATT: Several protocol and database fixes
419  * Settings: Transitioned to new optimized settings model and support for custom backends
420  * Completed support for directed advertising and Out-Of-Band (OOB) pairing
421  * Added support for fine-grained control of security establishment, including
422    forcing a pairing procedure in case of key loss
423  * Switched to separate, dedicated pools for discardable events and number of
424    completed packets events
425  * Extended and improved the Bluetooth shell with several commands
426  * BLE qualification up to the 5.1 specification
427  * BLE Mesh: Several fixes and improvements
428
429* BLE split software Controller:
430
431  * The split software Controller is now the default
432  * Added support for the Data Length Update procedure
433  * Improved and documented the ticker packet scheduler for improved conflict resolution
434  * Added support for out-of-tree user-defined commands and events,
435    Zephyr Vendor Specific Commands, and user-defined protocols
436  * Converted several control procedures to be queueable
437  * Nordic: Decorrelated address generation from resolution
438  * Nordic: Added support for Controller-based privacy, fast encryption
439    setup, RSSI, low-latency ULL processing of messages, nRF52811 IC BLE
440    radio, PA/LNA on Port 1 GPIO pins, and radio event abort
441  * BLE qualification up to the 5.1 specification
442
443* BLE legacy software Controller:
444
445  * BLE qualification up to the 5.1 specification
446  * Multiple control procedures fixes and improvements
447
448Build and Infrastructure
449************************
450
451* The devicetree Python scripts have been rewritten to be more robust and
452  easier to understand and change. The new scripts are these three files:
453
454  - :zephyr_file:`scripts/dts/dtlib.py` -- a low-level :file:`.dts` parsing
455    library
456
457  - :zephyr_file:`scripts/dts/edtlib.py` -- a higher-level library that adds
458    information from bindings
459
460  - :zephyr_file:`scripts/dts/gen_defines.py` -- generates a C header from the
461    devicetree files for the board
462
463  The new scripts verify ``category: optional/required`` and ``type:`` settings
464  given in bindings for nodes, and add some new types, like ``phandle-array``.
465  Error messages and other output is now more helpful.
466
467  See the updated documentation in :zephyr_file:`dts/binding-template.yaml`.
468
469  The old scripts are kept around to generate a few deprecated ``#define``\ s.
470  They will be removed in the Zephyr 2.2 release.
471
472* Changed ARM Embedded toolchain to default to nano variant of newlib
473
474
475Libraries / Subsystems
476***********************
477
478* File Systems: Added support for littlefs
479
480HALs
481****
482
483* HALs are now moved out of the main tree as external modules and reside
484  in their own standalone repositories.
485
486Documentation
487*************
488
489* We've made many updates to component, subsystem, and process
490  documentation bringing our documentation up-to-date with code changes,
491  additions, and improvements, as well as new supported boards and
492  samples.
493
494Tests and Samples
495*****************
496
497* We have implemented additional tests and significantly expanded the
498  amount of test cases in existing tests to increase code coverage.
499
500Issue Related Items
501*******************
502
503These GitHub issues were addressed since the previous 1.14.0 tagged
504release:
505
506.. comment  List derived from GitHub Issue query: ...
507   * :github:`issuenumber` - issue title
508
509* :github:`18964` - [Coverity CID :203911]Memory - corruptions in /tests/bluetooth/uuid/src/main.c
510* :github:`18963` - [Coverity CID :203910]Memory - corruptions in /tests/bluetooth/uuid/src/main.c
511* :github:`18959` - [Coverity CID :203907]Parse warnings in /include/bluetooth/conn.h
512* :github:`18923` - (BLE) Dynamic TX Power Control
513* :github:`18906` - Problem on build when calling objcopy to generate isrList.bin
514* :github:`18865` - Fatal Usage Fault When Bluetooth And OpenThread Are Enabled On NRF52840 Multiprotocol Support
515* :github:`18828` - Bluetooth: controller: crash terminating link during encryption procedure
516* :github:`18821` - Documentation: parent vs child in DeviceTree nodes
517* :github:`18819` - Bluetooth: LL split assert upon disconnection
518* :github:`18814` - Module Request: LoRaMac-Node
519* :github:`18813` - fs: nvs: Cannot delete entries
520* :github:`18808` - Docs for gpmrb board incorrectly refer to up_squared board
521* :github:`18804` - Channel Selection Algorithm Modification In Zephyr
522* :github:`18802` - Bluetooth: UUID: Missing tests and confusing documentation
523* :github:`18799` - bt_uuid_create_le() and bt_uuid_create() have endianness issues, and only one of them is needed
524* :github:`18795` - FS:NVS: garbage collection when restart
525* :github:`18784` - Can not build link_board_can shield
526* :github:`18774` - (nRF51) NVS example doesn't work
527* :github:`18765` - LwM2M: DNS handling via offload socket API is broken
528* :github:`18760` - hello_world sample instructions don't work
529* :github:`18739` - k_uptime_get_32() does not behave as documented
530* :github:`18732` - net: mDNS name resolving issue between 2 Zephyr nodes
531* :github:`18726` - arc: should not rely on that ERET has a copy of ilink
532* :github:`18725` - arc: the IRM bit of SEC_STAT is not handled corrected
533* :github:`18724` - arc: interrupt stack is not  switched correctly
534* :github:`18717` - USB broken on disco l475 iot board
535* :github:`18705` - SMP fails to allocate buffer and pairing times out
536* :github:`18693` - POSIX: Some headers were missing from PR #16621
537* :github:`18687` - [Coverity CID :203623]Memory - illegal accesses in /tests/subsys/settings/fcb_init/src/settings_test_fcb_init.c
538* :github:`18686` - [Coverity CID :203622]Parse warnings in /opt/zephyr-sdk-0.10.3/nios2-zephyr-elf/nios2-zephyr-elf/include/c++/8.3.0/bits/refwrap.h
539* :github:`18685` - [Coverity CID :203621]Parse warnings in /opt/zephyr-sdk-0.10.3/nios2-zephyr-elf/nios2-zephyr-elf/include/c++/8.3.0/bits/refwrap.h
540* :github:`18684` - [Coverity CID :203620]Parse warnings in /opt/zephyr-sdk-0.10.3/nios2-zephyr-elf/nios2-zephyr-elf/include/c++/8.3.0/bits/refwrap.h
541* :github:`18683` - [Coverity CID :190988]Memory - illegal accesses in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/drivers/imx/fsl_elcdif.c
542* :github:`18682` - [Coverity CID :190984]Memory - illegal accesses in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/drivers/imx/fsl_elcdif.c
543* :github:`18681` - [Coverity CID :190979]Memory - illegal accesses in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/drivers/imx/fsl_elcdif.c
544* :github:`18680` - [Coverity CID :190959]Memory - illegal accesses in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/drivers/imx/fsl_elcdif.c
545* :github:`18679` - [Coverity CID :198643]Incorrect expression in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/devices/MKE18F16/fsl_clock.c
546* :github:`18678` - [Coverity CID :198642]Incorrect expression in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/devices/MKE18F16/fsl_clock.c
547* :github:`18677` - [Coverity CID :198641]Incorrect expression in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/devices/MKE18F16/fsl_clock.c
548* :github:`18676` - [Coverity CID :190994]Incorrect expression in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/devices/MK64F12/fsl_clock.c
549* :github:`18675` - [Coverity CID :190982]Incorrect expression in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/devices/MK64F12/fsl_clock.c
550* :github:`18674` - [Coverity CID :190962]Incorrect expression in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/devices/MK64F12/fsl_clock.c
551* :github:`18673` - [Coverity CID :190947]Incorrect expression in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/devices/MK64F12/fsl_clock.c
552* :github:`18672` - [Coverity CID :198948]Control flow issues in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/devices/LPC55S69/fsl_clock.c
553* :github:`18671` - [Coverity CID :198947]Integer handling issues in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/devices/LPC55S69/fsl_clock.c
554* :github:`18670` - [Coverity CID :182600]Integer handling issues in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/devices/LPC54114/fsl_clock.c
555* :github:`18669` - [Coverity CID :158891]Memory - illegal accesses in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nxp/mcux/components/phyksz8081/fsl_phy.c
556* :github:`18668` - [Coverity CID :203544]Integer handling issues in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nordic/nrfx/drivers/src/nrfx_usbd.c
557* :github:`18667` - [Coverity CID :203513]Integer handling issues in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nordic/nrfx/drivers/src/nrfx_usbd.c
558* :github:`18666` - [Coverity CID :203506]Integer handling issues in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nordic/nrfx/drivers/src/nrfx_usbd.c
559* :github:`18665` - [Coverity CID :203436]Memory - illegal accesses in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/hal/nordic/nrfx/drivers/src/nrfx_usbd.c
560* :github:`18664` - [Coverity CID :203416]Uninitialized variables in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/fs/littlefs/lfs.c
561* :github:`18663` - [Coverity CID :203413]Null pointer dereferences in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/fs/littlefs/lfs.c
562* :github:`18662` - [Coverity CID :61908]Insecure data handling in /home/aasthagr/zephyrproject-external-coverity-new/zephyrproject/modules/crypto/mbedtls/library/ssl_tls.c
563* :github:`18658` - Bluetooth BR/EDR encryption key negotiation vulnerability
564* :github:`18654` - cc3220sf_launchxl fails tests/kernel/interrupt/arch.interrupt
565* :github:`18645` - Disconnect because of data packets during encryption procedure
566* :github:`18615` - sam e70 xplained failed to build hello world
567* :github:`18599` - tests/kernel/fifo/fifo_timeout fails on cc3220sf_launchxl
568* :github:`18598` - tests/net/trickle failed on multiple plartforms
569* :github:`18595` - USB CDC endless loop with BLE on NRF52
570* :github:`18593` - tests/arch/arm/arm_zero_latency_irqs fails on cc3220sf_launchxl
571* :github:`18592` - (nRF51) The RSSI signal does not rise above -44 dBm
572* :github:`18590` - tests/kernel/fatal/kernel.common.stack_sentinel fails on FRDM-KW41Z
573* :github:`18587` - tests/kernel/fifo/fifo_timeout/kernel.fifo.timeout fails to run on lpcxpresso54114_m4
574* :github:`18584` - BT LL assert on LL/CON/ADV/BV-04-C
575* :github:`18580` - Bluetooth: Security fail on initial pairing
576* :github:`18574` - Some platforms: “reel_board”, “frdm_k64f” and “sam_e70_xplained”  are be built failure
577* :github:`18572` - Bluetooth: GATT: Unable to indicate by UUID
578* :github:`18563` - log_strdup missing error messages seen when running wifi sample
579* :github:`18547` - Bluetooth: GATT: Fix using variable size storage for CCC
580* :github:`18546` - Hard Fault when connecting to BLE device
581* :github:`18524` - No disconnection event during "heavy" indication stream
582* :github:`18522` - BLE: Mesh: When transport send seg_msg to LPN
583* :github:`18521` - BLE: Mesh: when friend send msg to LPN
584* :github:`18508` - tests/net/trickle failed on frdm_k64f board
585* :github:`18476` - Custom module with west
586* :github:`18462` - potential buffer overrun in logging infrastructure
587* :github:`18461` - [Coverity CID :203487]Parse warnings in /usr/lib/gcc/x86_64-redhat-linux/8/include/stdint-gcc.h
588* :github:`18460` - [Coverity CID :203527]Parse warnings in /usr/include/unistd.h
589* :github:`18459` - [Coverity CID :203509]Null pointer dereferences in /tests/subsys/usb/desc_sections/src/desc_sections.c
590* :github:`18458` - [Coverity CID :203422]Memory - illegal accesses in /tests/subsys/fs/littlefs/src/testfs_util.c
591* :github:`18457` - [Coverity CID :203419]Security best practices violations in /tests/net/traffic_class/src/main.c
592* :github:`18456` - [Coverity CID :203401]Security best practices violations in /tests/net/traffic_class/src/main.c
593* :github:`18455` - [Coverity CID :203490]Error handling issues in /tests/net/socket/net_mgmt/src/main.c
594* :github:`18454` - [Coverity CID :203499]Null pointer dereferences in /tests/net/icmpv6/src/main.c
595* :github:`18453` - [Coverity CID :203480]Null pointer dereferences in /tests/net/context/src/main.c
596* :github:`18446` - [Coverity CID :203532]Incorrect expression in /tests/kernel/sched/schedule_api/src/user_api.c
597* :github:`18445` - [Coverity CID :203507]Error handling issues in /tests/kernel/mutex/sys_mutex/src/main.c
598* :github:`18444` - [Coverity CID :203516]Memory - corruptions in /tests/kernel/mem_protect/userspace/src/main.c
599* :github:`18443` - [Coverity CID :203454]Error handling issues in /tests/kernel/mem_protect/sys_sem/src/main.c
600* :github:`18442` - [Coverity CID :203465]Memory - corruptions in /tests/kernel/mem_protect/protection/src/main.c
601* :github:`18439` - [Coverity CID :203437]Incorrect expression in /tests/kernel/fp_sharing/float_disable/src/k_float_disable.c
602* :github:`18438` - [Coverity CID :203407]Incorrect expression in /tests/kernel/fp_sharing/float_disable/src/k_float_disable.c
603* :github:`18437` - [Coverity CID :203478]Program hangs in /tests/kernel/common/src/sflist.c
604* :github:`18436` - [Coverity CID :203424]Control flow issues in /tests/kernel/common/src/sflist.c
605* :github:`18434` - [Coverity CID :203486]Memory - corruptions in /tests/bluetooth/uuid/src/main.c
606* :github:`18433` - [Coverity CID :203431]Memory - corruptions in /tests/bluetooth/uuid/src/main.c
607* :github:`18432` - [Coverity CID :203502]Error handling issues in /tests/bluetooth/tester/src/gap.c
608* :github:`18431` - [Coverity CID :203391]Null pointer dereferences in /tests/bluetooth/gatt/src/main.c
609* :github:`18430` - [Coverity CID :203540]Incorrect expression in /tests/arch/arm/arm_zero_latency_irqs/src/arm_zero_latency_irqs.c
610* :github:`18429` - [Coverity CID :203525]Incorrect expression in /tests/arch/arm/arm_thread_swap/src/arm_thread_arch.c
611* :github:`18428` - [Coverity CID :203479]Incorrect expression in /tests/arch/arm/arm_thread_swap/src/arm_thread_arch.c
612* :github:`18427` - [Coverity CID :203392]Incorrect expression in /tests/arch/arm/arm_thread_swap/src/arm_thread_arch.c
613* :github:`18426` - [Coverity CID :203455]Incorrect expression in /tests/arch/arm/arm_ramfunc/src/arm_ramfunc.c
614* :github:`18424` - [Coverity CID :203489]Memory - corruptions in /tests/application_development/gen_inc_file/src/main.c
615* :github:`18423` - [Coverity CID :203473]Null pointer dereferences in /subsys/usb/usb_descriptor.c
616* :github:`18421` - [Coverity CID :203504]Uninitialized variables in /subsys/net/lib/sockets/sockets_net_mgmt.c
617* :github:`18420` - [Coverity CID :203468]Control flow issues in /subsys/net/lib/sockets/sockets_net_mgmt.c
618* :github:`18419` - [Coverity CID :203397]Control flow issues in /subsys/net/lib/sockets/sockets_net_mgmt.c
619* :github:`18418` - [Coverity CID :203445]Error handling issues in /subsys/net/lib/sockets/getnameinfo.c
620* :github:`18417` - [Coverity CID :203501]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_timer.c
621* :github:`18416` - [Coverity CID :203475]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_timer.c
622* :github:`18415` - [Coverity CID :203420]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_timer.c
623* :github:`18414` - [Coverity CID :203496]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_push_button.c
624* :github:`18413` - [Coverity CID :203488]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_push_button.c
625* :github:`18412` - [Coverity CID :203482]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_push_button.c
626* :github:`18411` - [Coverity CID :203450]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_onoff_switch.c
627* :github:`18410` - [Coverity CID :203448]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_onoff_switch.c
628* :github:`18409` - [Coverity CID :203427]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_onoff_switch.c
629* :github:`18408` - [Coverity CID :203533]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_light_control.c
630* :github:`18407` - [Coverity CID :203519]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_light_control.c
631* :github:`18406` - [Coverity CID :203511]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_buzzer.c
632* :github:`18405` - [Coverity CID :203426]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_buzzer.c
633* :github:`18404` - [Coverity CID :203414]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_buzzer.c
634* :github:`18403` - [Coverity CID :203539]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_accelerometer.c
635* :github:`18402` - [Coverity CID :203530]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_accelerometer.c
636* :github:`18401` - [Coverity CID :203438]Memory - corruptions in /subsys/net/lib/lwm2m/ipso_accelerometer.c
637* :github:`18400` - [Coverity CID :203483]Control flow issues in /subsys/net/lib/conn_mgr/events_handler.c
638* :github:`18399` - [Coverity CID :203457]Control flow issues in /subsys/net/l2/ppp/lcp.c
639* :github:`18398` - [Coverity CID :203514]Control flow issues in /subsys/net/l2/ppp/ipv6cp.c
640* :github:`18397` - [Coverity CID :203512]Memory - corruptions in /subsys/net/l2/ppp/ipv6cp.c
641* :github:`18396` - [Coverity CID :203435]Error handling issues in /subsys/net/l2/ppp/fsm.c
642* :github:`18395` - [Coverity CID :203471]Memory - corruptions in /subsys/net/l2/ethernet/gptp/gptp_mi.c
643* :github:`18394` - [Coverity CID :203464]Memory - corruptions in /subsys/net/l2/ethernet/gptp/gptp_mi.c
644* :github:`18393` - [Coverity CID :203541]Integer handling issues in /subsys/net/ip/6lo.c
645* :github:`18392` - [Coverity CID :203494]Integer handling issues in /subsys/fs/littlefs_fs.c
646* :github:`18391` - [Coverity CID :203403]Memory - corruptions in /subsys/disk/disk_access_usdhc.c
647* :github:`18390` - [Coverity CID :203441]Null pointer dereferences in /subsys/bluetooth/mesh/transport.c
648* :github:`18389` - [Coverity CID :203396]Null pointer dereferences in /subsys/bluetooth/mesh/access.c
649* :github:`18388` - [Coverity CID :203545]Memory - corruptions in /subsys/bluetooth/host/smp.c
650* :github:`18387` - [Coverity CID :203536]Memory - corruptions in /subsys/bluetooth/host/smp.c
651* :github:`18385` - [Coverity CID :203534]Memory - corruptions in /subsys/bluetooth/host/hci_core.c
652* :github:`18384` - [Coverity CID :203495]Control flow issues in /subsys/bluetooth/host/gatt.c
653* :github:`18383` - [Coverity CID :203447]Memory - corruptions in /subsys/bluetooth/host/att.c
654* :github:`18382` - [Coverity CID :203524]Incorrect expression in /subsys/bluetooth/controller/ticker/ticker.c
655* :github:`18381` - [Coverity CID :203393]Control flow issues in /subsys/bluetooth/controller/ll_sw/ull_conn.c
656* :github:`18380` - [Coverity CID :203461]Null pointer dereferences in /subsys/bluetooth/controller/ll_sw/ull.c
657* :github:`18379` - [Coverity CID :203493]Control flow issues in /soc/arm/st_stm32/stm32h7/soc_m7.c
658* :github:`18377` - [Coverity CID :203535]Error handling issues in /samples/net/sockets/civetweb/src/main.c
659* :github:`18376` - [Coverity CID :203462]Error handling issues in /samples/net/sockets/civetweb/src/main.c
660* :github:`18375` - [Coverity CID :203440]Null pointer dereferences in /samples/net/nats/src/main.c
661* :github:`18374` - [Coverity CID :203523]Error handling issues in /samples/drivers/counter/alarm/src/main.c
662* :github:`18372` - [Coverity CID :203543]Memory - illegal accesses in /samples/bluetooth/eddystone/src/main.c
663* :github:`18371` - [Coverity CID :203542]Error handling issues in /lib/posix/pthread.c
664* :github:`18370` - [Coverity CID :203469]Memory - corruptions in /drivers/wifi/eswifi/eswifi_core.c
665* :github:`18369` - [Coverity CID :203425]Memory - corruptions in /drivers/wifi/eswifi/eswifi_core.c
666* :github:`18368` - [Coverity CID :203411]Memory - corruptions in /drivers/wifi/eswifi/eswifi_core.c
667* :github:`18367` - [Coverity CID :203409]Memory - corruptions in /drivers/wifi/eswifi/eswifi_core.c
668* :github:`18366` - [Coverity CID :203452]Control flow issues in /drivers/timer/xlnx_psttc_timer.c
669* :github:`18365` - [Coverity CID :203434]Control flow issues in /drivers/timer/xlnx_psttc_timer.c
670* :github:`18364` - [Coverity CID :203467]Memory - corruptions in /drivers/sensor/lis2dh/lis2dh_trigger.c
671* :github:`18363` - [Coverity CID :203492]Memory - corruptions in /drivers/net/ppp.c
672* :github:`18362` - [Coverity CID :203412]Control flow issues in /drivers/net/ppp.c
673* :github:`18361` - [Coverity CID :203515]Uninitialized variables in /drivers/flash/flash_stm32l4x.c
674* :github:`18360` - [Coverity CID :203531]Memory - corruptions in /drivers/espi/espi_mchp_xec.c
675* :github:`18359` - [Coverity CID :203521]Memory - illegal accesses in /drivers/espi/espi_mchp_xec.c
676* :github:`18358` - [Coverity CID :203497]Memory - corruptions in /drivers/espi/espi_mchp_xec.c
677* :github:`18357` - [Coverity CID :203485]Memory - illegal accesses in /drivers/espi/espi_mchp_xec.c
678* :github:`18356` - [Coverity CID :203430]Integer handling issues in /drivers/espi/espi_mchp_xec.c
679* :github:`18355` - [Coverity CID :203466]Memory - illegal accesses in /drivers/can/can_mcux_flexcan.c
680* :github:`18354` - [Coverity CID :203449]Memory - illegal accesses in /boards/posix/native_posix/cmdline_common.c
681* :github:`18353` - [Coverity CID :203522]Null pointer dereferences in /arch/arm/core/cortex_m/fault.c
682* :github:`18352` - devicetree: support multiple values in io-channels
683* :github:`18334` - DNS resolution is broken for some addresses in master/2.0-pre
684* :github:`18326` - Bluetooth: Mesh: LPN: Remove msg from cache on rejection Enhancement
685* :github:`18320` - tests/drivers/can/api/peripheral.can fail on FRDM-K64F
686* :github:`18306` - Unable to reconnect paired devices with controller privacy disabled (host privacy enabled)
687* :github:`18301` - menuconfig target can corrupt build configuration
688* :github:`18298` - Unable to build mesh-demo for BBC micro:bit
689* :github:`18292` - tests/net/lib/dns_addremove failed on frdm_k64f board.
690* :github:`18284` - tests/kernel/fp_sharing/float_disable and tests/kernel/mutex/mutex_api and tests/kernel/sleep  fails on twr_ke18f
691* :github:`18283` - tests/crypto/tinycrypt_hmac_prng and tests/crypto/mbedtls  and tests/posix/fs  build failure on mimxrt1015_evk
692* :github:`18281` - tests/kernel/mem_protect/protection fails on LPC54114_m4
693* :github:`18272` - xtensa ASM2 has no support for dynamic interrupts
694* :github:`18269` - Documentation improvement for macOS
695* :github:`18263` - flash sector erase fails on stm32f412
696* :github:`18261` - CONFIG_TIMESLICING=n breaks kernel
697* :github:`18258` - sys_get_be64() is missing from sys/byteorder.h
698* :github:`18253` - Network samples echo_client doesn't work if only IPv4 enabled.
699* :github:`18246` - Build failures with current tree
700* :github:`18238` - drivers/modem/modem_socket: modem_socket_put() sock_fd parameter not handled correctly
701* :github:`18232` - drivers: can: mcux: TX callback and can_detach don't work propperly
702* :github:`18231` - MCUBoot not cleaning up properly before booting Zephyr?
703* :github:`18228` - stm32h747i_disco: Fix SYS_CLOCK_TICKS_PER_SEC
704* :github:`18212` - README file missing for civetweb sample
705* :github:`18205` - tests/net/socket/udp fails when code coverage is enabled on qemu_x86
706* :github:`18202` - Disable Duplicate scan, no longer available
707* :github:`18201` - bug: west flash with --hex-file param used to work w/o path specified
708* :github:`18198` - SDK 0.10.2 rv32m1_vega samples/subsys/logging/logger build fails
709* :github:`18194` - [zephyr 1.14][MESH/NODE/CFG/HBP/BV-05-C] Zephyr does not send Heartbeat message on friendship termination
710* :github:`18188` - [zephyr 1.14] Re-enabling CCC gets broken when used along with Robust Caching
711* :github:`18183` - [zephyr 1.14][GATT/SR/GAS/BV-07-C] GATT Server does not inform change-unaware client about DB changes
712* :github:`18181` - Some platforms(e.g. sam_e70_xplained) will be flashed failure if the platforms have not generated HEX file although they are built successfully.
713* :github:`18178` - BLE Mesh When Provisioning Use Input OOB Method
714* :github:`18171` - gen_defines creates identical labels for multicell pwms definition
715* :github:`18155` - i2c_ll_stm32_v1: I2C_CR1:STOP is not cleared
716* :github:`18154` - Qemu: mps2+: missing documentation
717* :github:`18150` - [zephyr 1.14] Host does not change the RPA
718* :github:`18141` - arc: the caculation of exception stack is wrong
719* :github:`18140` - xtensa passes NULL esf on fatal error
720* :github:`18132` - getting_started should indicate upgrade rather than just install west
721* :github:`18131` - devicetree should check input against declared type
722* :github:`18092` - Assert in BT controller on RPA timeout
723* :github:`18090` - [zephyr 1.14][MESH/NODE/FRND/FN/BV-08-C] Mesh Friend queues more messages than indicates it's Friend Cache
724* :github:`18080` - LWM2M bootstrap issue
725* :github:`18059` - k_busy_wait passed milliseconds instead of microseconds
726* :github:`18052` - z_fatal_error missing log_strdup
727* :github:`18048` - [zephyr 1.14] Zephyr with privacy does not disconnect device with unresolvable RPA
728* :github:`18042` - Only corporate members can join the slack channel
729* :github:`18034` - It's impossible to build Zephyr via cmake/make with west 0.6.0 installed
730* :github:`18029` - why kconfiglib.py doesn't throw error for file drivers/serial/Kconfig.nrfx
731* :github:`18021` - Socket vtable can access null pointer callback function
732* :github:`18019` - BT scan via shell fatal error
733* :github:`18013` - BLE Mesh On Net Buffer free issue
734* :github:`18011` - arc:  the offset generation of accl_regs is wrong
735* :github:`18009` - Dead link in documentation
736* :github:`18005` - BLE Mesh When Friend Clear Procedure Timeout
737* :github:`18002` - Flash using open source stlink, instead of SEGGER jlink?
738* :github:`17997` - fix extern "C" use throughout Zephyr
739* :github:`17996` - BUILD_ASSERT not active in three of five shippable platforms
740* :github:`17990` - BLE Mesh When IV update test procedure
741* :github:`17979` - Security level cannot be elevated after re-connection with privacy
742* :github:`17977` - BLE Mesh When IV Update Procedure
743* :github:`17971` - [zephyr 1.14] Unable to register GATT service that was unregistered before
744* :github:`17967` - drivers/pwm/pwm_api test failed on frdm_k64f board.
745* :github:`17965` - kernel/sleep/ test failed on reel_board.
746* :github:`17962` - BLE Mesh Recommended memory allocation due to who is assigned who releases the strategy
747* :github:`17956` - Is POSIX I/O supported on peripheral?
748* :github:`17951` - RFC: update FS API for readdir consistency
749* :github:`17948` - Bluetooth: privacy: Reconnection issue
750* :github:`17944` - [zephyr 1.14]  LE Enhanced Connection Complete indicates Resolved Public once connected to Public peer address
751* :github:`17936` - Bluetooth: Mesh: The canceled buffer is not free, causing a memory leak
752* :github:`17932` - BLE Mesh When Friend Send Seg Message To LPN
753* :github:`17926` - CAN | nrf52 | device tree error: zephyrproject/zephyr/dts/bindings/can/microchip,mcp2515.yaml (in 'reg'): 'category' from !included file overwritten ('required' replaced with 'optional')
754* :github:`17923` - SPI1 on nrf52_pca10040 is dead by default
755* :github:`17922` - Driver: modem helper should make it easier to implement a modem
756* :github:`17920` - Bluetooth: Security problem
757* :github:`17907` - BLE Mesh when resend use GATT bearer
758* :github:`17899` - tests/kernel/mem_protect/stackprot/kernel.memory_protection fails on nsim_em
759* :github:`17897` - k_busy_wait not working when using 32KHz timer driver
760* :github:`17891` - fs/nvs: nvs_init can hang if no nvs_ate available
761* :github:`17882` - [zephyr 1.14]  Database Out of Sync error is not returned as expected
762* :github:`17880` - Unable to re-connect to privacy enabled peer when using stack generated Identity
763* :github:`17876` - BME680 sensor sample not building
764* :github:`17870` - Incorrect report received lenght and offset in async API
765* :github:`17869` - Unlocking nested k_sched_lock() cause forced preemption
766* :github:`17864` - cpp_synchronization sample not working on nucleo_l476rg
767* :github:`17861` - Tester application lacks BTP Discover All Primary Services handler
768* :github:`17857` - GATT: Incorrect byte order for GATT database hash
769* :github:`17853` - kernel panic in tests/kernel/sched/schedule_api
770* :github:`17851` - riscv/m2gl025: timer tests broken
771* :github:`17843` - Bluetooth: controller: v1.14.x release conformance test failures
772* :github:`17821` - Mesh Bug on access.c
773* :github:`17820` - Mesh  bug report In access.c
774* :github:`17816` - LVGL V5.3 build error if CONFIG_LVGL_COLOR_16_SWAP=y
775* :github:`17812` - pthread_cond_timedwait interprets timeout wrong
776* :github:`17809` - Bluetooth Mesh message cached too early when LPN
777* :github:`17802` - [zephyr 1.14] Address type 0x02 is used by LE Create Connection in device privacy mode
778* :github:`17800` - Bluetooth: GATT: Write Without Reponse to invalid handle asserts
779* :github:`17794` - Timeutil_api test fails with sanitycheck on iotdk board.
780* :github:`17790` - MEC1501 configure warnings in eSPI (dts)
781* :github:`17789` - Bluetooth: host: conn.c missing parameter copy
782* :github:`17787` - openocd unable to flash hello_world to cc26x2r1_launchxl
783* :github:`17784` - failing network tests with code coverage enabled in qemu_x86 not failing when run with gdb
784* :github:`17783` - network tests failing with code coverage enabled in qemu_x86 (coverage.c)
785* :github:`17782` - network tests failing with 'unexpected eof' with code coverage enabled in qemu_x86 (TSS)
786* :github:`17778` - Microchip XEC rtos Timer breaks gpios and k_sleep?
787* :github:`17772` - Compilation error of soc/arm/nxp_imx/rt/soc.c
788* :github:`17764` - Broken link to latest development version of docs
789* :github:`17751` - build is broken for mec15xxevb_assy6853
790* :github:`17738` - STATIC_ASSERT no longer defined when CONFIG_NEWLIB_LIBC is enabled
791* :github:`17732` - cannot use bt_conn_security in connected callback
792* :github:`17727` - how to make zephyr as a ble mesh provisioner to other BLE based board having ble mesh
793* :github:`17726` - How to make Zephyr as a ble mesh provisioner ?
794* :github:`17723` - Advertiser never clears state flags
795* :github:`17715` - Missing 'reg-names' string in riscv32-litex-vexriscv.dtsi
796* :github:`17703` - Add prop 'clock-frequency' to STM32  targets
797* :github:`17697` - usb_dc_nrfx driver gets stuck after USB3CV HID Tests are performed on hid sample
798* :github:`17692` - Proper way for joining a multicast group (NRF52840/OpenThread)
799* :github:`17690` - samples/subsys/shell/fs does not work?
800* :github:`17671` - ADC not supported by nrf52840_pca10059 DTS file
801* :github:`17665` - Missing 'label' on most nodes with 'compatible = "pwm-leds"'
802* :github:`17664` - Missing 'clocks' on most nodes with 'compatible = "nxp,kinetis-usbd"'
803* :github:`17663` - Missing 'label' on most nodes with 'compatible = "fixed-clock"'
804* :github:`17662` - Missing 'label' on nodes with 'compatible = "jedec,spi-nor"'
805* :github:`17657` - subsis/disk/disk_access_spi_sdhc: response data eaten by idle byte consumption
806* :github:`17650` - devicetree: missing preferred instance presence macro
807* :github:`17635` - UnicodeDecodeError is raised while executing west build
808* :github:`17630` - efr32mg_sltb004a tick clock error
809* :github:`17613` - POSIX arch: occasional failures of tests/kernel/sched/schedule_api on CI
810* :github:`17608` - NMP timeout when uploading image with mcumgr over BLE under Linux
811* :github:`17600` - Enable Mesh Friend support in Bluetooth tester application
812* :github:`17595` - two userspace tests fail if stack canaries are enabled in board configuration
813* :github:`17591` - ARM: z_arch_except() is too permissive in user mode
814* :github:`17590` - ARC: unable to induce kernel_oops or stack check fail errors from user mode
815* :github:`17586` - stack canary storage area should be read-only to user mode?
816* :github:`17584` - k_mutex is not SMP-safe
817* :github:`17581` - linker script packing failure with subsys/fb fonts and native_posix_64
818* :github:`17564` - Missing 'stdlib.h' include when C++ standard library is used.
819* :github:`17559` - Assertion failed: zephyr toolchain variant invalid
820* :github:`17557` - samples/net/wifi fails to build on cc3220sf_launchxl
821* :github:`17555` - CONFIG_LOG doesn't work on x86_64 due to no working backends
822* :github:`17554` - pyocd flash does not support the -b option for board ID so that the sanitycheck script can’t specified the board ID to flash when the host connected with multiple boards.
823* :github:`17550` - SimpleLink WiFi host driver should revert back to using static memory model
824* :github:`17547` - incorrect documentation for debugging nsim_em / nsim_sem
825* :github:`17543` - dtc version 1.4.5 with ubuntu 18.04 and zephyr sdk-0.10.1
826* :github:`17534` - Race condition in GATT API.
827* :github:`17532` - List of missing device tree properties with 'category: required' in the binding for the node
828* :github:`17525` - L2CAP: On insufficient authentication error received, Zephyr does unauthenticated pairing
829* :github:`17511` - _bt_br_channels_area  section missing in sanitycheck whitelist
830* :github:`17508` - RFC: Change/deprecation in display API
831* :github:`17507` - system timer drivers using the "new" API should not be configured with CONFIG_TICKLESS_KERNEL
832* :github:`17497` - Bluetooth: Mesh: How to Write provision and configure data to flash?
833* :github:`17488` - CDC_ACM USB on nRF device fails after suspend
834* :github:`17487` - v1.14-branch: SDK 0.10.1 support?
835* :github:`17486` - nRF52: SPIM: Errata work-around status?
836* :github:`17485` - sanitycheck: Over-zealous checking for binary sections
837* :github:`17483` - mec15xxevb_assy6853 board documentation is erroneous
838* :github:`17480` - holyiot_yj16019 cannot compile IEEE 802.15.4 L2
839* :github:`17478` - net/buf test fails for qemu_x86_64
840* :github:`17475` - [RTT] compile error when RTT console enabled
841* :github:`17463` - Bluetooth: API limits usage of MITM flags in Pairing Request
842* :github:`17460` - sample: gui/lvgl
843* :github:`17450` - net: IPv6/UDP datagram with unspecified addr and zero hop limit causes Zephyr to quit
844* :github:`17439` - sanitycheck: nrf52840-pca10056 (dev kit) picks up sample/drivers items which will fail due to missing HW
845* :github:`17427` - net: IPv4/UDP datagram with zero src addr and TTL causes Zephyr to segfault
846* :github:`17419` - arch:arc: remove the extra vairables used in irq and exception handling
847* :github:`17415` - Settings Module - settings_line_val_read() returning -EINVAL instead of 0 for deleted setting entries
848* :github:`17410` - k_work should have a user_data field
849* :github:`17408` - LwM2M: engine doesn't support offloaded TLS stack
850* :github:`17401` - LwM2M: requires that CONFIG_NET_IPV* be enabled (can't use 100% offloaded IP stack)
851* :github:`17399` - LwM2M: Can't use an alternate mbedtls implementation
852* :github:`17381` - DTS compatible property processing assumes specific driver exists
853* :github:`17379` - Wrong hex file generated for MCUboot
854* :github:`17378` - samples: net: echo-server: no return packet
855* :github:`17376` - device tree diagnostic failure in enum
856* :github:`17368` - Time Slicing cause system sleep short time
857* :github:`17366` - Regression: sanitycheck coverage generation defaults will error out for POSIX arch targets
858* :github:`17365` - Documentation: sanitycheck coverage generation instructions lead to errors and no coverage report for POSIX boards
859* :github:`17363` - SPI driver does not reset master mode fault on STM32
860* :github:`17353` - Configuring with POSIX_API disables NET_SOCKETS_POSIX_NAMES
861* :github:`17342` - CODEOWNERS is broken (III)
862* :github:`17340` - Bluetooth Mesh: Unable to receive messages when RPL is full.
863* :github:`17338` - kernel objects address check in elf_helper.py
864* :github:`17313` - drivers: usb_dc_mcux_ehci does not compile
865* :github:`17307` - device tree bindings disallow strings that begin with integers
866* :github:`17294` - DB corruption when adding/removing service
867* :github:`17288` - Bluetooth: controller: Fix handling of L2CAP start frame with zero PDU length
868* :github:`17284` - unrecognized binary sections: ['_settings_handlers_area']
869* :github:`17281` - sanitycheck error on mimxrt1050_evk samples/gui/lvgl/sample.gui.lvgl with no network connection
870* :github:`17280` - How to use UART1 for nrf52_pca10040
871* :github:`17277` - no code coverage for k_float_disable() in user mode
872* :github:`17266` - CDC_ACM USB not recognized by windows as serial port
873* :github:`17262` - insufficient code coverage for lib/os/base64.c
874* :github:`17251` - w25q: erase operations must be erase-size aligned
875* :github:`17250` - After first GC operation the 1st sector had become scratch and the 2nd sector had became write sector.
876* :github:`17231` - Posix filesystem wrapper leaks internal FS desc structures
877* :github:`17226` - [Coverity CID :61894]Security best practices violations in /home/aasthagr/zephyrproject/modules/crypto/mbedtls/library/rsa.c
878* :github:`17225` - [Coverity CID :61905]Insecure data handling in /home/aasthagr/zephyrproject/modules/crypto/mbedtls/library/ssl_cli.c
879* :github:`17224` - [Coverity CID :78542]Null pointer dereferences in /home/aasthagr/zephyrproject/modules/crypto/mbedtls/library/rsa.c
880* :github:`17223` - [Coverity CID :149311]Control flow issues in /home/aasthagr/zephyrproject/modules/crypto/mbedtls/library/cipher.c
881* :github:`17222` - [Coverity CID :173947]Uninitialized variables in /home/aasthagr/zephyrproject/modules/lib/mcumgr/cborattr/src/cborattr.c
882* :github:`17221` - [Coverity CID :173979]Control flow issues in /home/aasthagr/zephyrproject/modules/lib/tinycbor/src/cborparser.c
883* :github:`17220` - [Coverity CID :173986]Control flow issues in /home/aasthagr/zephyrproject/modules/lib/mcumgr/cborattr/src/cborattr.c
884* :github:`17219` - [Coverity CID :174014]Incorrect expression in /home/aasthagr/zephyrproject/modules/lib/tinycbor/src/cborparser.c
885* :github:`17218` - [Coverity CID :186031]Control flow issues in /home/aasthagr/zephyrproject/modules/lib/mcumgr/cmd/fs_mgmt/src/fs_mgmt.c
886* :github:`17217` - [Coverity CID :186038]Control flow issues in /home/aasthagr/zephyrproject/modules/lib/mcumgr/cmd/img_mgmt/src/img_mgmt.c
887* :github:`17216` - [Coverity CID :186052]Control flow issues in /home/aasthagr/zephyrproject/modules/lib/mcumgr/cmd/fs_mgmt/src/fs_mgmt.c
888* :github:`17215` - [Coverity CID :186054]Control flow issues in /home/aasthagr/zephyrproject/modules/lib/mcumgr/cmd/img_mgmt/src/img_mgmt_state.c
889* :github:`17214` - [Coverity CID :186060]Control flow issues in /home/aasthagr/zephyrproject/modules/lib/mcumgr/cmd/img_mgmt/src/img_mgmt_state.c
890* :github:`17213` - [Coverity CID :186188]Memory - illegal accesses in /home/aasthagr/zephyrproject/modules/lib/open-amp/open-amp/lib/rpmsg/rpmsg.c
891* :github:`17212` - [Coverity CID :187076]Control flow issues in /home/aasthagr/zephyrproject/modules/hal/silabs/gecko/emlib/src/em_cmu.c
892* :github:`17211` - [Coverity CID :188746]Memory - illegal accesses in /home/aasthagr/zephyrproject/modules/hal/cypress/PDL/3.1.0/drivers/source/cy_syslib.c
893* :github:`17210` - [Coverity CID :190643]Error handling issues in /home/aasthagr/zephyrproject/modules/debug/segger/systemview/SEGGER_SYSVIEW.c
894* :github:`17209` - [Coverity CID :190927]Uninitialized variables in /home/aasthagr/zephyrproject/modules/lib/open-amp/open-amp/lib/remoteproc/remoteproc.c
895* :github:`17208` - [Coverity CID :190941]Insecure data handling in /home/aasthagr/zephyrproject/modules/crypto/mbedtls/library/ssl_tls.c
896* :github:`17207` - [Coverity CID :190963]Code maintainability issues in /home/aasthagr/zephyrproject/modules/fs/nffs/src/nffs_restore.c
897* :github:`17206` - [Coverity CID :190975]Memory - illegal accesses in /home/aasthagr/zephyrproject/modules/lib/open-amp/open-amp/lib/include/openamp/rpmsg.h
898* :github:`17205` - [Coverity CID :190999]Insecure data handling in /home/aasthagr/zephyrproject/modules/lib/open-amp/open-amp/lib/rpmsg/rpmsg_virtio.c
899* :github:`17204` - [Coverity CID :191000]Memory - corruptions in /home/aasthagr/zephyrproject/modules/lib/open-amp/open-amp/lib/remoteproc/remoteproc.c
900* :github:`17203` - [Coverity CID :198951]Code maintainability issues in /home/aasthagr/zephyrproject/modules/debug/segger/systemview/SEGGER_SYSVIEW.c
901* :github:`17202` - [Coverity CID :199436]Uninitialized variables in /subsys/net/lib/sockets/sockets.c
902* :github:`17201` - [Coverity CID :199437]Null pointer dereferences in /tests/net/ip-addr/src/main.c
903* :github:`17200` - [Coverity CID :199438]Memory - illegal accesses in /drivers/interrupt_controller/exti_stm32.c
904* :github:`17190` - net-mgmt should pass info element size to callback
905* :github:`17188` - k_uptime_delta returns wrong times
906* :github:`17182` - "tests/subsys/usb/device/" fails on reel_board.
907* :github:`17177` - ARM: userspace/test_bad_syscall fails on ARMv8-M
908* :github:`17176` - deprecated counter_set_alarm is referenced in documentation
909* :github:`17172` - insufficient code coverage for lib/os/mempool.c
910* :github:`17170` - x86_64 crash with spinning child thread
911* :github:`17167` - ARC crash with spinning user thread
912* :github:`17166` - arch/x86: eliminate support for CONFIG_REALMODE
913* :github:`17158` - Bluetooth: Update PICS for latest PTS 7.4.1
914* :github:`17147` - UARTE device has no API when run on nrf52810
915* :github:`17114` - drivers: usb_dc_stm32 broken after west update
916* :github:`17111` - nucleo_f030r8 build error
917* :github:`17095` - Building with Xtensa toolchain fails
918* :github:`17092` - Bluetooth: GAP/IDLE/NAMP/BV-01-C requires Read by UUID
919* :github:`17065` - Misspelled CONFIG use in is_rodata() for CONFIG_RISCV32
920* :github:`17063` - tests/kernel/tickless/tickless_concept (qemu_x86) fails even outside of CI
921* :github:`17057` - Bluetooth: Mesh: Implementation doesn't conform to latest errata and 1.0.1 version
922* :github:`17055` - net: Incorrect data length after the connection is established
923* :github:`17053` - Bluetooth Mesh: Periodic Publishing
924* :github:`17043` - compile "hello-world" sample for esp32 board error
925* :github:`17041` - [1.14] Bluetooth: Mesh: RPL handling is not in line with the spec
926* :github:`17038` - code relocation generating different memory layout cause user mode not working
927* :github:`17037` - MQTT with TLS support over SOCKS
928* :github:`17031` - Compiler warnings in settings module in Zephyr 1.14
929* :github:`17017` - #16827 Breaks Ethernet on FRDM-K64F
930* :github:`17015` - #15910 Breaks Ethernet on STM32F7
931* :github:`17013` - Bluetooth: Add error reason to pairing failed callbacks
932* :github:`17007` - USB mass demo format fails on frdm_k64f
933* :github:`16989` - Errors when building application in Eclipse
934* :github:`16971` - DFU supported for hci_uart sample ?
935* :github:`16946` - characteristic value handle vs characteristic handle
936* :github:`16944` - Insufficient test coverage for lib/os/json.c
937* :github:`16943` - Missing test coverage for lib/os/crc*.c
938* :github:`16934` - drivers: flash: stm32l4: Erase wait time is not enough
939* :github:`16931` - logging: Assertion when in panic mode
940* :github:`16926` - NXP LPC54102(LPC54114): question about dual core(M4 and M0) running on flash
941* :github:`16924` - Add DNS server added/removed events to net_mgmt
942* :github:`16915` - stack_sentinel: rare ASSERTION FAIL [!(z_arch_curr_cpu()->nested != 0U)] @ ZEPHYR_BASE/kernel/thread.c:429  Threads may not be created in ISRs
943* :github:`16911` - tests/kernel/sched/schedule_api crash on qemu_x86_64 with SCHED_MULTIQ enabled
944* :github:`16907` - native_posix build fails with X86_64 on macOS
945* :github:`16901` - No test coverage for CONFIG_ZERO_LATENCY_IRQS
946* :github:`16899` - fs/nvs: might loop-up if storage was not erased before first run
947* :github:`16898` - bluetooth stack change affects timer behavior
948* :github:`16894` - ARM: alignment problems in libc/newlib
949* :github:`16893` - Bluetooth: Multiple local IDs, privacy problem
950* :github:`16887` - ARM: threads' privilege stack alignment is not optimal
951* :github:`16872` - Bluetooth: LL: Peripheral crashes after a while with multiple Centrals
952* :github:`16864` - Bluetooth: Mesh: Rx buffer exhaustion causes deadlock
953* :github:`16862` - arc: -mfpu=fpuda_all is not set when CONFIG_FLOAT is configured
954* :github:`16861` - nRF52: UARTE: Data corruption right after resuming device
955* :github:`16830` - Bluetooth: controller: Follow up on ticker conflict resolution
956* :github:`16823` - k_busy_wait() on nRF5x boards isn't waiting long enough
957* :github:`16803` - Deferred bt_conn_tx causes sysworkq deadlock
958* :github:`16799` - Bluetooth: L2CAP: Interpretation of SCID and DCID in Disconnect is wrong
959* :github:`16797` - [Zephyr v1.14.0] stm32: MCUboot bootloader results in Hardware exception
960* :github:`16793` - kernel timeout_list repeatedly add a thread
961* :github:`16787` - [Coverity CID :198945]Null pointer dereferences in /subsys/bluetooth/controller/ll_sw/ull_conn.c
962* :github:`16786` - [Coverity CID :198946]Memory - corruptions in /subsys/bluetooth/host/gatt.c
963* :github:`16785` - [Coverity CID :198949]Error handling issues in /tests/net/socket/register/src/main.c
964* :github:`16779` - [Zephyr v1.14] ARM: fix the start address of MPU guard in stack-fail checking (when building with no user mode)
965* :github:`16778` - Build failures in various mimxrt boards
966* :github:`16773` - DTS: generated output for each flash-controller
967* :github:`16770` - Complete FP support for ARC
968* :github:`16761` - nrf52840 usb driver with openthread
969* :github:`16760` - K_THREAD_STACK_EXTERN() confuses gen_kobject_list.py
970* :github:`16750` - counter:  lack of interrupt when CC=0
971* :github:`16749` - IRQ_CONNECT and irq_enable calls in the SiFive UART driver is misconfigured
972* :github:`16747` - bluetooth: peripheral: RX buffer size issues
973* :github:`16746` - boards: nrf52840_pca10059: Configure NFC pins as GPIOs by default
974* :github:`16745` - PTHREAD_MUTEX_DEFINE(): don't store into the _k_mutex section
975* :github:`16739` - spi: stm32: pinmux: default configuration does not opt for low power consumption
976* :github:`16734` - Bluetooth: GATT: Writing 1 byte to a CCC access invalid memory
977* :github:`16733` - soc/stm32: Remove useless package digit for STM32 SoC Kconfig symbols
978* :github:`16720` - drivers/loapic_timer.c is buggy, needs cleanup
979* :github:`16716` - soc: stm32: Is the setting of NUM_IRQS in the F3 series wrong?
980* :github:`16707` - Problem with k_sleep
981* :github:`16695` - code coverage: kernel/device.c
982* :github:`16687` - basic disco sample fails
983* :github:`16678` - LPN establishment of Friendship never completes if there is no response to the initial Friend Poll
984* :github:`16676` - Settings enhancements
985* :github:`16672` - nrf: spi: Excess current
986* :github:`16670` - Memory reports do not work when Nordic proprietary LL is selected
987* :github:`16661` - Symmetric multiprocessing (SMP) for ARC HS cores
988* :github:`16639` - eth: pinging frdm k64f eventually leads to unresponsive ethernet device
989* :github:`16634` - GATT indicate API inconsistent when using characteristic declaration attribute as argument
990* :github:`16631` - SDK_VERSION
991* :github:`16624` - Building Grub fails when using gcc9
992* :github:`16623` - Building with Openthread fails
993* :github:`16607` - Building hello_world fails for xtensa: xt-xcc ERROR parsing -Wno-address-of-packed-member:  unknown flag
994* :github:`16606` - Fault in CPU stats
995* :github:`16604` - Zephyr fails to build with CPU load measurement enabled
996* :github:`16603` - Bluetooth: Gatt Discovery: BT_GATT_DISCOVER_PRIMARY returns all services while BT_GATT_DISCOVER_SECONDARY returns none
997* :github:`16602` - Bluetooth: GATT Discovery: Descriptor Discovery by range Seg Fault
998* :github:`16600` - Bluetooth: Mesh: Proxy SAR timeout is not implemented
999* :github:`16594` - net: dns: Zephyr is unable to unpack mDNS answers produced by another Zephyr node
1000* :github:`16584` - [Coverity CID :198863]Error handling issues in /subsys/net/lib/sntp/sntp.c
1001* :github:`16583` - [Coverity CID :198864]Parse warnings in /subsys/logging/log_backend_rtt.c
1002* :github:`16582` - [Coverity CID :198865]Null pointer dereferences in /drivers/usb/device/usb_dc_stm32.c
1003* :github:`16581` - [Coverity CID :198866]Null pointer dereferences in /subsys/net/lib/dns/llmnr_responder.c
1004* :github:`16580` - [Coverity CID :198867]Parse warnings in /tests/subsys/fs/nffs_fs_api/common/nffs_test_system_01.c
1005* :github:`16579` - [Coverity CID :198868]Parse warnings in /drivers/watchdog/wdt_qmsi.c
1006* :github:`16578` - [Coverity CID :198869]Parse warnings in /subsys/shell/shell_rtt.c
1007* :github:`16577` - [Coverity CID :198870]Error handling issues in /subsys/net/lib/lwm2m/lwm2m_obj_firmware_pull.c
1008* :github:`16576` - [Coverity CID :198871]Parse warnings in /drivers/i2c/i2c_qmsi_ss.c
1009* :github:`16575` - [Coverity CID :198872]Parse warnings in /tests/subsys/settings/nffs/src/settings_setup_nffs.c
1010* :github:`16574` - [Coverity CID :198873]Incorrect expression in /tests/drivers/uart/uart_async_api/src/test_uart_async.c
1011* :github:`16573` - [Coverity CID :198874]Null pointer dereferences in /drivers/usb/device/usb_dc_stm32.c
1012* :github:`16572` - [Coverity CID :198875]Memory - corruptions in /drivers/flash/flash_simulator.c
1013* :github:`16571` - [Coverity CID :198876]Parse warnings in /tests/subsys/fs/multi-fs/src/test_nffs.h
1014* :github:`16570` - [Coverity CID :198877]Null pointer dereferences in /subsys/net/ip/net_if.c
1015* :github:`16569` - [Coverity CID :198878]Error handling issues in /samples/net/sockets/echo_server/src/tcp.c
1016* :github:`16568` - [Coverity CID :198879]Parse warnings in /tests/subsys/fs/fat_fs_dual_drive/src/test_fat_mount.c
1017* :github:`16567` - [Coverity CID :198880]Possible Control flow issues in /samples/net/lwm2m_client/src/lwm2m-client.c
1018* :github:`16566` - [Coverity CID :198881]Parse warnings in /drivers/serial/uart_qmsi.c
1019* :github:`16565` - [Coverity CID :198882]Parse warnings in /drivers/console/rtt_console.c
1020* :github:`16564` - [Coverity CID :198883]Parse warnings in /drivers/gpio/gpio_qmsi_ss.c
1021* :github:`16563` - [Coverity CID :198884]Parse warnings in /drivers/counter/counter_qmsi_aon.c
1022* :github:`16524` - FXOS8700 is not well supported in twr_ke18f
1023* :github:`16519` - USAGE FAULT occurs when i2c_write is called
1024* :github:`16518` - USB_UART_DTR_WAIT not working on nrf52840_pca10059
1025* :github:`16508` - tests/subsys/storage/flash_map  Instruction bus error on frdmk64 board
1026* :github:`16506` - tests/posix/fs missing ff.h
1027* :github:`16501` - Code Coverage for qemu_x86 is not getting generated due to a build error
1028* :github:`16493` - [Coverity CID :198640]Resource leaks in /tests/net/socket/register/src/main.c
1029* :github:`16492` - [Coverity CID :198644]Incorrect expression in /tests/drivers/uart/uart_async_api/src/test_uart_async.c
1030* :github:`16487` - tests/kernel/timer/timer_api/kernel.timer  sporadically (high frequency) fails in CI on qemu-xtensa
1031* :github:`16483` - net: ipv6: udp: Zephyr replies to datagram with illegal checksum 0
1032* :github:`16478` - Bluetooth: Improper bonded peers handling
1033* :github:`16470` - Superfluous USB suspend after USB configured
1034* :github:`16463` - tests/subsys/settings/fcb_init fails on second run
1035* :github:`16453` - sockets: getaddrinfo: AF_UNSPEC handling was recently broken
1036* :github:`16432` - Weird link error of the console sample!
1037* :github:`16428` - samples/gui/lvgl does not work on PCA10056
1038* :github:`16426` - Missing included dependencies in many header files
1039* :github:`16419` - Bluetooth: XTAL feature regression
1040* :github:`16418` - drivers: watchdog: sam0: check if timeout is valid
1041* :github:`16417` - issues with can filter mode set
1042* :github:`16416` - sram size for RT1015 and RT1020 needs to be update.
1043* :github:`16415` - Build errors with C++
1044* :github:`16414` - Backport west build --pristine
1045* :github:`16413` - Missing dependency in cmake
1046* :github:`16412` - on reel_board the consumption increases because TX pin is floating
1047* :github:`16411` - bad regex for west version check in host-tools.cmake
1048* :github:`16389` - ninja flash to intel quark d2000 zephyr
1049* :github:`16387` - STM32wb55 bluetooth samples fail
1050* :github:`16379` - net: ipv6: udp: Zephyr replies with illegal UDP checksum zero
1051* :github:`16375` - net: ipv4: udp: Zephyr does not reply to a valid datagram with checksum zero
1052* :github:`16366` - Build error on QEMU x86 and quark_se_c1000_devboard
1053* :github:`16365` - lwm2m: enable with CONFIG_NET_RAW_MODE
1054* :github:`16363` - Error building x_nucleo_iks01a1 sample on nucleo_wb55rg after activating I2C Bus
1055* :github:`16360` - ARM: Implement configurable MPU-based stack overflow guards
1056* :github:`16354` - net: ipv6: Zephyr does not reply to fragmented packet
1057* :github:`16341` - Bluetooth: GATT Server failed to send Service Change Indication
1058* :github:`16339` - openthread: off-by-one error when calculating ot_flash_offset for settings
1059* :github:`16327` - doc: networking: overview has out of date info for LwM2M
1060* :github:`16326` - USB3CV Chapter 9 Tests failures
1061* :github:`16323` - net: ipv6: tcp: unexpected reply to malformed HBH in TCP/IPv6 SYN
1062* :github:`16318` - net: Network Offloading: Particle Boron
1063* :github:`16316` - ST modules organization
1064* :github:`16313` - LMP Response Timeout / LL Response Timeout (0x22) after ~40s when using LE Secure Connections
1065* :github:`16307` - cannot move location counter backwards error happen
1066* :github:`16303` - mbedtls: config-tls-generic.h: MBEDTLS_PLATFORM_NO_STD_FUNCTIONS seems ungrounded
1067* :github:`16296` - dts generation in correct for 2 registers and no-size
1068* :github:`16289` - Driver: modem ublox-sara-r4 not compiling
1069* :github:`16278` - [Zepyhr v1.14.0] Unable to update FW with mcumgr over UART
1070* :github:`16276` - net: ipv4: Zephyr replies to link-layer broadcast packet
1071* :github:`16275` - setting_init crashes on qemu_x86 when setting BT_SETTINGS
1072* :github:`16273` - Calling k_work_submit can reenable interrupts
1073* :github:`16272` - bluetooth mesh proxy filter
1074* :github:`16268` - Add 32K RAM support for nRF51822 REVC/microbit board
1075* :github:`16257` - net: icmpv4: Zephyr sends echo reply with multicast source address
1076* :github:`16243` - std::vector push_back() not working correctly
1077* :github:`16240` - USB Bluetooth and DFU classes cannot be enabled simultaneously on nRF52840
1078* :github:`16238` - k_cycle_get_32() API is useless in some Zephyr configurations
1079* :github:`16236` - [docs] Windows installation guide, git part, is installed with non-intended configuration
1080* :github:`16234` - tests/benchmarks/latency_measure can not calculate the real time thread switch for twr_ke18f
1081* :github:`16229` - tests/kernel/common fails at test_atomic on twr_ke18f board
1082* :github:`16227` - Zephyr env: unset var in conditional activation
1083* :github:`16226` - ARM: IsInIsr(): inconsistencies between doc and implementation
1084* :github:`16225` - tests/kernel/msgq/msgq_api twr_ke18f fails with assert
1085* :github:`16224` - tests/subsys/storage/flash_map meet mpu hardfault in twr_ke18f board.
1086* :github:`16216` - tests/kernel/timer/timer_api fails on nrf51_pca10028 board
1087* :github:`16215` - FIFO queue data seems to get overwritten
1088* :github:`16211` - NVS: sector erase at startup (2-sectors configuration)
1089* :github:`16204` - Build STM32 : generate hex file fail
1090* :github:`16191` - boards/arm/{olimexino_stm32, stm32_min_dev}: USB pinmux setup is skipped
1091* :github:`16185` - Compile error using entropy.h in C++ code
1092* :github:`16177` - STM32: Could not compile with CONFIG_PINMUX=n
1093* :github:`16170` - CI fails because warning in LOG_ERR() in drivers/i2s_ll_stm32.c
1094* :github:`16164` - [Coverity CID :198584]Uninitialized variables in /drivers/led/ht16k33.c
1095* :github:`16163` - [Coverity CID :198587]Incorrect expression in /tests/subsys/usb/desc_sections/src/desc_sections.c
1096* :github:`16162` - [Coverity CID :198588]Control flow issues in /drivers/gpio/gpio_cc13xx_cc26xx.c
1097* :github:`16161` - [Coverity CID :198589]Control flow issues in /drivers/i2c/i2c_sam0.c
1098* :github:`16160` - [Coverity CID :198590]Control flow issues in /drivers/i2c/i2c_sam0.c
1099* :github:`16159` - [Coverity CID :198591]Control flow issues in /drivers/sensor/adxl362/adxl362.c
1100* :github:`16158` - LwM2M: Fix incorrect last_block handling in the firmware write callback
1101* :github:`16156` - Remove the LWM2M maximum number of instances limitation
1102* :github:`16155` - drivers: can: wrong value used for filter mode set
1103* :github:`16154` - Fix various issues with handling of floating values within the LWM2M subsystem
1104* :github:`16148` - ARM: Enable building with TRUSTED_EXECUTION_SECURE
1105* :github:`16145` - question: Using OpenThread API in Zephyr application
1106* :github:`16143` - posix: clock_settime calculates the base time incorrectly
1107* :github:`16142` - NET: llmnr responder sends malformed packets
1108* :github:`16141` - posix: CONFIG_POSIX_API and CONFIG_NET_SOCKETS_POSIX_NAMES don't make sense to use together, and conflict when doing so
1109* :github:`16138` - is this right for clock announcing in every CORE?
1110* :github:`16132` - The nRF mesh APP report “Invalid Publish Parameters”
1111* :github:`16110` - net: arp: request from own hardware but different IP address not dropped
1112* :github:`16107` - Using bt_gatt_read() with 'by_uuid' method returns 3 extra bytes
1113* :github:`16103` - nrf5 802.15.4 driver requires Log subsys to be enabled
1114* :github:`16098` - net: arp: sender hardware address not used by ICMP/TCP/UDP
1115* :github:`16090` - mpu align support for code relocation on non-XIP system
1116* :github:`16089` - Mcux Ethernet driver does not detect carrier anymore (it's alway on)
1117* :github:`16080` - Zephyr UART shell crashes on start if main() is blocked
1118* :github:`16079` - SAM0/SAMR SERIAL subsystem broken?
1119* :github:`16078` - Shell subsystem or SERIAL no longer works on SAM0/SAMR
1120* :github:`16072` - boards/up_squared: k_sleep() too long with local APIC timer
1121* :github:`16054` - Bluetooth sample app 'peripheral' failing to build for nRF52840
1122* :github:`16052` - Adafruit Trinket M0 Bossac Offset is Wrong
1123* :github:`16046` - modules are being processed too late.
1124* :github:`16042` - NDP should be enhanced with Security, RFC 3971
1125* :github:`16027` - support for no-flash systems
1126* :github:`16025` - webusb example app not reading data
1127* :github:`16012` - Source IP address for DHCP renewal messages is unset
1128* :github:`16010` - Coverage reporting fails on many tests
1129* :github:`16006` - The ArgonKey board documentation needs to align to the official information
1130* :github:`16002` - the spi base reg address in arc_iot.dtsi has an error
1131* :github:`16001` - ARC iotdk supports MPU and fpu in hardware but not enabled in kconfig
1132* :github:`16000` - We need a CI check for commas in CODEOWNERS
1133* :github:`15998` - CODEOWNERS is broken (Again)
1134* :github:`15997` - Fix compile warning in samples/net/sockets/dumb_http_server
1135* :github:`15996` - tests/kernel/sched/schedule_api/testcase.yaml#kernel.sched.slice_reset fails on nrf52840_pca10056, nrf52_pca10040, nrf51_pca10028
1136* :github:`15991` - [Coverity CID :198389]Memory - illegal accesses in /subsys/settings/src/settings_runtime.c
1137* :github:`15990` - [Coverity CID :198390]Memory - illegal accesses in /subsys/settings/src/settings_runtime.c
1138* :github:`15989` - [Coverity CID :198391]Memory - illegal accesses in /subsys/settings/src/settings_runtime.c
1139* :github:`15988` - [Coverity CID :198392]Insecure data handling in /tests/net/socket/getaddrinfo/src/main.c
1140* :github:`15987` - [Coverity CID :198393]Error handling issues in /tests/net/socket/socket_helpers.h
1141* :github:`15986` - [Coverity CID :198394]Error handling issues in /tests/net/socket/socket_helpers.h
1142* :github:`15985` - [Coverity CID :198395]Memory - corruptions in /soc/arm/microchip_mec/mec1501/soc.c
1143* :github:`15983` - Kernel tests assume SYS_CLOCK_TICKS_PER_SEC=100
1144* :github:`15981` - ARM: k_float_disable() as system call
1145* :github:`15975` - Openthread - fault with dual network interfaces
1146* :github:`15971` - Fail to connect sample bluetooth HID with Tizen OS (BT_HCI_ERR_DIFF_TRANS_COLLISION)
1147* :github:`15970` - samples: microbit pong demo
1148* :github:`15964` - ARM: Cortex-M: enhance Sharing Floating-Point Registers Mode
1149* :github:`15961` - bug:  west: 'west flash' doesn't use specified hex file
1150* :github:`15941` - Stale 1.3.99 documentation under /latest
1151* :github:`15924` - Bluetooth: PTS: GATT server tests fail after merge of #15524
1152* :github:`15922` - BLE mesh:The Provisioner APP can't find the micro:bit which is running the mesh sample
1153* :github:`15918` - stm32f7 GPIO Ports F & G Disabled by Default
1154* :github:`15917` - USB disconnect/reconnect
1155* :github:`15916` - [BLE] Mesh example qemu kernel panic
1156* :github:`15911` - Stack size is smaller than it should be
1157* :github:`15909` - stm32f7: DTCM included in sram0
1158* :github:`15906` - WEST ERROR: extension command build was improperly defined
1159* :github:`15904` - concerns with use of CONFIG_BT_MESH_RPL_STORE_TIMEOUT in examples
1160* :github:`15893` - code coverage is not tested in CI
1161* :github:`15884` - tests/net/socket/getaddrinfo fails on mps2_an385
1162* :github:`15878` - tests/net/lib/mqtt_publisher/net.mqtt.tls fails to build on sam_e70_xplained
1163* :github:`15877` - all qemu_x86_64 tests hang on Ubuntu 18.04
1164* :github:`15864` - disk partitioning should not specified in DTS
1165* :github:`15844` - Network management API should support user space
1166* :github:`15842` - cdc_acm: stm32: uart_fifo_fill() can't transmit data out
1167* :github:`15835` - "#if XIP" block in qemu_x86 DTS always evaluates to false
1168* :github:`15831` - qemu_x86 DTS does not reflect actual emulated hardware layout
1169* :github:`15827` - ARM: Update ARM CMSIS to latest  version
1170* :github:`15823` - Build failure for spi_loopback on atsamr21_xpro
1171* :github:`15817` - nrf52: HFXO is not turned off as expected
1172* :github:`15814` - [Coverity CID :186196]Unchecked return value in  samples/sensor/lsm6dsl/src/main.c
1173* :github:`15794` - mps2_an385 crashes if CONFIG_INIT_STACKS=y and CONFIG_COVERAGE=y
1174* :github:`15789` - Networking documentation missing
1175* :github:`15778` - [Coverity CID :198001]Control flow issues in /subsys/bluetooth/host/mesh/settings.c
1176* :github:`15777` - [Coverity CID :198002]Null pointer dereferences in /subsys/net/l2/ethernet/arp.c
1177* :github:`15776` - [Coverity CID :198003]Error handling issues in /tests/net/net_pkt/src/main.c
1178* :github:`15775` - [Coverity CID :198005]Memory - corruptions in /subsys/bluetooth/shell/gatt.c
1179* :github:`15774` - [Coverity CID :198006]Control flow issues in /subsys/bluetooth/host/settings.c
1180* :github:`15773` - [Coverity CID :198007]Memory - corruptions in /subsys/bluetooth/host/hci_core.c
1181* :github:`15772` - [Coverity CID :198009]Memory - corruptions in /subsys/bluetooth/shell/gatt.c
1182* :github:`15771` - [Coverity CID :198010]Control flow issues in /samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/storage.c
1183* :github:`15770` - [Coverity CID :198011]Incorrect expression in /tests/subsys/usb/desc_sections/src/desc_sections.c
1184* :github:`15769` - [Coverity CID :198012]Memory - corruptions in /drivers/flash/flash_simulator.c
1185* :github:`15768` - [Coverity CID :198013]Control flow issues in /subsys/bluetooth/host/mesh/settings.c
1186* :github:`15767` - [Coverity CID :198014]Memory - corruptions in /drivers/flash/flash_simulator.c
1187* :github:`15766` - [Coverity CID :198016]Security best practices violations in /subsys/settings/src/settings_runtime.c
1188* :github:`15765` - [Coverity CID :198018]Control flow issues in /subsys/bluetooth/host/mesh/settings.c
1189* :github:`15764` - [Coverity CID :198019]Security best practices violations in /subsys/settings/src/settings_runtime.c
1190* :github:`15763` - [Coverity CID :198021]Control flow issues in /drivers/clock_control/clock_stm32_ll_mp1x.c
1191* :github:`15762` - [Coverity CID :198022]Security best practices violations in /subsys/settings/src/settings_runtime.c
1192* :github:`15759` - usb: cdc_acm: uart_line_ctrl_set(dev, LINE_CTRL_DTR, &dtr) should always return 0 if USB port is not opened by host
1193* :github:`15751` - Incorrect flash map
1194* :github:`15749` - [question] errors using custom command in CMakeLists.txt
1195* :github:`15748` - 'ninja flash' does not work for IMXRT1052 target
1196* :github:`15736` - Generalize and improve async context for SPI, ADC, etc.
1197* :github:`15734` - Power management doesn't work with CONFIG_I2C=y on nRF52
1198* :github:`15733` - Bluetooth: controller: Central Encryption setup overlaps Length Request procedure
1199* :github:`15728` - tests/benchmarks/timing_info: wrong value for context switch duration
1200* :github:`15720` - "z_clock_elapsed" implementation seems to be missing #linking #sched
1201* :github:`15719` - tests/ztests/mock/ : Stuck at test_parameter_tests
1202* :github:`15714` - samples/bluetooth/peripheral: could not connect with disco_l475_iot1 board
1203* :github:`15710` - [question] how about the current consumption on NRF52DK running power_mgr sample?
1204* :github:`15709` - CODEOWNERS ignored in GitHub
1205* :github:`15706` - tunslip6: main: open: No such file or directory
1206* :github:`15698` - bluetooth: bt_conn: No proper ID handling
1207* :github:`15696` - [question] why bt_setting is dependant of printk in menuconfig?
1208* :github:`15679` - Can GPTP support multiple slave nodes
1209* :github:`15678` - Watchdog peripheral api docs aren't generated correctly.
1210* :github:`15675` - DTS question about pinmix/GPIO
1211* :github:`15672` - net: socket send return error(-110) when http request 100 times
1212* :github:`15668` - Support request: Issue with documentation warning
1213* :github:`15664` - Zephyr modules failure report
1214* :github:`15652` - document the mailing list for nightly build results
1215* :github:`15639` - [question] how to get the bd_addr from scan callback as shown on nrf-connect app?
1216* :github:`15637` - Support of device tree gpio-map
1217* :github:`15627` - Application compiled with CONFIG_POSIX_API doesn't have access to POSIX headers
1218* :github:`15625` - target_compile_features in CMakeLists.txt triggers an error
1219* :github:`15622` - NXP RT10XX: Load code to ITCM
1220* :github:`15612` - bt_set_id_addr() to allow public address as argument
1221* :github:`15608` - [question] my board won't boot without debugger attached but no issue using nordic SDK
1222* :github:`15607` - nRF52: 2.4 GHz proprietary RF support
1223* :github:`15606` - trickle.c can't work for multiple triggerings
1224* :github:`15605` - Unaligned memory access by ldrd
1225* :github:`15601` - pwm: nRF default prescalar value is wrong
1226* :github:`15597` - [question] How to include mesh related header files in my own source file
1227* :github:`15596` - net: Zephyr's SNTP API time precision is not adequate
1228* :github:`15594` - net shell "net tcp send" command failed when repeated many times
1229* :github:`15588` - Does zephyr support different time slices for each thread?
1230* :github:`15587` - Zephyr was unable to find the toolchain
1231* :github:`15580` - SAMD21 Adafruit examples no longer run on boards
1232* :github:`15571` - Fix sanitycheck failures for v2m_musca_b1_nonsecure
1233* :github:`15570` - Unbonded peripheral gets 'Tx Buffer Overflow' when erasing bond on master
1234* :github:`15565` - undefined references to 'sys_rand32_get'
1235* :github:`15558` - support for power-of-two MPUs on non-XIP systems
1236* :github:`15551` - CMake enables -fmacro-prefix-map on GCC 7
1237* :github:`15549` - [FCB question] Is it true that fcb storage won't overwrite old records which limits the max num?
1238* :github:`15546` - tests/kernel/mem_protect/protection/: Reached unreachable code
1239* :github:`15526` - Unhandled identity in bt_conn_create_slave_le
1240* :github:`15522` - Extra padding in IPv4 link local ARP packets
1241* :github:`15520` - tests/ztest/mock: test_multi_value_test:  Unused mocked return value
1242* :github:`15516` - Implementation of CONFIG_MAX_PTHREAD_COUNT
1243* :github:`15513` - nRF timer unnecessary configuration?
1244* :github:`15508` - No space to store CCC cfg
1245* :github:`15507` - NRF52840: usb composite MSC + HID (with CONFIG_ENABLE_HID_INT_OUT_EP)
1246* :github:`15504` -  Can I use one custom random static bd_addr before provision?
1247* :github:`15501` - smp_svr build issue
1248* :github:`15499` - gpio_intel_apl: gpio_pin_read() pin value doesn't match documentation
1249* :github:`15497` - USB DFU: STM32: usb dfu mode doesn't work
1250* :github:`15495` - tests/drivers/spi/spi_loopback/peripheral.spi fails to build on several boards
1251* :github:`15486` - usb composite MSC + HID (with CONFIG_ENABLE_HID_INT_OUT_EP)
1252* :github:`15483` - add mpu and fpu support for arc iotdk
1253* :github:`15481` - object_access in common-rom.ld missed GROUP_LINK_IN(ROMABLE_REGION)
1254* :github:`15477` - Zephyr network stack will up the Ethernet interface after its driver initialized (regardless of actual status)
1255* :github:`15472` - DNS resolver sample sends only one A query
1256* :github:`15465` - Fix build failures for test_newlib &   tests/lib/mem_alloc/libraries.libc.newlib w/ARM gcc
1257* :github:`15451` - doc: settings Misleading examples
1258* :github:`15448` - help to use zephyr-ninja flash of st_nucleo_l476rg
1259* :github:`15447` - sanitycheck --coverage -p qemu_x86: Fatal failures with tests/kernel/pipe/pipe/kernel.pipe
1260* :github:`15446` - ssanitycheck --coverage -p mps2_an385: Some remaing test cases that are still failing
1261* :github:`15444` - Error initiating sdhc disk
1262* :github:`15443` - usb_dc_stm32: Missing semaphore initialization and missing pin remapping configuration
1263* :github:`15419` - reset and halt function
1264* :github:`15411` - tests/kernel/critical:  Continuous reboot at test_critical
1265* :github:`15408` - [Coverity CID :197596]Memory - corruptions in /tests/net/lib/mqtt_packet/src/mqtt_packet.c
1266* :github:`15391` - [Coverity CID :197613]Possible Control flow issues in /subsys/net/ip/net_core.c
1267* :github:`15374` - PR 15230 introduces test failure for particle_argon
1268* :github:`15373` - IPv4 link local packets are not sent with ARP ethernet type
1269* :github:`15355` - Driver for U-Blox SARA modem (used by Particle Boron)
1270* :github:`15354` - counter: stm32: Issue with LSE clock source selection
1271* :github:`15339` - RISC-V: RV32M1: Load access fault when accessing GPIO port E
1272* :github:`15334` - Unable to reset nRF52840 from nRF9160 on pca10090 DK
1273* :github:`15331` - CONFIG_CODE_DATA_RELOCATION does not work with Cache enabled MCUs.
1274* :github:`15316` - printf causing usage fault
1275* :github:`15315` - doc: simplify cmake examples thanks to cmake's new -B option
1276* :github:`15305` - add QEMU target for armv8-M with MPU support
1277* :github:`15282` - Enhance networking tests/net/all tests
1278* :github:`15279` - mempool alignment might cause a memory block allocated twice
1279* :github:`15272` - sanitycheck reports build errors as "handler crash"
1280* :github:`15246` - doc: confusion about dtc version
1281* :github:`15232` - tests/bluetooth/tester fails build if CONFIG_TEST_USERSPACE=n
1282* :github:`15193` - tests/net/socket/getaddrinfo tests too little
1283* :github:`15180` - testing flash driver clients in CI
1284* :github:`15159` - undefined reference to 'bsearch' #stdlib
1285* :github:`15156` - GH labels reorg
1286* :github:`15144` - West: how to set up for external modules
1287* :github:`15139` - implement sys_sem that can reside in user memory
1288* :github:`15133` - Is the level2 interrupt supported for ARM cortex-M0P core?
1289* :github:`15119` - GPIO callback not disabled from an interrupt
1290* :github:`15116` - nrfx_twim: (nRF52) driver unable to perform i2c_burst_write() correctly
1291* :github:`15115` - ARM: Cortex-M: enhance non-sharing floating point services
1292* :github:`15074` - ARM: Fix/Enhance Floating Point for ARM Cortex-M architecture
1293* :github:`15046` - Native_posix: command line handling: Hint users why an option does not exist
1294* :github:`15003` - init_iface in net_if.c should check api->init
1295* :github:`14997` - Convert samples/sensor/bme280/src/main.c to use printk instead of printf
1296* :github:`14970` - samples/drivers/watchdog: Not showing "Waiting for reset..." for nrf boards
1297* :github:`14918` - olimexino stm32 CAN errors
1298* :github:`14904` - Sanitycheck report not clear if built or ran a test
1299* :github:`14828` - ARM: MPU-based HW thread stack protection not working properly when building with CONFIG_FLOAT
1300* :github:`14826` - USB reset in suspended state
1301* :github:`14791` - Bluetooth: GATT Notification callbacks should have conn as argument
1302* :github:`14769` - kernel/userspace.c: Improve code coverage to 100%
1303* :github:`14744` - ARM: Core Stack Improvements/Bug fixes for 2.0 release
1304* :github:`14736` - kernel/include/kswap.h: Improve code coverage to 100%
1305* :github:`14734` - kernel/include/kernel_structs.h: Improve code coverage to 100%
1306* :github:`14733` - kernel/work_q.c: Improve code coverage to 100%
1307* :github:`14731` - kernel/userspace_handler.c: Improve code coverage to 100%
1308* :github:`14730` - kernel/userspace.c: Improve code coverage to 100%
1309* :github:`14729` - kernel/timer.c: Improve code coverage to 100%
1310* :github:`14728` - kernel/timeout.c: Improve code coverage to 100%
1311* :github:`14727` - kernel/thread_abort.c: Improve code coverage to 100%
1312* :github:`14726` - kernel/thread.c: Improve code coverage to 100%
1313* :github:`14725` - kernel/system_work_q.c: Improve code coverage to 100%
1314* :github:`14724` - kernel/stack.c: Improve code coverage to 100%
1315* :github:`14723` - kernel/sem.c: Improve code coverage to 100%
1316* :github:`14722` - kernel/sched.c: Improve code coverage to 100%
1317* :github:`14721` - kernel/queue.c: Improve code coverage to 100%
1318* :github:`14720` - kernel/poll.c: Improve code coverage to 100%
1319* :github:`14719` - kernel/pipes.c: Improve code coverage to 100%
1320* :github:`14718` - kernel/mutex.c: Improve code coverage to 100%
1321* :github:`14717` - kernel/msg_q.c: Improve code coverage to 100%
1322* :github:`14716` - kernel/mempool.c: Improve code coverage to 100%
1323* :github:`14715` - kernel/mem_slab.c: Improve code coverage to 100%
1324* :github:`14713` - kernel/mem_domain.c: Improve code coverage to 100%
1325* :github:`14712` - kernel/mailbox.c: Improve coverage to 100%
1326* :github:`14711` - kernel/idle.c: Improve code coverage to 100%
1327* :github:`14710` - kernel/errno.c: Improve code coverage to 100%
1328* :github:`14709` - kernel/device.c: Improve code coverage to 100%
1329* :github:`14708` - kernel/include/ksched.h: Improve code coverage to 100%
1330* :github:`14707` - kernel/include/kernel_offsets.h: Improve code coverage to 100%
1331* :github:`14706` - kernel/include/kernel_internal.h: Imrpove code coverage to 100%
1332* :github:`14705` - kernel/smp.c: Improve code coverage to 100%
1333* :github:`14704` - kernel/int_latency_bench.c: Improve code coverage to 100%
1334* :github:`14703` - kernel/compiler_stack_protect.c: Improve code coverage to 100%
1335* :github:`14702` - kernel/atomic_c.c : Improve code coverage to 100%
1336* :github:`14675` - Bluetooth: Controller privacy support (platforms with HW acceleration)
1337* :github:`14652` - Gitlint is more strict than checkpatch.pl
1338* :github:`14633` - undefined reference to 'mbedtls_debug_set_threshold' when MBEDTLS_DEBUG is enabled
1339* :github:`14605` - mimxrt1060_evk cpp_synchronization meets Hardware exception
1340* :github:`14604` - BLE disconnection caused by channel map request or connection parameter update request
1341* :github:`14599` - Can you add a ADC sample?
1342* :github:`14588` - static IP support on cc3220sf_launchxl
1343* :github:`14547` - Kconfig shell prompt configuration
1344* :github:`14517` - LPCXpresso55S69 board support
1345* :github:`14493` - implement Zephyr futexes
1346* :github:`14467` - New HTTP API implementation
1347* :github:`14459` - usb: samples: mass: doesn't build with FLASH overlay
1348* :github:`14292` - Typo "QPSI" in QSPI macros in some stm32 drivers
1349* :github:`14283` - tests/drivers/watchdog/wdt_basic_api fails on test_wdt_callback_1() for Ardruino and quark_se_c1000_ss_devboard:arc
1350* :github:`14123` - Particle boards need a board initialization module for antenna configuration
1351* :github:`14082` - Update Segger host library to V2.52f
1352* :github:`14037` - Generic device driver object type
1353* :github:`14034` - Support for PPP protocol
1354* :github:`13963` - up_squared: evaluate removal of SBL-related special configurations
1355* :github:`13935` - tests/crypto/rand32/crypto.rand32.random_hw_xoroshiro: Usage fault "Fatal fault in ISR! Spinning..."
1356* :github:`13897` - CONFIG_LOG_IMMEDIATE leads to unobvious faults in unrelated rotines due to stack overflow
1357* :github:`13817` -  tests/ztest/test/mock fails to complete on nios2
1358* :github:`13799` - usb cdc acm fails when writing big chunks of data on stm32
1359* :github:`13766` - mimxrt1060_evk tests/kernel/fatal meet many unwanted exceptions
1360* :github:`13749` - Can CONFIG_SOC_WATCH-related code be removed?
1361* :github:`13610` - kernel: Non-deterministic and very high ISR latencies
1362* :github:`13602` - How to get the port number for an ephemeral (randomly assigned) port
1363* :github:`13574` - Missing documentation for fcb and nffs
1364* :github:`13560` - STM32 USB: netusb: kernel crash when testing example echo_server with nucleo_f412zg  (ECM on Windows)
1365* :github:`13444` - Build failure when including both socket.h and posix/time.h
1366* :github:`13441` - optimize x86 userspace page table memory usage
1367* :github:`13347` - tests/drivers/watchdog/wdt_basic_api fails on test_wdt_callback_1() for Quark SE / arc
1368* :github:`13316` - Notification enabled before connection
1369* :github:`13288` - Disable JTAG debug port for free use GPIO PA15, PB3, PB4 on STM32F1 series
1370* :github:`13197` - LwM2M: support Connectivity Monitoring object (object id 4)
1371* :github:`13148` - Build on nucleo_stm32f429zi
1372* :github:`13097` - openthread default configuration
1373* :github:`13075` - Review memory protection Kconfig policies for consistency and sanity
1374* :github:`13065` - CONFIG_BT leads Fatal fault in ISR on esp32
1375* :github:`13003` - context switch in x86 memory domains needs optimization
1376* :github:`12942` - openthread: sleepy end device not supported by zephyr router
1377* :github:`12825` - SystemView Feature Not working
1378* :github:`12728` - docs: Hard to find guidelines for ext/ maintenance
1379* :github:`12681` - BLE Split Link Layer
1380* :github:`12633` - tests/boards/altera_max10/i2c_master failed with "failed to read HPD control" on altera_max10
1381* :github:`12602` - STM32F415RG Support
1382* :github:`12553` - List of tests that keep failing sporadically
1383* :github:`12542` - nrf timers unstable with ticks faster than 100 Hz
1384* :github:`12478` - tests/drivers/ipm/peripheral.mailbox failing sporadically on qemu_x86_64 (timeout)
1385* :github:`12261` - i2c_ll_stm32_v1 driver gets stuck
1386* :github:`12257` - GNU Arm Embedded Toolchain 8-2018-q4-major can't produce hex files on Windows
1387* :github:`12245` - LWM2M registration timeout
1388* :github:`12228` - 	How to build images for client or server in bluetooth mesh examples?
1389* :github:`12160` - settings: NVS back-end
1390* :github:`12129` - Include: Clean up header file namespace
1391* :github:`12119` - 64bit architecture support
1392* :github:`12044` - [Question] [Blutooth Mesh] How proxy client create the proxy PDU
1393* :github:`12039` - clock_control: API should allow callback to be specified
1394* :github:`11993` - drivers: Supporting driver-specific extensions to existing generic APIs
1395* :github:`11922` - ADC generic driver missing features: calibration, reference voltage value
1396* :github:`11918` - Dynamic pin configuration
1397* :github:`11740` - LL_ASSERT in event_common_prepare in Zephyr v1.13
1398* :github:`11712` - Add support for newlib-nano
1399* :github:`11681` - Mesh Friend does not reply within ReceiveWindow
1400* :github:`11626` - k_busy_wait exits early on Nordic chips
1401* :github:`11617` - net: ipv4: udp: broadcast delivery not supported
1402* :github:`11535` - serial: uart_irq_tx_ready() needs better documentation or correction of the test
1403* :github:`11455` - cdc_acm uart_fifo_fill sample app doesn't comply with the documentation
1404* :github:`11107` - clock_control: API should support asynchronous and synchronous variants of turning on clocks
1405* :github:`10965` - wncm14a2a modem should be moved to a shield configuration
1406* :github:`10942` - Declaring an API Stable
1407* :github:`10935` - Support all UARTs on ESP32 WROOM module
1408* :github:`10915` - ESP 32 failed to boot while running  crypto/rand32 tests
1409* :github:`10896` - Add STM32 ADC driver
1410* :github:`10739` - Cannot flash to STM32 Nucleo F446RE with SEGGER JLink
1411* :github:`10664` - FOTA: nRF52: integration of samples/bluetooth/mesh & smp_srv
1412* :github:`10657` - tests/net/ieee802154/crypto does not work as expected
1413* :github:`10603` - Hard to find "todo"
1414* :github:`10463` - can: stm32: Update to new API
1415* :github:`10450` - usb/stm32: use dts extracted information to populate clock settings
1416* :github:`10420` - gcc: "Exec format error" - WSL in Windows 10 1803
1417* :github:`10150` - Getting LLVM work on ARM
1418* :github:`9954` - samples/hello_world build failed on Windows/MSYS
1419* :github:`9898` - 1.14 Release Checklist
1420* :github:`9762` - Bluetooth mesh reliability issue?
1421* :github:`9570` - Network stack cleanup: deep TCP cleanup
1422* :github:`9509` - Unable to upload firmware over serial with mcumgr
1423* :github:`9333` - Support for STM32 L1-series
1424* :github:`9247` - Get ST Disco and Eval boards compliant with default configuration guidelines
1425* :github:`9070` - bluetooth :BR :The sample is incomplete
1426* :github:`9047` - Interrupt APIs.
1427* :github:`8978` - soc: Intel S1000: add low power memory management support
1428* :github:`8851` - Allow creation of Zephyr libraries outside of Zephyr tree
1429* :github:`8734` - USB: DFU timeout on nRF52840 due to long flash erase
1430* :github:`8728` - Network stack cleanup: Net IF
1431* :github:`8726` - Network stack cleanup: TCP
1432* :github:`8725` - Network stack cleanup: Net Context
1433* :github:`8723` - Network stack cleanup
1434* :github:`8722` - Network stack cleanup: connection
1435* :github:`8464` - sdk_version file missing
1436* :github:`8419` - Bluetooth: tester: LPN Poll issue
1437* :github:`8404` - Bluetooth: controller: Reuse get_entropy_isr API
1438* :github:`8275` - when zephyr can support popular IDE develop?
1439* :github:`8125` - About BMI160 reading issue.
1440* :github:`8081` - Bluetooth: Deprecate TinyCrypt and use mbedTLS
1441* :github:`8062` - [Coverity CID :186196] Error handling issues in /samples/sensor/mcp9808/src/main.c
1442* :github:`7908` - tests/boards/altera_max10/qspi fails on max10
1443* :github:`7589` - Migrate Websocket to BSD sockets
1444* :github:`7585` - Migrate HTTP to socket API
1445* :github:`7503` - LwM2M client: No registration retry after error?
1446* :github:`7462` - Convert mcr20a to be a shield when that functionality is merged
1447* :github:`7403` - RAM flash driver emulator
1448* :github:`7316` - native_posix supersedes ztest mocking
1449* :github:`6906` - QM (Quality Managed) level qualification
1450* :github:`6823` - Optimize rendering of Kconfig documentation
1451* :github:`6817` - Question: Is supported for stack sharing among tasks  in Zephyr? Or any plan?
1452* :github:`6816` - Question: Is KProbes supported in Zephyr? Or any plan?
1453* :github:`6773` - Publish doxygen-generated API pages
1454* :github:`6770` - Multiple Git Repositories
1455* :github:`6636` - Enable hardware flow control in mcux uart shim driver
1456* :github:`6605` - Question: Does WAMP protocol has any usecase for Zephyr
1457* :github:`6545` - ARM Cortex R Architecture support
1458* :github:`6370` - I can't find adc name which is f429zi board
1459* :github:`6183` - sensor: Handling sensors with long measurement times
1460* :github:`6086` - Ideas/requirements for improved TLS support in Zephyr
1461* :github:`6039` - Implement interrupt driven USART on LPC54114
1462* :github:`5579` - Address untested options in kernel
1463* :github:`5529` - Explore Little File System (littlefs) support
1464* :github:`5460` - scripts: extract_dts_includes: check yaml dts binding property "category: "
1465* :github:`5457` - Add SDHC card support
1466* :github:`5423` - [nRF] on-target tests accidentally run twice
1467* :github:`5365` - Revisit DHCPv4 test, convert to ztest
1468* :github:`4628` - Sample app enabling sensors on disco_l475_iot1 board
1469* :github:`4506` - rework GPIO flags
1470* :github:`4505` - sanitycheck should distinguish compile errors from link errors
1471* :github:`4375` - Provide a script to find files not owned per the CODEOWNERS file
1472* :github:`4178` - Openweave Support
1473* :github:`3936` - BT: bt_conn_create_le(): No way to find out error cause
1474* :github:`3930` - Need a CPU frequency driver for ESP-32
1475* :github:`3928` - [TIMER] k_timer_start should take 0 value for duration parameter
1476* :github:`3846` - to use {k_wakeup} to cancel the delayed startup of one thread
1477* :github:`3805` - [test] test scheduling of threads along with  networking conditions
1478* :github:`3767` - reconsider k_mem_pool APIs
1479* :github:`3759` - reconsider k_mbox APIs
1480* :github:`3754` - Support static BT MAC address
1481* :github:`3749` - ESP32: Deep Sleep
1482* :github:`3722` - Enable Flash Cache for ESP32
1483* :github:`3710` - 802.15.4 Soft MAC 2015 version support
1484* :github:`3678` - Implement the Read Static Addresses Command
1485* :github:`3673` - reconsider k_queue APIs
1486* :github:`3651` - add tickless idle and kernel support to RISCV32 pulpino
1487* :github:`3648` - Ability to unpair devices
1488* :github:`3640` - BLE central scan ignores changes in payload
1489* :github:`3547` - IP stack: Ideas for optimizations
1490* :github:`3500` - ESP8266 Architecture Configuration
1491* :github:`3499` - evaluate Emul8 as a replacement for QEMU in sanitycheck
1492* :github:`3442` - TCP connection locally isn't possible
1493* :github:`3426` - Only supports classic Bluetooth compilation options
1494* :github:`3418` - Bluetooth True Wireless Stereo
1495* :github:`3417` - BT Phonebook Access Profles
1496* :github:`3399` - Texas Instruments CC2538 Support
1497* :github:`3396` - LLDP: Implement local MIB support with advertisement of mandatory TLVs
1498* :github:`3295` - Advanced Power Management
1499* :github:`3286` - Native Zephyr IP Stack Advanced Features
1500* :github:`3155` - xtensa: fix tests/kernel/mem_protect/stackprot
1501* :github:`3040` - Add support for the Arduino Ethernet Shield V2
1502* :github:`2994` - The build system crashes when GCCARMEMB_TOOLCHAIN_PATH has a space in it
1503* :github:`2984` - frdm_k64f bus exception bug due to peculiar RAM configuration
1504* :github:`2933` - Add zephyr support to openocd upstream
1505* :github:`2900` - Support for the BBC micro:bit Bluetooth Profile
1506* :github:`2856` - Customer: Floating Point samples
1507* :github:`2780` - Set the _Swap() return value on ARC the same way it is now done on ARM ?
1508* :github:`2766` - BMI160 Oversampling Configuration
1509* :github:`2682` - Add support for UART A1 for TI CC3200 SoC
1510* :github:`2623` - nRF52 UART behaviour sensitive to timing of baud rate initialization.
1511* :github:`2611` - SDP client
1512* :github:`2587` - Support for BR/EDR SSP out-of-band pairing
1513* :github:`2586` - Support for LE SC out-of-band pairing
1514* :github:`2401` - 802.15.4 - LLDN frame support
1515* :github:`2400` - 802.15.4 - Multipurpose frame support
1516* :github:`2399` - 802.15.4 - TSCH Radio protocol support
1517* :github:`2398` - 802.15.4 - Update existing Management commands
1518* :github:`2397` - 802.15.4 - IE list support
1519* :github:`2396` - 802.15.4 - Management service: FFD level support
1520* :github:`2333` - Get IPv6 Ready approval
1521* :github:`2049` - Enable ARM M4F FPU lazy stacking
1522* :github:`2046` - Add a driver to support timer functions using the PWM H/W periphral timers
1523* :github:`1933` - nios2: implement nested interrupts
1524* :github:`1860` - Add support for getting OOB data
1525* :github:`1843` - nios2: enable interrupt driven serial console for JTAG UART
1526* :github:`1766` - nios2: implement asm atomic operations
1527* :github:`1392` - No module named 'elftools'
1528* :github:`335` - images for the wiki
1529