/Zephyr-Core-2.7.6/tests/lib/devicetree/api/ |
D | app.overlay | 28 compatible = "vnd,pinctrl"; 37 * vnd,undefined-compat is for DT_NODE_HAS_COMPAT_STATUS(..,okay). 38 * There should only be one vnd,array-holder in the entire DTS. 40 compatible = "vnd,array-holder", "vnd,undefined-compat"; 47 compatible = "vnd,phandle-holder"; 64 compatible = "vnd,enum-holder"; 69 compatible = "vnd,enum-holder"; 74 compatible = "vnd,enum-required-false-holder"; 79 compatible = "vnd,enum-required-false-holder"; 83 compatible = "vnd,enum-int-required-false-holder"; [all …]
|
/Zephyr-Core-2.7.6/doc/_scripts/ |
D | gen_devicetree_rest.py | 48 def vendor(self, vnd): argument 49 return self.vnd2vendor.get(vnd, UNKNOWN_VENDOR) 51 def bindings(self, vnd, default=None): argument 52 return self.vnd2bindings.get(vnd, default) 54 def target(self, vnd): argument 56 vnd, self.vnd2ref_target[(UNKNOWN_VENDOR,)]) 104 vnd = compatible_vnd(binding.compatible) 105 if vnd is None: 107 elif vnd in self.vnd2vendor: 108 unsorted[vnd].append(binding) [all …]
|
/Zephyr-Core-2.7.6/tests/lib/devicetree/devices/ |
D | app.overlay | 21 compatible = "vnd,gpio"; 30 compatible = "vnd,i2c"; 37 compatible = "vnd,i2c-device"; 47 compatible = "vnd,gpio-expander"; 54 compatible = "vnd,i2c-device";
|
/Zephyr-Core-2.7.6/subsys/bluetooth/mesh/ |
D | cfg_srv.c | 65 net_buf_simple_add_le16(buf, mod->vnd.company); in comp_add_elem() 66 net_buf_simple_add_le16(buf, mod->vnd.id); in comp_add_elem() 149 struct net_buf_simple *buf, bool *vnd) in get_model() argument 158 *vnd = false; in get_model() 170 *vnd = true; in get_model() 378 struct bt_mesh_elem *elem, bool vnd, bool primary, in mod_app_key_del() argument 706 uint16_t pub_addr, bool vnd, in send_mod_pub_status() argument 731 if (vnd) { in send_mod_pub_status() 751 bool vnd; in mod_pub_get() local 771 vnd = (buf->len == 4U); in mod_pub_get() [all …]
|
D | access.c | 55 bool vnd, bool primary, in bt_mesh_model_foreach() argument 268 struct bt_mesh_model *bt_mesh_model_get(bool vnd, uint8_t elem_idx, uint8_t mod_idx) in bt_mesh_model_get() argument 279 if (vnd) { in bt_mesh_model_get() 305 if (cid == mod->vnd.company) { in bt_mesh_vnd_mod_msg_cid_check() 311 mod->vnd.company, mod->vnd.id, op->opcode); in bt_mesh_vnd_mod_msg_cid_check() 321 bool vnd, bool primary, void *user_data) in mod_init() argument 340 if (vnd) { in mod_init() 615 cid != models[i].vnd.company) { in find_op() 785 if (elem->vnd_models[i].vnd.company == company && in bt_mesh_model_find_vnd() 786 elem->vnd_models[i].vnd.id == id) { in bt_mesh_model_find_vnd() [all …]
|
D | access.h | 32 bool vnd, bool primary, 45 struct bt_mesh_model *bt_mesh_model_get(bool vnd, uint8_t elem_idx, uint8_t mod_idx);
|
D | main.c | 225 bool vnd, bool primary, void *user_data) in model_suspend() argument 267 bool vnd, bool primary, void *user_data) in model_resume() argument 350 bool vnd, bool primary, void *user_data) in model_start() argument
|
/Zephyr-Core-2.7.6/drivers/serial/ |
D | Kconfig.test | 4 DT_COMPAT_VND_SERIAL := vnd,serial 6 # Hidden option to enable the vnd,serial dummy driver used in testing.
|
/Zephyr-Core-2.7.6/drivers/spi/ |
D | Kconfig.test | 4 DT_COMPAT_VND_SPI := vnd,spi 6 # Hidden option for turning on the dummy driver for vnd,spi devices
|
/Zephyr-Core-2.7.6/drivers/i2c/ |
D | Kconfig.test | 4 DT_COMPAT_VND_I2C := vnd,i2c 6 # Hidden option for turning on the dummy driver for vnd,i2c devices
|
/Zephyr-Core-2.7.6/tests/drivers/build_all/eeprom/ |
D | app.overlay | 19 compatible = "vnd,gpio"; 30 compatible = "vnd,i2c"; 52 compatible = "vnd,spi";
|
/Zephyr-Core-2.7.6/tests/drivers/build_all/modem/ |
D | app.overlay | 19 compatible = "vnd,gpio"; 28 compatible = "vnd,serial";
|
/Zephyr-Core-2.7.6/tests/drivers/build_all/gpio/ |
D | app.overlay | 19 compatible = "vnd,gpio"; 30 compatible = "vnd,i2c"; 88 compatible = "vnd,spi";
|
/Zephyr-Core-2.7.6/tests/drivers/build_all/dac/ |
D | app.overlay | 19 compatible = "vnd,gpio"; 30 compatible = "vnd,i2c"; 61 compatible = "vnd,spi";
|
/Zephyr-Core-2.7.6/tests/drivers/build_all/sensor/ |
D | app.overlay | 19 compatible = "vnd,gpio"; 32 compatible = "vnd,i2c"; 44 compatible = "vnd,spi"; 121 compatible = "vnd,serial";
|
/Zephyr-Core-2.7.6/tests/drivers/build_all/ethernet/ |
D | app.overlay | 19 compatible = "vnd,gpio"; 30 compatible = "vnd,spi";
|
/Zephyr-Core-2.7.6/tests/ztest/busy_sim/boards/ |
D | nrf52840dk_nrf52840.overlay | 14 compatible = "vnd,busy-sim";
|
D | nrf52840dk_nrf52840_pin.overlay | 14 compatible = "vnd,busy-sim";
|
/Zephyr-Core-2.7.6/include/bluetooth/mesh/ |
D | access.h | 243 .vnd.company = (_company), \ 244 .vnd.id = (_id), \ 488 const struct bt_mesh_mod_id_vnd vnd; member 628 int bt_mesh_model_data_store(struct bt_mesh_model *mod, bool vnd,
|
/Zephyr-Core-2.7.6/doc/guides/dts/ |
D | main-example.dts | 22 compatible = "vnd,soc-i2c";
|
D | troubleshooting.rst | 156 source file, ``compatible`` should look like ``"vnd,some-device"`` --
|
/Zephyr-Core-2.7.6/tests/drivers/build_all/led/ |
D | app.overlay | 19 compatible = "vnd,gpio";
|
/Zephyr-Core-2.7.6/tests/drivers/build_all/adc/ |
D | app.overlay | 29 compatible = "vnd,gpio"; 40 compatible = "vnd,spi";
|
/Zephyr-Core-2.7.6/tests/bluetooth/bsim_bt/bsim_test_mesh/src/ |
D | test_persistence.c | 605 bool vnd = m == 1; in node_configuration_check() local 607 if (!vnd) { in node_configuration_check() 625 if (!vnd) { in node_configuration_check() 644 if (!vnd) { in node_configuration_check()
|
/Zephyr-Core-2.7.6/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/ |
D | README.rst | 1 .. _bluetooth-mesh-onoff-level-lighting-vnd-sample:
|