Home
last modified time | relevance | path

Searched +full:string +full:- +full:array (Results 1 – 25 of 357) sorted by relevance

12345678910>>...15

/Zephyr-latest/dts/bindings/usb/uac2/
Dzephyr,uac2-feature-unit.yaml2 # SPDX-License-Identifier: Apache-2.0
6 compatible: "zephyr,uac2-feature-unit"
8 # string-array properties start with Primary channel 0 and follow with Logical
9 # channel(s). The "not-present" value is allowed to facilitate having controls
14 data-source:
18 mute-control:
19 type: string-array
22 - "read-only"
23 - "host-programmable"
24 - "not-present"
[all …]
/Zephyr-latest/dts/bindings/base/
Dbase.yaml7 type: string
10 - "ok" # Deprecated form
11 - "okay"
12 - "disabled"
13 - "reserved"
14 - "fail"
15 - "fail-sss"
18 type: string-array
23 type: array
26 reg-names:
[all …]
/Zephyr-latest/scripts/dts/python-devicetree/tests/test-bindings/
Dprops.yaml1 # SPDX-License-Identifier: BSD-3-Clause
8 nonexistent-boolean:
11 existent-boolean:
18 array:
19 type: array
21 uint8-array:
22 type: uint8-array
24 string:
25 type: string
28 string-array:
[all …]
Denums.yaml2 # SPDX-License-Identifier: BSD-3-Clause
9 int-enum:
12 - 1
13 - 2
14 - 3
16 string-enum: # not tokenizable
17 type: string
19 - foo bar
20 - foo_bar
22 tokenizable-lower-enum: # tokenizable in lowercase only
[all …]
Ddefaults.yaml1 # SPDX-License-Identifier: BSD-3-Clause
13 array:
14 type: array
18 uint8-array:
19 type: uint8-array
23 string:
24 type: string
28 string-array:
29 type: string-array
33 default-not-used:
/Zephyr-latest/dts/bindings/test/
Dvnd,phandle-holder.yaml2 # SPDX-License-Identifier: Apache-2.0
6 compatible: "vnd,phandle-holder"
13 phs-or: {type: "phandles"}
14 pha-gpios: {type: "phandle-array"}
15 gpios: {type: "phandle-array"}
16 foos: {type: "phandle-array"}
17 foo-names: {type: "string-array"}
18 pwms: {type: "phandle-array"}
19 pwm-names: {type: "string-array"}
21 type: "phandle-array"
[all …]
Dvnd,string-array.yaml2 # SPDX-License-Identifier: Apache-2.0
4 description: Test string array property container
6 compatible: "vnd,string-array"
10 type: string-array
Dvnd,string-array-token.yaml2 # SPDX-License-Identifier: Apache-2.0
4 description: Test string array token property container
6 compatible: "vnd,string-array-token"
10 type: string-array
Dvnd,string-array-unquoted.yaml2 # SPDX-License-Identifier: Apache-2.0
4 description: Test string array unquoted property container
6 compatible: "vnd,string-array-unquoted"
10 type: string-array
Dvnd,enum-string-array-holder.yaml2 # SPDX-License-Identifier: Apache-2.0
6 compatible: "vnd,enum-string-array-holder"
12 type: string-array
14 - foo
15 - bar
16 - baz
17 - zoo
Dvnd,array-holder.yaml2 # SPDX-License-Identifier: Apache-2.0
4 description: Test array container
6 compatible: "vnd,array-holder"
11 a: {type: "array"}
12 b: {type: "uint8-array"}
13 c: {type: "string-array"}
15 gpio-cells:
16 - pin
17 - flags
/Zephyr-latest/dts/bindings/tcpc/
Dnuvoton,numaker-tcpc.yaml2 # SPDX-License-Identifier: Apache-2.0
4 description: Nuvoton NuMaker USB Type-C port controller
6 compatible: "nuvoton,numaker-tcpc"
8 include: [base.yaml, reset-device.yaml, pinctrl-device.yaml]
23 vconn-overcurrent-event-polarity:
24 type: string
28 - "low-active"
29 - "high-active"
31 vconn-discharge-polarity:
32 type: string
[all …]
/Zephyr-latest/dts/bindings/ipm/
Dxlnx,zynqmp-ipi-mailbox.yaml1 # SPDX-License-Identifier: Apache-2.0
8 compatible: "xlnx,zynqmp-ipi-mailbox"
15 type: array
18 reg-names:
19 type: string-array
22 local-ipi-id:
27 child-binding:
32 type: array
36 reg-names:
37 type: string-array
[all …]
/Zephyr-latest/include/zephyr/sys/
Dutil.h2 * Copyright (c) 2011-2014, Wind River Systems, Inc.
4 * SPDX-License-Identifier: Apache-2.0
40 * @defgroup sys-util Utility Functions
80 (((~0UL) - (1UL << (l)) + 1) & (~0UL >> (BITS_PER_LONG - 1 - (h))))
83 * @brief Create a contiguous 64-bit bitmask starting at bit position @p l
87 (((~0ULL) - (1ULL << (l)) + 1) & (~0ULL >> (BITS_PER_LONG_LONG - 1 - (h))))
89 /** @brief 0 if @p cond is true-ish; causes a compile error otherwise. */
90 #define ZERO_OR_COMPILE_ERROR(cond) ((int) sizeof(char[1 - 2 * !(cond)]) - 1)
94 /* The built-in function used below for type checking in C is not
97 #define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0])) argument
[all …]
/Zephyr-latest/tests/lib/devicetree/api/
Dapp.overlay4 * SPDX-License-Identifier: Apache-2.0
9 * with real-world devicetree nodes, to allow these tests to run on
15 test-alias = &test_nodelabel;
24 string = "foo";
28 #address-cells = < 0x1 >;
29 #size-cells = < 0x1 >;
30 interrupt-parent = <&test_intc>;
32 test_cpu_intc: interrupt-controller {
33 compatible = "vnd,cpu-intc";
34 #address-cells = <0>;
[all …]
/Zephyr-latest/include/zephyr/data/
Djson.h4 * SPDX-License-Identifier: Apache-2.0
83 * power of 2 in order to keep this value in the 0-3 range
110 } array; member
120 * @param data User-provided pointer
157 .field_name_len = sizeof(#field_name_) - 1, \
167 * @param sub_descr_ Array of json_obj_descr describing the subobject
190 .field_name_len = (sizeof(#field_name_) - 1), \
204 * in the array
206 * @param union_ Optional macro argument containing array or object descriptor
220 * @internal @brief Helper macro to declare an array descriptor
[all …]
/Zephyr-latest/include/zephyr/net/
Dwifi_utils.h4 * SPDX-License-Identifier: Apache-2.0
9 * @brief Utility functions to be used by the Wi-Fi subsystem.
25 * @name Wi-Fi utility functions.
27 * Utility functions for the Wi-Fi subsystem.
31 /** Maximum length of the band specification string */
34 /** Maximum length of the channel specification string */
38 * @brief Convert a band specification string to a bitmap representing the bands.
40 * @details The function will parse a string which specifies Wi-Fi frequency band
41 * values as a comma separated string and convert it to a bitmap. The string can
44 * - 2: 2.4 GHz
[all …]
/Zephyr-latest/dts/bindings/mspi/
Dmspi-device.yaml2 # SPDX-License-Identifier: Apache-2.0
8 on-bus: mspi
14 mspi-max-frequency:
22 mspi-io-mode:
23 type: string
25 - "MSPI_IO_MODE_SINGLE"
26 - "MSPI_IO_MODE_DUAL"
27 - "MSPI_IO_MODE_DUAL_1_1_2"
28 - "MSPI_IO_MODE_DUAL_1_2_2"
29 - "MSPI_IO_MODE_QUAD"
[all …]
/Zephyr-latest/drivers/gnss/
Dgnss_nmea0183.h4 * SPDX-License-Identifier: Apache-2.0
15 * @example "PAIR002" -> 0x38
17 * @param str String from which checksum is computed
26 * @example "PAIR%03u", 2 -> "$PAIR002*38"
28 * @param str Destination for encapsulated string
29 * @param size Size of destination for encapsulated string
30 * @param fmt Format of string to encapsulate
40 * @param argv Array of arguments split by ',' including message id and checksum
51 * @example "5610.9928" -> 56183214000
53 * @param ddmm_mmmm String representation of angle in ddmm.mmmm format
[all …]
/Zephyr-latest/dts/bindings/usb-c/
Dusb-c-connector.yaml2 # SPDX-License-Identifier: Apache-2.0
5 A USB Type-C connector node represents a physical USB Type-C connector.
6 It should be a child of a USB-C interface controller or a separate node
7 when it is attached to both MUX and USB-C interface controller.
10 …/git/torvalds/linux.git/tree/Documentation/devicetree/bindings/connector/usb-connector.yaml?h=v5.1…
14 USB-C connector attached to a STM32 UCPD typec port controller, which has
18 compatible = "zephyr,usb-c-vbus-adc";
19 io-channels = <&adc2 8>;
20 output-ohms = <49900>;
21 full-ohms = <(330000 + 49900)>;
[all …]
/Zephyr-latest/doc/build/dts/
Dbindings-syntax.rst1 .. _dt-bindings-file-syntax:
7 files are YAML files. A :ref:`simple example <dt-bindings-simple-example>` was
17 The top level of a bindings file maps keys to values. The top-level keys look
20 .. code-block:: yaml
24 This is the Vendomatic company's foo-device.
29 See https://yaml-multiline.info/ for formatting help.
35 compatible: "manufacturer,foo-device"
41 child-binding:
50 # SPI memory chip, use 'on-bus:' to say what type of bus, like this.
53 on-bus: spi
[all …]
/Zephyr-latest/include/zephyr/debug/
Dgdbstub.h4 * SPDX-License-Identifier: Apache-2.0
56 * This array specifies which region of memory GDB can access
71 * @brief Convert a binary array into string representation.
76 * @param buf The binary array to convert
77 * @param buflen The length of the binary array to convert
78 * @param hex Address of where to store the string representation.
79 * @param hexlen Size of the storage area for string representation.
81 * @return The length of the converted string, or 0 if an error occurred.
/Zephyr-latest/dts/bindings/led/
Dled-controller.yaml2 # SPDX-License-Identifier: Apache-2.0
6 child-binding:
10 type: string
11 description: Human readable string describing the LED
18 LEDs in an array/strip are not wired following the LED order of
20 color-mapping:
21 type: array
24 several colors, then the color-mapping property can be used to
29 color-mapping =
/Zephyr-latest/dts/bindings/reset/
Dreset-device.yaml1 # Copyright (c) 2022 Andrei-Edward Popa
2 # SPDX-License-Identifier: Apache-2.0
8 type: phandle-array
11 reset-names:
12 type: string-array
/Zephyr-latest/cmake/modules/
Dyaml.cmake1 # SPDX-License-Identifier: Apache-2.0
9 # It supports basic key-value pairs, like
12 # basic key-object pairs, like
18 # - foo1
19 # - foo2
20 # - foo3
27 # - alpha
28 # - beta
29 # - gamma
35 # - bar: val1
[all …]

12345678910>>...15