Home
last modified time | relevance | path

Searched full:been (Results 1 – 25 of 1372) sorted by relevance

12345678910>>...55

/Zephyr-Core-3.7.0/tests/net/socket/offload_dispatcher/src/
Dmain.c426 "Socket should'nt have been dispatched yet"); in test_socket_setup_udp()
437 "Socket should'nt have been dispatched yet"); in test_socket_setup_tls()
462 "Socket should'nt have been dispatched"); in ZTEST()
464 "close() should'nt have been dispatched"); in ZTEST()
477 "Socket should've been dispatched"); in ZTEST()
479 "fcntl() should've been dispatched"); in ZTEST()
493 "Socket should've been dispatched"); in ZTEST()
495 "shutdown() should've been dispatched"); in ZTEST()
511 "Socket should've been dispatched"); in ZTEST()
513 "bind() should've been dispatched"); in ZTEST()
[all …]
/Zephyr-Core-3.7.0/.github/workflows/
Dstale_issue.yml14 stale-pr-message: 'This pull request has been marked as stale because it has been open (more
18 stale-issue-message: 'This issue has been marked as stale because it has been open (more
/Zephyr-Core-3.7.0/tests/boards/nrf52_bsim/egu/src/
Dmain.c125 "interrupt has not been disabled"); in ZTEST()
137 zassert_equal(0, event_triggered_flag.call_count, "interrupt has been called"); in ZTEST()
139 zassert_false(event_triggered_flag.triggered[i], "Event %i has been triggered", i); in ZTEST()
143 "event has not been triggered"); in ZTEST()
148 "event %d has been triggered, but it shouldn't", i); in ZTEST()
172 zassert_true(event_triggered_flag.triggered[0], "Event 0 has not been triggered"); in ZTEST()
174 zassert_false(event_triggered_flag.triggered[i], "Event %i has been triggered", i); in ZTEST()
181 "event %d has been triggered, but it shouldn't", i); in ZTEST()
201 zassert_equal(0, event_triggered_flag.call_count, "interrupt has been called"); in ZTEST()
203 zassert_false(event_triggered_flag.triggered[i], "Event %i has been triggered", i); in ZTEST()
[all …]
/Zephyr-Core-3.7.0/doc/releases/
Dmigration-guide-3.6.rst21 * The deprecated ``prj_<board>.conf`` Kconfig file support has been removed, projects that use
46 :kconfig:option:`CONFIG_HEAP_MEM_POOL_IGNORE_MIN` option has been introduced (which defaults
55 * The deprecated Nordic SoC Kconfig option ``NRF_STORE_REBOOT_TYPE_GPREGRET`` has been removed,
67 The following modules have been made optional and are not downloaded with `west update` by default
79 * MCUboot's deprecated ``CONFIG_ZEPHYR_TRY_MASS_ERASE`` Kconfig option has been removed. If an
88 been overhauled, so the code using the generated code must likely be changed.
104 * The function :c:func:`zcbor_tag_encode` has been renamed to :c:func:`zcbor_tag_put`.
106 * Printing has been changed significantly, e.g. :c:func:`zcbor_print` is now called
245 and :ref:`native_sim<native_sim>` with or without an embedded C-library, has been renamed to
353 * The :dtcompatible:`nxp,pcf8574` driver has been renamed to
[all …]
Dmigration-guide-3.7.rst67 * The header file :zephyr_file:`include/zephyr/arch/arch_interface.h` has been moved from
100 * The Kconfig options previously named ``CONFIG_MBEDTLS_MAC_*_ENABLED`` have been renamed.
101 The ``_MAC`` and ``_ENABLED`` parts have been removed from their names. (:github:`73267`)
102 * The :kconfig:option:`CONFIG_MBEDTLS_HASH_ALL_ENABLED` Kconfig option has been fixed to actually
105 * The ``CONFIG_MBEDTLS_HASH_SHA*_ENABLED`` Kconfig options have been removed. They were duplicates
107 * The ``CONFIG_MBEDTLS_MAC_ALL_ENABLED`` Kconfig option has been removed. Its equivalent is the
123 * The default MCUboot signature type has been changed from RSA-3072 to EC-P256.
140 to :dtcompatible:`nxp,pit` and has been updated to support multiple channels.
143 The :kconfig:option:`CONFIG_COUNTER_MCUX_PIT` has also been renamed to
166 * The :dtcompatible:`nxp,kinetis-ethernet` has been deprecated in favor of
[all …]
Dmigration-guide-3.5.rst95 The following modules have been made optional and are not downloaded with `west update` by default …
138 * The RAM disk driver has been changed to support multiple instances and instantiation
156 :dtcompatible:`hynitron,cst816s` drivers have been converted from Kscan to
160 * The ``zephyr,gpio-keys`` binding has been merged into
161 :dtcompatible:`gpio-keys` and the callback definition has been renamed from
165 and power channels, these have been fixed and scaled by x1000 factor from the
173 been removed.
178 (compatible with) SH1106. This has been replaced by a dedicated dts
197 * On all STM32 (except F1x and F37x series), two new required properties have been
220 * The LPC55XXX series SOC (except LPC55S06) default main clock has been
[all …]
/Zephyr-Core-3.7.0/modules/
DKconfig.mcuboot156 bool "MCUboot has been configured for single slot execution"
165 bool "MCUboot has been configured for swap without scratch operation"
171 if MCUboot has been built with MCUBOOT_DOWNGRADE_PREVENTION.
174 bool "MCUboot has been configured for swap using scratch operation"
183 if MCUboot has been built with MCUBOOT_DOWNGRADE_PREVENTION.
186 bool "MCUboot has been configured to just overwrite primary slot"
199 bool "MCUboot has been configured for DirectXIP operation"
213 bool "MCUboot has been configured for DirectXIP with revert"
220 from either slot, as long as it has been marked to be boot
233 bool "MCUboot has been configured in firmware updater mode"
[all …]
/Zephyr-Core-3.7.0/include/zephyr/modem/
Dpipelink.h27 /** Modem pipe has been connected and can be opened */
29 /** Modem pipe has been disconnected and can't be opened */
84 * @retval Pointer to pipe if pipelink has been initialized
85 * @retval NULL if pipelink has not been initialized
100 /** Notify user of pipelink that pipe has been connected */
103 /** Notify user of pipelink that pipe has been disconnected */
/Zephyr-Core-3.7.0/drivers/modem/
Dmodem_socket.h108 * @brief Check if modem socket has been allocated
120 * @return true if the socket has been allocated
121 * @return false if the socket has not been allocated
127 * @brief Check if modem socket id has been assigned
135 * @return true if the socket id is been assigned
136 * @return false if the socket has not been assigned
148 * @return -EPERM if id has been assigned previously
/Zephyr-Core-3.7.0/samples/modules/tflite-micro/tflm_ethosu/
DREADME.rst9 The sample application runs a model that has been downloaded from the
11 been optimized using the
15 where the operators supported by Ethos-U have been replaced by an Ethos-U custom
37 Assuming that the Corstone-300 FVP has been downloaded, installed and added to
/Zephyr-Core-3.7.0/doc/project/
Dcode_flow.rst41 has been completed. When a branch is requested, the proposal should include the
62 - GitHub pull requests: for example, when reviews have not been done in the local
64 - Merge requests: When a set of changes has been done in a local branch and
65 has been reviewed and tested in a collaboration branch.
/Zephyr-Core-3.7.0/include/zephyr/bluetooth/mesh/
Dmain.h164 * of the unprovisioned device has been received.
206 * once the data has been acquired from the user.
223 /** @brief Unprovisioned beacon has been received.
226 * beacon has been received.
237 /** @brief PB-GATT Unprovisioned Advertising has been received.
240 * unprovisioned Advertising has been received.
248 /** @brief Provisioning link has been opened.
251 * link has been opened on the given provisioning bearer.
257 /** @brief Provisioning link has been closed.
260 * link has been closed on the given provisioning bearer.
[all …]
/Zephyr-Core-3.7.0/doc/security/
Dvulnerabilities.rst40 This has been fixed in release v1.14.0.
61 This has been fixed in release v1.14.0.
103 This has been fixed in releases v1.14.2, v2.2.0, and v2.1.1.
129 This has been fixed in releases v1.14.2, and v2.2.0.
157 This has been fixed in the below pull requests for main, branch from
187 This has been fixed in releases v1.14.2, v2.2.0, and in a branch from
217 This has been fixed in releases v1.14.2, and v2.2.0, and in a branch
245 This has been fixed in releases v1.14.2, and v2.2.0, and in a branch
271 This has been fixed in releases v1.14.2, and v2.2.0, and in a branch
299 This has been fixed in a branch from v2.1.0, and release v2.2.0.
[all …]
Dreporting.rst52 - New: This state represents new reports that have been entered
63 - Assigned: The issue has been assigned, and is awaiting a fix by the
70 - Accepted: Indicates that this issue has been merged into the
117 numbers that have been assigned to the issue. The developer instead
118 should merely describe what has been fixed.
136 have been fixed. After the embargo period, the vulnerabilities page
157 When issues have been triaged, this list will be informed of:
/Zephyr-Core-3.7.0/subsys/mgmt/mcumgr/util/include/mgmt/mcumgr/util/
Dzcbor_bulk.h94 * @return 0 when the whole map has been parsed, there have been
95 * no decoding errors, and map has been closed successfully;
105 /** @brief Check whether key has been found by zcbor_map_decode_bulk
111 * @return true if key has been found during decoding, false otherwise.
120 * of the map. Function needs to be used on @p map after the map has been already
/Zephyr-Core-3.7.0/doc/services/device_mgmt/
Dmcumgr_backporting.rst12 There are two different processes: one for issues that have also been fixed in the current
49 In case the reported bug in a previous version has already been fixed in the current version, the d…
54 * The SHAs of the commits, if the PR has already been merged
82 … ``<sha>`` indicates the SHA of the commit after it has been already merged in the current version.
139 * ``upstream`` - if the fix has originally been merged to the upstream repository.
140 …* ``zephyr`` - if the fix has been applied to the Zephyr internal MCUmgr library (past 2.7 version…
142 ``<pr_num>`` is the number of the original pull request that has already been merged.
145 request 137, which has already been merged to the upstream repository of MCUmgr.
160 …you are responsible for such a merge to happen as soon as possible after the MCUmgr fixes have been
/Zephyr-Core-3.7.0/tests/bluetooth/mesh/delayable_msg/src/
Dmain.c151 "Delayed message has not been sent."); in ZTEST()
191 "Delayed message has not been sent."); in ZTEST()
194 "Delayed message has not been sent."); in ZTEST()
197 "Delayed message has not been sent."); in ZTEST()
200 "Delayed message has not been sent."); in ZTEST()
288 "Delayed message has not been handled."); in ZTEST()
291 "Delayed message has not been sent."); in ZTEST()
296 "Delayed message has not been handled."); in ZTEST()
299 "Delayed message has not been sent."); in ZTEST()
305 "Delayed message has not been handled."); in ZTEST()
[all …]
/Zephyr-Core-3.7.0/include/zephyr/bluetooth/classic/
Da2dp.h195 /** Sampling Frequency is not valid or multiple values have been selected */
199 /** Channel Mode is not valid or multiple values have been selected */
203 /** None or multiple values have been selected for Number of Subbands */
207 /** None or multiple values have been selected for Allocation Method */
219 /** None or multiple values have been selected for Layer */
229 /** None or multiple values have been selected for Bit Rate */
234 * 2) None or multiple values have been selected for Object Type
240 * 2) None or multiple values have been selected for Channels
251 /** None or multiple values have been selected for Block Length */
379 /** @brief A a2dp connection has been established.
[all …]
/Zephyr-Core-3.7.0/subsys/bluetooth/controller/ll_sw/
Dull_conn_iso_types.h26 uint16_t established:1; /* 0 if CIS has not yet been established.
27 * 1 if CIS has been established and host
31 uint16_t teardown:1; /* 1 if CIS teardown has been initiated */
/Zephyr-Core-3.7.0/dts/bindings/sensor/
Dst,stm32-temp-cal-common.yaml18 temperature at which temperature sensor has been
26 temperature sensor has been calibrated in production
/Zephyr-Core-3.7.0/samples/tfm_integration/tfm_psa_test/
Dsample.yaml38 # The test suite below has been disabled due to licensing issues with the QCBOR
40 # issues have been sorted out upstream.
/Zephyr-Core-3.7.0/scripts/native_simulator/common/src/include/
Dnsi_main.h19 * return to the caller what would have been passed to exit()
25 * @returns Code which would have been passed to exit()
/Zephyr-Core-3.7.0/include/zephyr/mgmt/mcumgr/transport/
Dserial.h30 * stored in this buffer has already been base64-decoded.
55 * to free the net_buf after it has been processed.
63 * complete and valid request has been
/Zephyr-Core-3.7.0/drivers/bluetooth/hci/
DCMakeLists.txt5 message(FATAL_ERROR "CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC")
12 message(FATAL_ERROR "zephyr,bt-hci-rpmsg-ipc has been renamed to zephyr,bt-hci-ipc")
/Zephyr-Core-3.7.0/samples/boards/bbc_microbit/pong/
DREADME.rst18 When multi-player mode has been selected the game will try to look for
19 and connect to a second micro:bit which has also been set into multi-

12345678910>>...55