#[repr(C)]pub struct ble_gap_cfg_role_count_t {
pub adv_set_count: u8,
pub periph_role_count: u8,
}
Expand description
@brief Configuration of maximum concurrent connections in the peripheral role, set with @ref sd_ble_cfg_set.
@retval ::NRF_ERROR_CONN_COUNT The periph_role_count is too large. The maximum supported sum of concurrent connections is @ref BLE_GAP_ROLE_COUNT_COMBINED_MAX. @retval ::NRF_ERROR_RESOURCES The adv_set_count is too large. The maximum supported advertising handles is @ref BLE_GAP_ADV_SET_COUNT_MAX.
Fields§
§adv_set_count: u8
< Maximum number of advertising sets. Default value is @ref BLE_GAP_ADV_SET_COUNT_DEFAULT.
periph_role_count: u8
< Maximum number of connections concurrently acting as a peripheral. Default value is @ref BLE_GAP_ROLE_COUNT_PERIPH_DEFAULT.
Trait Implementations§
source§impl Clone for ble_gap_cfg_role_count_t
impl Clone for ble_gap_cfg_role_count_t
source§fn clone(&self) -> ble_gap_cfg_role_count_t
fn clone(&self) -> ble_gap_cfg_role_count_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more