Home
last modified time | relevance | path

Searched full:version (Results 1 – 25 of 2440) sorted by relevance

12345678910>>...98

/Zephyr-latest/subsys/bindesc/
DKconfig.version5 bool "Version binary descriptors"
7 Add the version binary descriptors
12 bool "Kernel version string"
14 The kernel version string, such as "3.4.0"
17 bool "Kernel version major"
19 The major version number, such as 3 in 3.4.0
22 bool "Kernel version minor"
24 The minor version number, such as 4 in 3.4.0
27 bool "Kernel version patchlevel"
29 The patchlevel version number, such as 0 in 3.4.0
[all …]
/Zephyr-latest/subsys/net/lib/lwm2m/
DKconfig.ipso28 prompt "IPSO Temperature object version"
32 Select which version of the IPSO Temperature object should be used.
35 bool "IPSO Temperature object version 1.0"
38 bool "IPSO Temperature object version 1.1"
57 prompt "IPSO Generic Sensor object version"
60 Select which version of the IPSO Generic Sensor object should be used.
63 bool "IPSO Generic Sensor object version 1.0"
66 bool "IPSO Generic Sensor object version 1.1"
97 prompt "IPSO Humidity Sensor object version"
100 Select which version of the IPSO Humidity Sensor object should be
[all …]
/Zephyr-latest/samples/tfm_integration/tfm_ipc/src/
Dmain.c17 * \brief Retrieve the version of the PSA Framework API.
25 uint32_t version; in tfm_get_version() local
27 version = psa_framework_version(); in tfm_get_version()
28 if (version == PSA_FRAMEWORK_VERSION) { in tfm_get_version()
29 printk("The version of the PSA Framework API is %d.\n", in tfm_get_version()
30 version); in tfm_get_version()
32 printk("The version of the PSA Framework API is not valid!\n"); in tfm_get_version()
39 * \brief Retrieve the minor version of a RoT Service.
43 uint32_t version; in tfm_get_sid() local
45 version = psa_version(TFM_CRYPTO_SID); in tfm_get_sid()
[all …]
/Zephyr-latest/doc/develop/api/
Doverview.rst10 The version column uses `semantic version <https://semver.org/>`_, and has the
13 * Major version zero (0.y.z) is for initial development. Anything MAY
16 * If minor version is up to one (0.1.z), API is considered
18 * If minor version is larger than one (0.y.z | y > 1), API is considered
21 * Version 1.0.0 defines the public API. The way in which the version number
27 * All existing stable APIs in Zephyr will be start with version 1.0.0.
29 * Patch version Z (x.y.Z | x > 0) MUST be incremented if only backwards
33 * Minor version Y (x.Y.z | x > 0) MUST be incremented if new, backwards
38 Patch version MUST be reset to 0 when minor version is incremented.
40 * Major version X (x.Y.z | x > 0) MUST be incremented if a compatibility
[all …]
/Zephyr-latest/share/zephyr-package/cmake/
DZephyrConfigVersion.cmake3 # This file provides Zephyr Config Package version information.
5 # The purpose of the version file is to ensure that CMake find_package can correctly locate a
8 # Checking for version 0.0.0 is a way to allow other Zephyr installation to determine if there is a…
10 # Version 0.0.0 indicates that we should just return, in order to obtain our path.
20 message("\n ${CMAKE_CURRENT_LIST_FILE}, version: ${PACKAGE_VERSION}\n")
27 … future, this is the place to update in case Zephyr 3.x is not backward compatible with version 2.x
53 # meaning the package version must be ignored and the Zephyr pointed to by
54 # ZEPHYR_BASE is to be used regardless of version.
59 include(${ZEPHYR_BASE}/cmake/modules/version.cmake)
60 # Zephyr uses project version, but CMake package uses PACKAGE_VERSION
[all …]
/Zephyr-latest/tests/boot/with_mcumgr/pytest/
Dutils.py14 def check_with_shell_command(shell: Shell, version: str, swap_type: str | None = None) -> None:
16 assert mcuboot_areas.areas[0].version == version
21 def check_with_mcumgr_command(mcumgr: MCUmgr, version: str) -> None:
23 # version displayed by MCUmgr does not print +0 and changes + to '.' for non-zero values
24 assert image_list[0].version == version.replace('+0', '').replace('+', '.')
/Zephyr-latest/scripts/ci/
Dversion_mgr.py9 "version": "<commit>",
35 help="Get latest published version")
58 item_compat['version'] = item
82 print(f"- {item_compat['version']} {datestr} {wstr}")
84 print(f"{item_compat['version']}")
93 ver = item_compat.get("version")
100 print(f"Latest version is {ver} {datestr}")
102 print("This version is marked for weekly testing.")
111 version = g.describe("--abbrev=12")
121 item.get('version') == version) or item == version, data))
[all …]
/Zephyr-latest/tests/boot/mcuboot_data_sharing/
DCMakeLists.txt7 cmake_minimum_required(VERSION 3.20.0)
21 # Get MCUboot version from the VERSION file in the repository and create a local output header
22 # version file so that it can be compared against in the test
23 set(VERSION_FILE ${ZEPHYR_MCUBOOT_MODULE_DIR}/boot/zephyr/VERSION)
26 include(${ZEPHYR_BASE}/cmake/modules/version.cmake)
27 file(READ ${ZEPHYR_BASE}/version.h.in version_content)
/Zephyr-latest/include/zephyr/
Dkernel_version.h1 /* kernel version support */
17 * @defgroup version_apis Version APIs
21 * The kernel version has been converted from a string to a four-byte
25 * numeric version, x.y.z. These fields denote:
37 /* kernel version routines */
40 * @brief Return the kernel version of the present build
42 * The kernel version is a four-byte value, whose format is described in the
45 * @return kernel version
/Zephyr-latest/drivers/wifi/esp_at/
DKconfig.esp_at94 version. This is ignored if a reset pin is configured.
135 prompt "AT version"
138 Select which version of AT command set should be used.
141 bool "AT version 1.7"
143 Use AT command set version 1.7.
146 bool "AT version 2.0"
148 Use AT command set version 2.0.
151 bool "AT version 2.1"
153 Use AT command set version 2.1.
170 bool "Fetch and log ESP-AT firmware version"
[all …]
/Zephyr-latest/tests/kernel/common/src/
Dmain.c11 #include <zephyr/version.h>
37 uint32_t version = sys_kernel_version_get(); in ZTEST() local
39 zassert_true(SYS_KERNEL_VER_MAJOR(version) == KERNEL_VERSION_MAJOR, in ZTEST()
40 "major version mismatch"); in ZTEST()
41 zassert_true(SYS_KERNEL_VER_MINOR(version) == KERNEL_VERSION_MINOR, in ZTEST()
42 "minor version mismatch"); in ZTEST()
43 zassert_true(SYS_KERNEL_VER_PATCHLEVEL(version) == KERNEL_PATCHLEVEL, in ZTEST()
44 "patchlevel version match"); in ZTEST()
/Zephyr-latest/.github/workflows/
Ddevicetree_checks.yml29 python-version: ['3.10', '3.11', '3.12', '3.13']
34 - name: Set up Python ${{ matrix.python-version }}
37 python-version: ${{ matrix.python-version }}
43 key: ${{ runner.os }}-pip-${{ matrix.python-version }}
45 ${{ runner.os }}-pip-${{ matrix.python-version }}
52 key: ${{ runner.os }}-pip-${{ matrix.python-version }}-
54 ${{ runner.os }}-pip-${{ matrix.python-version }}-
60 key: ${{ runner.os }}-pip-${{ matrix.python-version }}
62 ${{ runner.os }}-pip-${{ matrix.python-version }}
Dwest_cmds.yml32 python-version: ['3.10', '3.11', '3.12', '3.13']
37 - name: Set up Python ${{ matrix.python-version }}
40 python-version: ${{ matrix.python-version }}
46 key: ${{ runner.os }}-pip-${{ matrix.python-version }}
48 ${{ runner.os }}-pip-${{ matrix.python-version }}
55 key: ${{ runner.os }}-pip-${{ matrix.python-version }}-
57 ${{ runner.os }}-pip-${{ matrix.python-version }}-
63 key: ${{ runner.os }}-pip-${{ matrix.python-version }}
65 ${{ runner.os }}-pip-${{ matrix.python-version }}
Drelease.yml17 - name: Get the version
20 echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
26 args: spdx -o zephyr-${{ steps.get_version.outputs.VERSION }}.spdx
32 name: zephyr-${{ steps.get_version.outputs.VERSION }}.spdx
33 path: zephyr-${{ steps.get_version.outputs.VERSION }}.spdx
58 asset_path: zephyr-${{ steps.get_version.outputs.VERSION }}.spdx
59 asset_name: zephyr-${{ steps.get_version.outputs.VERSION }}.spdx
/Zephyr-latest/modules/hal_nordic/nrf-regtool/
Dnrf-regtoolConfigVersion.cmake8 COMMAND ${NRF_REGTOOL} --version
9 OUTPUT_VARIABLE version
13 if(result EQUAL 0 AND version MATCHES "version ([0-9]+[.][0-9]+[.][0-9]+)")
22 "Found nrf-regtool (found suitable version \"${PACKAGE_VERSION}\", "
31 # We only get here if we don't pass the version check.
/Zephyr-latest/cmake/modules/
DFindZephyr-sdk.cmake32 # - Zephyr-sdk : Version of a Zephyr-SDK
97 # Search for Zephyr SDK version 0.0.0 which does not exist, this is needed to
98 # return a list of compatible versions and find the best suited version that
103 … foreach(version config IN ZIP_LISTS Zephyr-sdk_CONSIDERED_VERSIONS Zephyr-sdk_CONSIDERED_CONFIGS)
104 if(NOT DEFINED Zephyr-sdk-${version}_DIR)
105 set(Zephyr-sdk-${version}_DIR ${config})
116 foreach(version ${Zephyr-sdk_CONSIDERED_VERSIONS})
117 cmake_path(GET Zephyr-sdk-${version}_DIR PARENT_PATH dir)
119 list(APPEND Zephyr-sdk ${version})
122 message(STATUS "Zephyr-sdk, version=${version}, dir=${dir}")
[all …]
Dwest.cmake38 "import west.version; print(west.version.__version__, end='')"
48 The Python version used by west is: ${WEST_PYTHON}${west_realpath_msg}\n\
49 The Python version used by CMake is: ${PYTHON_EXECUTABLE}${python_realpath_msg}")
52 …message(FATAL_ERROR "Unable to import west.version from '${PYTHON_EXECUTABLE}':\n${west_version_er…
62 # We can import west from PYTHON_EXECUTABLE and have its version.
64 # Make sure its version matches the minimum required one.
65 # Keep this version identical to the one in scripts/requirements-base.txt
68 message(FATAL_ERROR "The detected west version, ${west_version}, is unsupported.\n\
69 The minimum supported version is ${MIN_WEST_VERSION}.\n\
81 …message(STATUS "Found west (found suitable version \"${west_version}\", minimum required is \"${MI…
DFindDtc.cmake17 # The version of devicetree compiler, dtc.
25 # Parse the 'dtc --version' output to find the installed version.
28 ${DTC} --version
36 string(REGEX MATCH "Version: DTC v?([0-9]+[.][0-9]+[.][0-9]+).*" out_var ${dtc_version_output})
47 # DTC was found but version requirement is not met, or dtc was not working.
DFindarmclang.cmake13 # The version of the arm clang toolchain.
18 # Parse the 'clang --version' output to find the installed version.
19 …execute_process(COMMAND ${CMAKE_C_COMPILER} --target=${triple} --version OUTPUT_VARIABLE ARMCLANG_…
23 # Compiler version is either terminated directly, or followed by space and extra build info.
/Zephyr-latest/doc/develop/toolchains/
Dzephyr_sdk.rst56 This allows the Zephyr build system to choose the correct version of the SDK,
61 Zephyr SDK version compatibility
64 In general, the Zephyr SDK version referenced in this page should be considered
65 the recommended version for the corresponding Zephyr version.
68 `Zephyr SDK Version Compatibility Matrix`_.
77 .. note:: You can change |sdk-version-literal| to another version in the instructions below
105 tar xvf zephyr-sdk- |sdk-version-trim| _linux-x86_64.tar.xz
117 The Zephyr SDK bundle archive contains the ``zephyr-sdk-<version>``
119 installation path will be ``$HOME/zephyr-sdk-<version>``.
125 cd zephyr-sdk- |sdk-version-ltrim|
[all …]
/Zephyr-latest/doc/services/device_mgmt/
Dmcumgr_backporting.rst10 changes to Zephyr version 2.7 LTS
13 version of Zephyr (backports), and one for issues that are being fixed only in a previous version.
16 The Zephyr fork used in version 2.7 and earlier is `located here <https://github.com/zephyrproject-…
22 In Zephyr version 2.7 and earlier, you must first apply the fix
29 * The fix, done upstream and no longer relevant to the current version, is directly backported
31 * The fix, not present upstream and not relevant for the current version of Zephyr, is
35 corresponding fix in the current version.
47 Every proposed fix requires a bug report submitted for the specified version of Zephyr affected by …
49 In case the reported bug in a previous version has already been fixed in the current version, the d…
52 * Additional references to the bug in the current version
[all …]
/Zephyr-latest/include/zephyr/net/
Dptp.h11 * References are to version 2019 of IEEE 1588, ("PTP")
21 * @version 0.1.0
32 #define PTP_MAJOR_VERSION 2 /**< Major PTP Version */
33 #define PTP_MINOR_VERSION 1 /**< Minor PTP Version */
35 #define PTP_VERSION (PTP_MINOR_VERSION << 4 | PTP_MAJOR_VERSION) /**< PTP version IEEE-1588:2019 */
/Zephyr-latest/scripts/west_commands/
Dsdk.py82 Set --version option to install a specific version of the SDK.
83 … If not specified, the install version is detected from "${ZEPHYR_BASE}/SDK_VERSION file.
87 If the specified version of the SDK is already installed,
91 Typically, Zephyr SDK archives contain only one directory named zephyr-sdk-<version>
95 In this case, SDK will install into ${HOME}/zephyr-sdk-<version>.
97 In this case, SDK will install into <BASE>/zephyr-sdk-<version> .
114 "--version",
118 help="version of the Zephyr SDK to install. "
119 "If not specified, the install version is detected from "
129 "For example, -b /foo/bar will install the SDK in `/foo/bar/zephyr-sdk-<version>'."
[all …]
/Zephyr-latest/subsys/shell/modules/kernel_service/
Dversion.c10 #include <zephyr/version.h>
18 shell_print(sh, "Zephyr version %s", KERNEL_VERSION_STRING); in cmd_kernel_version()
22 KERNEL_CMD_ADD(version, NULL, "Kernel version.", cmd_kernel_version);
/Zephyr-latest/kernel/
Dversion.c8 #include <zephyr/version.h> /* generated by MAKE, at compile time */
11 * @brief Return the kernel version of the present build
13 * The kernel version is a four-byte value, whose format is described in the
16 * @return kernel version

12345678910>>...98