Home
last modified time | relevance | path

Searched full:features (Results 1 – 25 of 1156) sorted by relevance

12345678910>>...47

/Zephyr-latest/include/zephyr/bluetooth/audio/
Dpbp.h45 * features (1) and the metadata length (1)
49 /** Public Broadcast Announcement features */
61 * in the features parameter.
65 * @param features Public Broadcast Announcement features
72 enum bt_pbp_announcement_feature features,
77 * Announcement. Returns the advertised Public Broadcast Announcement features and metadata.
80 * @param[out] features Pointer to public broadcast source features to store the parsed features in
84 * @retval -EINVAL if @p data, @p features or @p meta are NULL.
90 int bt_pbp_parse_announcement(struct bt_data *data, enum bt_pbp_announcement_feature *features,
Dgmap.h156 /** Unicast Game Gateway features */
158 /** Unicast Game Terminal features */
160 /** Remote Broadcast Game Sender features */
162 /** Remote Broadcast Game Receiver features */
176 * @param features Remote features.
179 struct bt_gmap_feat features);
213 * @param features Features of the roles. If a role is not in the @p role parameter, then the
220 int bt_gmap_register(enum bt_gmap_role role, struct bt_gmap_feat features);
223 * @brief Set one or multiple Gaming Audio Profile roles and features dynamically.
230 * @param features Features of the roles. If a role is not in the @p role parameter, then the
[all …]
/Zephyr-latest/include/zephyr/drivers/sensor/
Dtdk_apex.h20 /** TDK APEX features */
27 * @brief Extended sensor channel for TDK MEMS supportintg APEX features
30 * getting the APEX features data.
32 * The APEX (Advanced Pedometer and Event Detection – neXt gen) features of
44 /** APEX features */
/Zephyr-latest/doc/project/
Dproposals.rst6 For feature tracking we use Github labels to classify new features and
10 Changes to existing features that are not considered a bug and would not
21 implementation proposal and an owner. Features must go through an RFC process
34 The following workflow should be used to process features:.
44 - Label new features requests as ``feature-request``
46 Items are examined for similarity with existing features, how they fit with
69 plan is a tactical document designed to capture and track the features planned
97 is translated into an actionable plan built on specific features, enhancements,
100 The release plan communicates those features and enhancements slated for your
105 Items labeled as ``features`` are short or long term release items that shall
Drelease_process.rst11 balance of the latest technologies and features and excellent overall quality. A
13 the features that have actually been implemented, allowing the project to
15 features that are not ready yet.
69 new features has passed, and that the time to stabilize the next release of the
79 On occasion, more significant changes and new features will be allowed, but such
117 architecture/architecture variant/Hardware features)
168 - Finalize target milestones for features in flight.
176 - No new features after RC1, ONLY stabilization and cosmetic changes, bug and doc
177 fixes are allowed. New tests for existing features are also allowed.
181 …- No new features after RC2, ONLY stabilization and cosmetic changes, bug and doc fixes are allowe…
[all …]
Dcode_flow.rst16 of new features to be introduced into the main branch when ready. Creating a new
20 Zephyr, the introduction of fixes and new features, if approved by the TSC,
27 Development in collaboration branches before features go to mainline allows teams to
36 By dedicating an isolated branch to complex features, it's
/Zephyr-latest/subsys/bluetooth/audio/
Dpbp.c25 enum bt_pbp_announcement_feature features, in bt_pbp_get_announcement() argument
48 net_buf_simple_add_u8(pba_data_buf, features); in bt_pbp_get_announcement()
55 int bt_pbp_parse_announcement(struct bt_data *data, enum bt_pbp_announcement_feature *features, in bt_pbp_parse_announcement() argument
63 CHECKIF(!data || !features || !meta) { in bt_pbp_parse_announcement()
84 /* Copy source features, metadata length and metadata from the Announcement */ in bt_pbp_parse_announcement()
85 *features = net_buf_simple_pull_u8(&buf); in bt_pbp_parse_announcement()
Dgmap_server.c168 static bool valid_gmap_features(enum bt_gmap_role role, struct bt_gmap_feat features) in valid_gmap_features() argument
173 enum bt_gmap_ugg_feat ugg_feat = features.ugg_feat; in valid_gmap_features()
207 enum bt_gmap_ugt_feat ugt_feat = features.ugt_feat; in valid_gmap_features()
208 enum bt_gmap_bgr_feat bgr_feat = features.bgr_feat; in valid_gmap_features()
289 enum bt_gmap_bgr_feat bgr_feat = features.bgr_feat; in valid_gmap_features()
345 int bt_gmap_register(enum bt_gmap_role role, struct bt_gmap_feat features) in bt_gmap_register() argument
355 CHECKIF(!valid_gmap_features(role, features)) { in bt_gmap_register()
356 LOG_DBG("Invalid features"); in bt_gmap_register()
371 gmap_features = features; in bt_gmap_register()
376 int bt_gmap_set_role(enum bt_gmap_role role, struct bt_gmap_feat features) in bt_gmap_set_role() argument
[all …]
/Zephyr-latest/doc/security/
Dhardening-tool.rst12 #. Disabling features and compilation flags that might lead to security vulnerabilities (ex. making
13 sure that no "experimental" features are being used, disabling features typically used for
15 #. Enabling optional features that can lead to improve security (ex. stack sentinel, hardware stack
16 protection, etc.). Some of these features might be hardware-dependent.
/Zephyr-latest/dts/bindings/qspi/
Dst,stm32-qspi.yaml42 the channel number, the slot number, channel configuration and finally features.
43 (depending on the type of DMA: 'features' is optional)
46 (not dmamux channel). The request is given by the DMAMUX (no 'features' required).
48 For example with DMA 2 for TX/RX on QSPI like stm32l496 (no 'features')
51 For example with a DMAMUX for TX/RX on QSPI like stm32wb55 (no 'features')
/Zephyr-latest/subsys/bluetooth/audio/shell/
Dpbp.c43 enum bt_pbp_announcement_feature features; in cmd_pbp_set_features() local
45 features = shell_strtoul(argv[1], 16, &err); in cmd_pbp_set_features()
47 shell_error(sh, "Could not parse received features: %d", err); in cmd_pbp_set_features()
52 pbp_features = features; in cmd_pbp_set_features()
95 "Set the Public Broadcast Announcement features",
Dgmap.c66 struct bt_gmap_feat features) in gmap_discover_cb() argument
76 conn, role, features.ugg_feat, features.ugt_feat, features.bgs_feat, in gmap_discover_cb()
77 features.bgr_feat); in gmap_discover_cb()
84 static void set_gmap_features(struct bt_gmap_feat *features) in set_gmap_features() argument
86 memset(features, 0, sizeof(*features)); in set_gmap_features()
90 features->ugg_feat |= (BT_GMAP_UGG_FEAT_MULTIPLEX | BT_GMAP_UGG_FEAT_96KBPS_SOURCE); in set_gmap_features()
93 features->ugg_feat |= BT_GMAP_UGG_FEAT_MULTISINK; in set_gmap_features()
100 features->ugt_feat |= (BT_GMAP_UGT_FEAT_SOURCE | BT_GMAP_UGT_FEAT_80KBPS_SOURCE); in set_gmap_features()
102 features->ugt_feat |= BT_GMAP_UGT_FEAT_MULTISOURCE; in set_gmap_features()
106 features->ugt_feat |= (BT_GMAP_UGT_FEAT_SINK | BT_GMAP_UGT_FEAT_64KBPS_SINK); in set_gmap_features()
[all …]
/Zephyr-latest/subsys/bluetooth/services/ots/
Dots.c69 /* OACP features supported by Kconfig */
84 /* OLCP features supported by Kconfig */
128 return bt_gatt_attr_read(conn, attr, buf, len, offset, &ots->features, in ots_feature_read()
129 sizeof(ots->features)); in ots_feature_read()
329 if (!ots_obj_validate_prop_against_oacp(created_desc.props, ots->features.oacp)) { in bt_ots_obj_add_internal()
331 created_desc.props, ots->features.oacp); in bt_ots_obj_add_internal()
470 __ASSERT(ots_init->cb->obj_created || !BT_OTS_OACP_GET_FEAT_CREATE(ots_init->features.oacp), in bt_ots_init()
472 __ASSERT(ots_init->cb->obj_deleted || !BT_OTS_OACP_GET_FEAT_DELETE(ots_init->features.oacp), in bt_ots_init()
476 !BT_OTS_OACP_GET_FEAT_CHECKSUM(ots_init->features.oacp), in bt_ots_init()
479 __ASSERT(ots_init->cb->obj_read || !BT_OTS_OACP_GET_FEAT_READ(ots_init->features.oacp), in bt_ots_init()
[all …]
/Zephyr-latest/modules/openthread/
DKconfig11 menu "OpenThread stack features"
12 rsource "Kconfig.features"
/Zephyr-latest/doc/connectivity/networking/api/
Dethernet.rst24 Zephyr supports following Ethernet features:
38 Not all Ethernet device drivers support all of these features. You can
40 currently supported Ethernet features.
/Zephyr-latest/doc/connectivity/bluetooth/
Dfeatures.rst1 .. _bluetooth-features:
3 Supported features
21 * Features, buffer sizes/counts, stack sizes, etc.
41 * All v5.3 specification features supported (except a few minor items)
77 * Relay, Friend Node, Low-Power Node (LPN) and GATT Proxy features
/Zephyr-latest/tests/subsys/rtio/rtio_i2c/
Dprj.conf4 # Features being tested
21 # Language features for capturing lambdas
/Zephyr-latest/samples/bluetooth/hap_ha/src/
Dhas_server.c78 static struct bt_has_features_param features = { variable
89 features.type = BT_HAS_HEARING_AID_TYPE_BINAURAL; in has_server_init()
91 features.type = BT_HAS_HEARING_AID_TYPE_BANDED; in has_server_init()
94 err = bt_has_register(&features); in has_server_init()
/Zephyr-latest/doc/templates/
Dboard.tmpl12 [A short description about the board, its main features and availability]
18 Supported Features
20 [List of supported features and level of support in Zephyr]
/Zephyr-latest/boards/nxp/lpcxpresso55s36/
Dlpcxpresso55s36-pinctrl.dtsi13 /* Configures pin routing and optionally pin electrical features. */
22 /* Configures pin routing and optionally pin electrical features. */
31 /* Configures pin routing and optionally pin electrical features. */
50 /* Configures pin routing and optionally pin electrical features. */
/Zephyr-latest/include/zephyr/drivers/dma/
Ddma_stm32.h48 DT_INST_DMAS_CELL_BY_NAME(id, dir, features)
79 /* macro for features (only for dma-v1) */
81 #define STM32_DMA_FEATURES_FIFO_THRESHOLD(features) (features & 0x3) argument
83 #define STM32_DMA_FEATURES_FIFO_THRESHOLD(features) 0 argument
/Zephyr-latest/tests/lib/cpp/cxx/
Dprj.conf8 # Enable optional features that are off by default to cover as much as
20 # Enable more features and C++ coverage in device.h, pm/device.h, pm.h...
/Zephyr-latest/boards/brcm/bcm958401m2/doc/
Dindex.rst13 The BCM958401M2 is a PCIe card with the following physical features:
19 Supported Features
22 features:
32 Other hardware features have not been enabled yet for this board.
/Zephyr-latest/boards/brcm/bcm958402m2/doc/
Da72.rst13 The ``bcm958402m2/bcm58402/a72`` is a PCIe card with the following physical features:
19 Supported Features
22 hardware features:
32 Other hardware features have not been enabled yet for this board.
Dm7.rst13 The ``bcm958402m2/bcm58402/m7`` is a PCIe card with the following physical features:
19 Supported Features
22 hardware features:
32 Other hardware features have not been enabled yet for this board.

12345678910>>...47