Zephyr 4.4.0 (Working Draft)

We are pleased to announce the release of Zephyr version 4.4.0.

Major enhancements with this release include:

OpenRISC support

Zephyr now supports the OpenRISC architecture.

Toolchain updates: Zephyr SDK 1.0 and C17

Zephyr 4.4 is the first release to support Zephyr SDK 1.0, with an upgraded GNU toolchain, experimental Clang/LLVM support, and multi-platform QEMU and OpenOCD host tools.

Zephyr now defaults to C17 as its minimum required C standard version.

Networking enhancements

The Wi-Fi management stack now supports Wi-Fi P2P (Wi-Fi Direct), allowing devices to discover and connect directly without a traditional access point.

The networking stack also adds support for WireGuard VPN, enabling secure, low-overhead tunneling.

USB host

Experimental USB host support has been significantly expanded with a new host-class driver framework and support for UVC cameras on Zephyr devices acting as USB hosts.

New driver classes

Zephyr 4.4 adds several new driver APIs, including:

Zbus proxy agents

Zbus proxy agents extend publish-subscribe messaging across CPU and domain boundaries over IPC.

Pressure-based CPU frequency scaling

The experimental CPU frequency scaling subsystem now includes a pressure-based policy that adjusts CPU frequency according to scheduler load.

ARM Cortex-M context switching performance improvements

A new context switch implementation for ARM Cortex-M, enabled via CONFIG_USE_SWITCH, delivers significant performance improvements.

Developer experience improvements

This release adds several new tools and improvements to development and testing workflows:

  • A new dashboard consolidates build information such as RAM and ROM footprint, Devicetree configuration, subsystem initialization levels, and more in a single report.

  • A new display driver for QEMU targets simplifies development of display-based applications in environments where the native simulator is unavailable.

  • New scope-based cleanup helpers provide RAII/defer-style automatic cleanup in C when leaving scope.

  • The new ztest benchmarking framework provides a standardized way to create cycle-accurate benchmarks, with automated data collection, overhead compensation, and statistical reporting.

Expanded board support

This release adds support for 121 new boards and 31 new shields.

An overview of the changes required or recommended when migrating your application from Zephyr v4.3.0 to Zephyr v4.4.0 can be found in the separate migration guide.

The following sections provide detailed lists of changes by component.

API Changes

Removed APIs and options

  • Bluetooth

    • CONFIG_BT_TBS_SUPPORTED_FEATURES

    • The deprecated bt_hci_cmd_create() functon was removed. It has been replaced by bt_hci_cmd_alloc().

Deprecated APIs and options

New APIs and options

New Boards

New Shields

New Drivers

New Samples

DeviceTree

Kconfig

  • Added new preprocessor function dt_highest_controller_irq_number (GitHub #104819)

Kernel

Libraries / Subsystems

Other notable changes