Searched refs:types (Results 1 – 25 of 206) sorted by relevance
123456789
/Zephyr-latest/scripts/checkpatch/ |
D | do_checkpatch.sh | 10 [ -f $1_error.types ] && rm $1_error.types 11 [ -f $1_warning.types ] && rm $1_warning.types 16 …${ZEPHYR_BASE}/scripts/checkpatch.pl --mailback --no-tree -f --emacs --summary-file --show-types -… 18 grep ERROR: $1 |cut -d : -f 3,4 |sort -u > $1_error.types 19 grep WARNING: $1 |cut -d : -f 3,4 |sort -u > $1_warning.types 20 for i in `cat $1_error.types`; do 23 for i in `cat $1_warning.types`; do
|
/Zephyr-latest/samples/subsys/sensing/simple/boards/ |
D | native_sim.overlay | 32 …sensor-types = <SENSING_SENSOR_TYPE_MOTION_ACCELEROMETER_3D SENSING_SENSOR_TYPE_MOTION_GYROMETER_3… 41 …sensor-types = <SENSING_SENSOR_TYPE_MOTION_ACCELEROMETER_3D SENSING_SENSOR_TYPE_MOTION_GYROMETER_3… 50 sensor-types = <SENSING_SENSOR_TYPE_MOTION_HINGE_ANGLE>;
|
/Zephyr-latest/tests/subsys/sensing/boards/ |
D | native_sim.overlay | 32 …sensor-types = <SENSING_SENSOR_TYPE_MOTION_ACCELEROMETER_3D SENSING_SENSOR_TYPE_MOTION_GYROMETER_3… 41 …sensor-types = <SENSING_SENSOR_TYPE_MOTION_ACCELEROMETER_3D SENSING_SENSOR_TYPE_MOTION_GYROMETER_3… 50 sensor-types = <SENSING_SENSOR_TYPE_MOTION_HINGE_ANGLE>;
|
/Zephyr-latest/cmake/ |
D | kobj.cmake | 10 set(KOBJ_TYPES ${gen_dir}/kobj-types-enum.h) 21 --kobj-types-output ${KOBJ_TYPES}
|
/Zephyr-latest/scripts/dts/python-devicetree/ |
D | tox.ini | 8 types-PyYAML
|
/Zephyr-latest/drivers/ipm/ |
D | Kconfig.imx | 30 There will be four message types with ids 0, 1, 2 or 3 36 There will be two message types with ids 0 or 1
|
/Zephyr-latest/doc/connectivity/usb/api/ |
D | hid.rst | 9 HID types reference
|
/Zephyr-latest/ |
D | .checkpatch.conf | 3 --show-types
|
/Zephyr-latest/doc/build/snippets/ |
D | design.rst | 19 - **able to combine multiple types of configuration**: snippets make it possible 20 to store multiple different types of build system settings in one place, and
|
/Zephyr-latest/doc/hardware/peripherals/ |
D | mipi_dbi.rst | 9 MIPI DBI defines 3 interface types:
|
D | coredump.rst | 9 The coredump device is a pseudo-device driver with two types.A COREDUMP_TYPE_MEMCPY
|
D | bbram.rst | 7 common types of BBRAM properties are easily accessed via this API:
|
/Zephyr-latest/modules/ |
D | Kconfig.simplelink | 7 # SimpleLink drivers require types (stdint.h) from c library which is not
|
/Zephyr-latest/doc/build/dts/ |
D | intro-scope-purpose.rst | 21 There are two types of devicetree input files: *devicetree sources* and 23 describe its contents, including data types. The :ref:`build system
|
/Zephyr-latest/drivers/interrupt_controller/ |
D | Kconfig.plic | 28 Enabled when the PLIC supports multiple trigger types, 43 Number of bits required to differentiate between the trigger types.
|
/Zephyr-latest/subsys/fs/ |
D | Kconfig | 38 int "Maximum number of distinct file system types allowed" 41 Zephyr provides several file system types including FatFS and 50 system types. Zero or a negative value selects the maximum
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | wifi.rst | 14 Only personal mode security is supported with below types: 23 Currently, two types of Wi-Fi drivers are supported:
|
/Zephyr-latest/doc/services/device_mgmt/smp_groups/ |
D | smp_group_8.rst | 23 | ``3`` | Supported file hash/checksum types | 457 Hash/checksum types 548 Supported file hash/checksum types 551 Command allows listing which hash and checksum types are available on a device. 555 Supported file hash/checksum types request argument 558 Supported file hash/checksum types request header: 571 Supported file hash/checksum types response argument 574 Supported file hash/checksum types response header: 590 (str)"types" : {
|
/Zephyr-latest/doc/connectivity/bluetooth/ |
D | bluetooth-dev.rst | 53 All the :ref:`bluetooth-configs` and :ref:`bluetooth-build-types` are supported 78 #. A :ref:`Host-only <bluetooth-build-types>` application running in the 81 #. A Controller, which can be one of the following types: 84 * A :ref:`Controller-only <bluetooth-build-types>` build of Zephyr 155 <bluetooth-build-types>`, but it is also possible to build the controller with one of the
|
/Zephyr-latest/samples/net/cloud/aws_iot_mqtt/src/ |
D | main.c | 194 static const char *const types[] = { in mqtt_evt_type_to_str() local 199 return (type < ARRAY_SIZE(types)) ? types[type] : "<unknown>"; in mqtt_evt_type_to_str()
|
/Zephyr-latest/drivers/sensor/vishay/vcnl36825t/ |
D | Kconfig | 25 standard types will deactivate the other interrupt.
|
/Zephyr-latest/doc/develop/sca/ |
D | codechecker.rst | 53 - A comma separated list of report types. Allowed types are:
|
/Zephyr-latest/subsys/logging/ |
D | Kconfig.template.log_format_config | 35 # The numbering of the format types should be consistent across
|
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/ |
D | dtlib.py | 335 types = [marker[1] for marker in self._markers 338 if not types: 341 if types == [_MarkerType.UINT8]: 344 if types == [_MarkerType.UINT32]: 348 if set(types) == {_MarkerType.UINT32}: 351 if set(types) == {_MarkerType.STRING}: 352 return Type.STRING if len(types) == 1 else Type.STRINGS 354 if types == [_MarkerType.PATH]: 357 if (types == [_MarkerType.UINT32, _MarkerType.PHANDLE] 361 if set(types) == {_MarkerType.UINT32, _MarkerType.PHANDLE}: [all …]
|
/Zephyr-latest/cmake/bintools/armclang/ |
D | elfconvert_command.cmake | 19 # Handle Input and Output target types
|
123456789