/Zephyr-latest/doc/services/portability/ |
D | cmsis_rtos_v2.rst | 13 Features not supported in Zephyr implementation 18 and ``osKernelStart`` are not supported. 21 ``osMutexPrioInherit`` is supported by default and is not configurable, 24 ``osMutexRecursive`` is also supported by default. If this attribute is 28 ``osMutexRobust`` is not supported in Zephyr. 30 Return values not supported in the Zephyr implementation 34 ``osError`` (Unspecified error) is not supported. 38 semaphore_id is in an invalid semaphore state) is not supported. 42 is in an invalid mutex state) is not supported. 46 is in an invalid timer state) is not supported. [all …]
|
/Zephyr-latest/samples/drivers/gnss/src/ |
D | main.c | 47 #define GNSS_SYSTEMS_PRINTF(define, supported, enabled) \ argument 48 printf("\t%20s: Supported: %3s Enabled: %3s\n", \ 49 STRINGIFY(define), (supported & define) ? "Yes" : "No", \ 54 gnss_systems_t supported, enabled; in main() local 58 rc = gnss_get_supported_systems(GNSS_MODEM, &supported); in main() 60 printf("Failed to query supported systems (%d)\n", rc); in main() 69 GNSS_SYSTEMS_PRINTF(GNSS_SYSTEM_GPS, supported, enabled); in main() 70 GNSS_SYSTEMS_PRINTF(GNSS_SYSTEM_GLONASS, supported, enabled); in main() 71 GNSS_SYSTEMS_PRINTF(GNSS_SYSTEM_GALILEO, supported, enabled); in main() 72 GNSS_SYSTEMS_PRINTF(GNSS_SYSTEM_BEIDOU, supported, enabled); in main() [all …]
|
/Zephyr-latest/tests/boards/nrf/hwinfo/reset_cause/src/ |
D | main.c | 23 volatile uint32_t supported __attribute__((section(NOINIT_SECTION))); variable 56 /* Store supported reset causes in global variable placed at NOINIT_SECTION. */ in print_supported_reset_cause() 57 ret = hwinfo_get_supported_reset_cause((uint32_t *) &supported); in print_supported_reset_cause() 59 /* Print which reset causes are supported. */ in print_supported_reset_cause() 61 LOG_INF("Supported reset causes are:"); in print_supported_reset_cause() 62 if (supported & RESET_PIN) { in print_supported_reset_cause() 63 LOG_INF(" 0: RESET_PIN is supported"); in print_supported_reset_cause() 67 if (supported & RESET_SOFTWARE) { in print_supported_reset_cause() 68 LOG_INF(" 1: RESET_SOFTWARE is supported"); in print_supported_reset_cause() 72 if (supported & RESET_BROWNOUT) { in print_supported_reset_cause() [all …]
|
/Zephyr-latest/tests/boards/nrf/hwinfo/reset_cause/ |
D | testcase.yaml | 16 - "Supported reset causes are" 17 - "RESET_PIN is supported" 18 - "RESET_SOFTWARE is supported" 19 - "RESET_WATCHDOG is supported" 20 - "RESET_DEBUG is supported" 21 - "RESET_LOW_POWER_WAKE is supported" 22 - "RESET_CPU_LOCKUP is supported"
|
/Zephyr-latest/dts/bindings/dma/ |
D | espressif,esp32-gdma.yaml | 20 * AES (Not Supported yet) 21 * SHA (Not Supported yet) 26 supported, meaning three transmit and three receive channels. 35 * AES (Not Supported yet) 36 * SHA (Not Supported yet) 38 * RMT (Not Supported yet)
|
/Zephyr-latest/dts/bindings/usb/ |
D | usb-audio-hs.yaml | 27 Adaptive is not supported. 102 Currently not supported. 107 Currently not supported. 112 Currently not supported. 117 Currently not supported. 122 Currently not supported. 127 Currently not supported. 132 Currently not supported. 186 Currently not supported. 191 Currently not supported. [all …]
|
D | usb-audio-mic.yaml | 27 Adaptive is not supported. 88 Currently not supported. 93 Currently not supported. 98 Currently not supported. 103 Currently not supported. 108 Currently not supported. 113 Currently not supported. 118 Currently not supported.
|
D | usb-ep.yaml | 4 # Common fields that give the number of endpoints supported by the USB hardware 13 Number of bi-directional endpoints supported by hardware 19 Number of IN endpoints supported by hardware 25 Number of OUT endpoints supported by hardware
|
D | usb-audio-hp.yaml | 76 Currently not supported. 81 Currently not supported. 86 Currently not supported. 91 Currently not supported. 96 Currently not supported. 101 Currently not supported. 106 Currently not supported.
|
/Zephyr-latest/include/zephyr/bluetooth/audio/ |
D | lc3.h | 45 * @param _freq Supported Sampling Frequencies bitfield (see ``BT_AUDIO_CODEC_CAP_FREQ_*``) 46 * @param _duration Supported Frame Durations bitfield (see ``BT_AUDIO_CODEC_CAP_DURATION_*``) 47 * @param _chan_count Supported channels (see @ref BT_AUDIO_CODEC_CAP_CHAN_COUNT_SUPPORT) 48 * @param _len_min Minimum number of octets supported per codec frame 49 * @param _len_max Maximum number of octets supported per codec frame 50 * @param _max_frames_per_sdu Supported maximum codec frames per SDU 80 * @param _freq Supported Sampling Frequencies bitfield (see ``BT_AUDIO_CODEC_CAP_FREQ_*``) 81 * @param _duration Supported Frame Durations bitfield (see ``BT_AUDIO_CODEC_CAP_DURATION_*``) 82 * @param _chan_count Supported channels (see @ref BT_AUDIO_CODEC_CAP_CHAN_COUNT_SUPPORT) 83 * @param _len_min Minimum number of octets supported per codec frame [all …]
|
/Zephyr-latest/tests/subsys/debug/coredump_backends/src/ |
D | main.c | 88 TC_ERROR("Can't query stored dump: unexpectedly not supported.\n"); in test_has_stored_dump() 91 TC_PRINT("Can't query stored dump: expectedly not supported.\n"); in test_has_stored_dump() 100 TC_ERROR("Can't have a stored dump: not supported.\n"); in test_has_stored_dump() 109 TC_ERROR("Can't have an empty stored dump: not supported.\n"); in test_has_stored_dump() 129 TC_ERROR("Can't verify stored dump: unexpectedly not supported.\n"); in test_verify_stored_dump() 132 TC_PRINT("Can't verify stored dump: expectedly not supported.\n"); in test_verify_stored_dump() 140 TC_ERROR("Can't have a stored dump: not supported.\n"); in test_verify_stored_dump() 148 TC_ERROR("Can't have a stored dump: not supported.\n"); in test_verify_stored_dump() 168 TC_ERROR("Can't invalidate stored dump: unexpectedly not supported.\n"); in test_invalidate_stored_dump() 171 TC_PRINT("Can't invalidate stored dump: expectedly not supported.\n"); in test_invalidate_stored_dump() [all …]
|
/Zephyr-latest/dts/bindings/clock/ |
D | nordic,nrf-hsfll-global.yaml | 7 The lowest supported clock frequency is the default 17 supported-clock-frequencies = <64000000 36 supported-clock-frequencies: 38 description: Supported clock frequencies in ascending order
|
/Zephyr-latest/dts/bindings/memory-controllers/ |
D | renesas,smartbond-nor-psram.yaml | 69 Command to enter the QPI mode supported by a memory device 75 Command to exit the QPI mode supported by a memory device 90 for single mode which is supported by all memory devices. 97 for single mode which is supported by all memory devices. 111 Mode0 is selected by default as it should be supported by all memory devices. 122 the max. address space supported by QSPICx. Default value is 24-bit 123 mode which is supported by all memory devices. 142 (required for the auto-refresh mechanism, when supported). 177 supported by all memory devices. 189 supported by all memory devices. [all …]
|
/Zephyr-latest/doc/services/portability/posix/option_groups/ |
D | index.rst | 17 :header: API, Supported 35 ``POSIX_C_LANG_JUMP`` Option Group is considered supported. 38 :header: API, Supported 53 ``POSIX_C_LANG_MATH`` Option Group is considered supported. 67 ``POSIX_C_LANG_SUPPORT`` Option Group is considered supported. 83 :header: API, Supported 110 :header: API, Supported 126 C89 components of the ``POSIX_DEVICE_IO`` Option Group are considered supported. 129 :header: API, Supported 190 :header: API, Supported [all …]
|
/Zephyr-latest/include/zephyr/dt-bindings/clock/ |
D | esp32c2_clock.h | 10 /* Supported CPU clock Sources */ 15 /* Supported CPU frequencies */ 22 /* Supported XTAL frequencies */ 27 /* Supported RTC fast clock sources */ 31 /* Supported RTC slow clock sources */
|
D | esp32c3_clock.h | 10 /* Supported CPU clock Sources */ 15 /* Supported CPU frequencies */ 20 /* Supported XTAL frequencies */ 24 /* Supported RTC fast clock sources */ 28 /* Supported RTC slow clock sources */
|
D | esp32s2_clock.h | 10 /* Supported CPU clock Sources */ 16 /* Supported PLL CPU frequencies */ 22 /* Supported XTAL frequencies */ 25 /* Supported RTC fast clock sources */ 29 /* Supported RTC slow clock sources */
|
D | esp32_clock.h | 11 /* Supported CPU clock Sources */ 17 /* Supported PLL CPU frequencies */ 23 /* Supported XTAL frequencies */ 28 /* Supported RTC fast clock sources */ 32 /* Supported RTC slow clock sources */
|
D | esp32c6_clock.h | 10 /* Supported CPU clock Sources */ 15 /* Supported CPU frequencies */ 20 /* Supported XTAL Frequencies */ 24 /* Supported RTC fast clock sources */ 28 /* Supported RTC slow clock frequencies */
|
D | esp32s3_clock.h | 10 /* Supported CPU clock Sources */ 15 /* Supported PLL CPU frequencies */ 21 /* Supported XTAL frequencies */ 25 /* Supported RTC fast clock sources */ 29 /* Supported RTC slow clock sources */
|
/Zephyr-latest/include/zephyr/devicetree/ |
D | can.h | 28 * The bitrate will be limited to the minimum bitrate supported by the CAN 71 * @param min minimum bitrate supported by the CAN controller 72 * @return the minimum bitrate supported by the CAN controller/transceiver combination 82 * The bitrate will be limited to the maximum bitrate supported by the CAN 114 * @param max maximum bitrate supported by the CAN controller 115 * @return the maximum bitrate supported by the CAN controller/transceiver combination 125 * @param min minimum bitrate supported by the CAN controller 126 * @return the minimum bitrate supported by the CAN controller/transceiver combination 135 * @param max maximum bitrate supported by the CAN controller 136 * @return the maximum bitrate supported by the CAN controller/transceiver combination
|
/Zephyr-latest/include/zephyr/drivers/sensor/ |
D | tmag5273.h | 18 /** Additional channels supported by the TMAG5273 */ 36 /** Additional attributes supported by the TMAG5273 */ 40 * Supported values are: 52 * Supported values
|
/Zephyr-latest/doc/connectivity/networking/ |
D | overview.rst | 10 Supported Features 37 * **IPv4** The legacy IPv4 is supported by the networking stack. It 42 * DHCP (Dynamic Host Configuration Protocol) client is supported 45 are supported by default. 51 (`RFC 768 <https://tools.ietf.org/html/rfc768>`_) is supported. 57 (`RFC 793 <https://tools.ietf.org/html/rfc793>`_) is supported. Both server 64 sockets are supported. 70 * **MQTT** Message Queue Telemetry Transport (ISO/IEC PRF 20922) is supported. 75 (`RFC 7252 <https://tools.ietf.org/html/rfc7252>`_) is supported. 80 (`LwM2M specification 1.0.2`_) is supported via the "Bootstrap", "Client [all …]
|
/Zephyr-latest/drivers/hwinfo/ |
D | hwinfo_shell.c | 22 shell_error(sh, "Not supported by hardware"); in cmd_get_device_id() 50 shell_error(sh, "Not supported by hardware"); in cmd_get_device_eui64() 142 shell_error(sh, "Not supported by hardware"); in cmd_show_reset_cause() 169 shell_error(sh, "Not supported by hardware"); in cmd_clear_reset_cause() 189 shell_error(sh, "Not supported by hardware"); in cmd_supported_reset_cause() 191 shell_error(sh, "Could not get the supported reset causes [%d]", res); in cmd_supported_reset_cause() 196 shell_print(sh, "supported reset causes:"); in cmd_supported_reset_cause() 199 shell_print(sh, "No causes supported"); in cmd_supported_reset_cause() 210 SHELL_CMD_ARG(supported, NULL, 211 "Get a list of all supported reset causes",
|
/Zephyr-latest/modules/hal_nxp/usb/ |
D | usb_device_config.h | 20 /* How many the DTD are supported. */ 40 /* Whether device is self power. 1U supported, 0U not supported */ 44 BUILD_ASSERT(NUM_INSTS <= 1, "Only one USB device supported"); 53 /* Number of endpoints supported */ 96 /* Number of endpoints supported */ 102 /*! @brief How many the DTD are supported. */
|