SoftdeviceController

Struct SoftdeviceController 

Source
pub struct SoftdeviceController<'d> { /* private fields */ }
Expand description

The SoftDevice Controller.

This is the main interface to the SoftDevice Controller. It is responsible for enabling and running the SDC.

Implementations§

Source§

impl<'d> SoftdeviceController<'d>

Source

pub fn build_revision() -> Result<[u8; 20], Error>

Returns the build revision of the SoftDevice Controller.

Source

pub fn hci_data_put(&self, buf: &[u8]) -> Result<(), Error>

Submits an HCI data packet to the controller.

Source

pub fn hci_iso_data_put(&self, buf: &[u8]) -> Result<(), Error>

Submits an HCI ISO data packet to the controller.

Source

pub fn try_hci_get(&self, buf: &mut [u8]) -> Result<PacketKind, Error>

Tries to get an HCI packet from the controller.

Source

pub async fn hci_get(&self, buf: &mut [u8]) -> Result<PacketKind, Error>

Gets an HCI packet from the controller, waiting if necessary.

Source

pub fn register_waker(&self, waker: &Waker)

Registers a waker to be woken when the controller has a new event.

Trait Implementations§

Source§

impl Controller for SoftdeviceController<'_>

Source§

fn try_write_acl_data( &self, packet: &AclPacket<'_>, ) -> Result<(), TryError<Self::Error>>

Attempt to write ACL data to the controller. Read more
Source§

fn try_write_sync_data( &self, _packet: &SyncPacket<'_>, ) -> Result<(), TryError<Self::Error>>

Attempt to write Sync data to the controller. Read more
Source§

fn try_write_iso_data( &self, packet: &IsoPacket<'_>, ) -> Result<(), TryError<Self::Error>>

Attempt to write Iso data to the controller. Read more
Source§

fn try_read<'b>( &self, buf: &'b mut [u8], ) -> Result<ControllerToHostPacket<'b>, TryError<Self::Error>>

Read a valid HCI packet from the controller. Read more
Source§

fn write_acl_data(&self, packet: &AclPacket<'_>) -> Result<(), Self::Error>

Write ACL data to the controller. Blocks until done.
Source§

fn write_sync_data(&self, packet: &SyncPacket<'_>) -> Result<(), Self::Error>

Write Sync data to the controller. Blocks until done.
Source§

fn write_iso_data(&self, packet: &IsoPacket<'_>) -> Result<(), Self::Error>

Write Iso data to the controller. Blocks until done.
Source§

fn read<'b>( &self, buf: &'b mut [u8], ) -> Result<ControllerToHostPacket<'b>, Self::Error>

Read a valid HCI packet from the controller. Blocks until done.
Source§

impl<'a> Controller for SoftdeviceController<'a>

Source§

async fn write_acl_data( &self, packet: &AclPacket<'_>, ) -> Result<(), Self::Error>

Write ACL data to the controller.
Source§

async fn write_sync_data( &self, _packet: &SyncPacket<'_>, ) -> Result<(), Self::Error>

Write Sync data to the controller.
Source§

async fn write_iso_data( &self, packet: &IsoPacket<'_>, ) -> Result<(), Self::Error>

Write Iso data to the controller.
Source§

async fn read<'b>( &self, buf: &'b mut [u8], ) -> Result<ControllerToHostPacket<'b>, Self::Error>

Read a valid HCI packet from the controller.
Source§

impl<'d> ControllerCmdAsync<LeConnUpdate> for SoftdeviceController<'d>

Source§

async fn exec(&self, cmd: &LeConnUpdate) -> Result<(), Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdAsync<LeCreateConn> for SoftdeviceController<'d>

Source§

async fn exec(&self, cmd: &LeCreateConn) -> Result<(), Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdAsync<LeEnableEncryption> for SoftdeviceController<'d>

Source§

async fn exec(&self, cmd: &LeEnableEncryption) -> Result<(), Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdAsync<LeExtCreateConn> for SoftdeviceController<'d>

Source§

async fn exec(&self, cmd: &LeExtCreateConn) -> Result<(), CmdError<Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdAsync<LeExtCreateConnV2> for SoftdeviceController<'d>

Source§

async fn exec(&self, cmd: &LeExtCreateConnV2) -> Result<(), CmdError<Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdAsync<LePeriodicAdvCreateSync> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LePeriodicAdvCreateSync, ) -> Result<(), Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdAsync<LeReadRemoteFeatures> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadRemoteFeatures, ) -> Result<(), Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdAsync<LeReadRemoteTransmitPowerLevel> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadRemoteTransmitPowerLevel, ) -> Result<(), Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdAsync<LeRequestPeerSca> for SoftdeviceController<'d>

Source§

async fn exec(&self, cmd: &LeRequestPeerSca) -> Result<(), Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdAsync<LeSetPhy> for SoftdeviceController<'d>

Source§

async fn exec(&self, cmd: &LeSetPhy) -> Result<(), Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdAsync<ReadRemoteVersionInformation> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ReadRemoteVersionInformation, ) -> Result<(), Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<Disconnect> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &Disconnect, ) -> Result<<Disconnect as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<HostBufferSize> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &HostBufferSize, ) -> Result<<HostBufferSize as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'a, 'd> ControllerCmdSync<HostNumberOfCompletedPackets<'a>> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &HostNumberOfCompletedPackets<'a>, ) -> Result<<HostNumberOfCompletedPackets<'a> as SyncCmd>::Return, CmdError<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeAddDeviceToFilterAcceptList> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeAddDeviceToFilterAcceptList, ) -> Result<<LeAddDeviceToFilterAcceptList as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeAddDeviceToPeriodicAdvList> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeAddDeviceToPeriodicAdvList, ) -> Result<<LeAddDeviceToPeriodicAdvList as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeAddDeviceToResolvingList> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeAddDeviceToResolvingList, ) -> Result<<LeAddDeviceToResolvingList as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeClearAdvSets> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeClearAdvSets, ) -> Result<<LeClearAdvSets as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeClearFilterAcceptList> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeClearFilterAcceptList, ) -> Result<<LeClearFilterAcceptList as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeClearPeriodicAdvList> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeClearPeriodicAdvList, ) -> Result<<LeClearPeriodicAdvList as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeClearResolvingList> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeClearResolvingList, ) -> Result<<LeClearResolvingList as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeConnCteResponseEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeConnCteResponseEnable, ) -> Result<<LeConnCteResponseEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeCreateConnCancel> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeCreateConnCancel, ) -> Result<<LeCreateConnCancel as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeEncrypt> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeEncrypt, ) -> Result<<LeEncrypt as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeEnhancedReadTransmitPowerLevel> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeEnhancedReadTransmitPowerLevel, ) -> Result<<LeEnhancedReadTransmitPowerLevel as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeLongTermKeyRequestNegativeReply> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeLongTermKeyRequestNegativeReply, ) -> Result<<LeLongTermKeyRequestNegativeReply as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeLongTermKeyRequestReply> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeLongTermKeyRequestReply, ) -> Result<<LeLongTermKeyRequestReply as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LePeriodicAdvCreateSyncCancel> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LePeriodicAdvCreateSyncCancel, ) -> Result<<LePeriodicAdvCreateSyncCancel as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LePeriodicAdvSetInfoTransfer> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LePeriodicAdvSetInfoTransfer, ) -> Result<<LePeriodicAdvSetInfoTransfer as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LePeriodicAdvSyncTransfer> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LePeriodicAdvSyncTransfer, ) -> Result<<LePeriodicAdvSyncTransfer as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LePeriodicAdvTerminateSync> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LePeriodicAdvTerminateSync, ) -> Result<<LePeriodicAdvTerminateSync as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeRand> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeRand, ) -> Result<<LeRand as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadAdvPhysicalChannelTxPower> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadAdvPhysicalChannelTxPower, ) -> Result<<LeReadAdvPhysicalChannelTxPower as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadAntennaInformation> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadAntennaInformation, ) -> Result<<LeReadAntennaInformation as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadBufferSize> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadBufferSize, ) -> Result<<LeReadBufferSize as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadChannelMap> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadChannelMap, ) -> Result<<LeReadChannelMap as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadFilterAcceptListSize> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadFilterAcceptListSize, ) -> Result<<LeReadFilterAcceptListSize as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadLocalSupportedFeatures> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadLocalSupportedFeatures, ) -> Result<<LeReadLocalSupportedFeatures as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadMaxAdvDataLength> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadMaxAdvDataLength, ) -> Result<<LeReadMaxAdvDataLength as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadMaxDataLength> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadMaxDataLength, ) -> Result<<LeReadMaxDataLength as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadNumberOfSupportedAdvSets> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadNumberOfSupportedAdvSets, ) -> Result<<LeReadNumberOfSupportedAdvSets as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadPeriodicAdvListSize> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadPeriodicAdvListSize, ) -> Result<<LeReadPeriodicAdvListSize as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadPhy> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadPhy, ) -> Result<<LeReadPhy as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadResolvingListSize> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadResolvingListSize, ) -> Result<<LeReadResolvingListSize as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadRfPathCompensation> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadRfPathCompensation, ) -> Result<<LeReadRfPathCompensation as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadSuggestedDefaultDataLength> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadSuggestedDefaultDataLength, ) -> Result<<LeReadSuggestedDefaultDataLength as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadSupportedStates> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadSupportedStates, ) -> Result<<LeReadSupportedStates as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeReadTransmitPower> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeReadTransmitPower, ) -> Result<<LeReadTransmitPower as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeRemoveAdvSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeRemoveAdvSet, ) -> Result<<LeRemoveAdvSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeRemoveDeviceFromFilterAcceptList> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeRemoveDeviceFromFilterAcceptList, ) -> Result<<LeRemoveDeviceFromFilterAcceptList as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeRemoveDeviceFromPeriodicAdvList> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeRemoveDeviceFromPeriodicAdvList, ) -> Result<<LeRemoveDeviceFromPeriodicAdvList as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeRemoveDeviceFromResolvingList> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeRemoveDeviceFromResolvingList, ) -> Result<<LeRemoveDeviceFromResolvingList as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetAddrResolutionEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetAddrResolutionEnable, ) -> Result<<LeSetAddrResolutionEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetAdvData> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetAdvData, ) -> Result<<LeSetAdvData as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetAdvEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetAdvEnable, ) -> Result<<LeSetAdvEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetAdvParams> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetAdvParams, ) -> Result<<LeSetAdvParams as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetAdvSetRandomAddr> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetAdvSetRandomAddr, ) -> Result<<LeSetAdvSetRandomAddr as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'a, 'd> ControllerCmdSync<LeSetConnCteTransmitParams<'a>> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetConnCteTransmitParams<'a>, ) -> Result<ConnHandle, CmdError<Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetConnectionlessCteTransmitEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetConnectionlessCteTransmitEnable, ) -> Result<<LeSetConnectionlessCteTransmitEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'a, 'd> ControllerCmdSync<LeSetConnectionlessCteTransmitParams<'a>> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetConnectionlessCteTransmitParams<'a>, ) -> Result<(), CmdError<Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetDataLength> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetDataLength, ) -> Result<<LeSetDataLength as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetDataRelatedAddrChanges> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetDataRelatedAddrChanges, ) -> Result<<LeSetDataRelatedAddrChanges as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetDefaultPeriodicAdvSyncTransferParams> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetDefaultPeriodicAdvSyncTransferParams, ) -> Result<<LeSetDefaultPeriodicAdvSyncTransferParams as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetDefaultPhy> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetDefaultPhy, ) -> Result<<LeSetDefaultPhy as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetEventMask> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetEventMask, ) -> Result<<LeSetEventMask as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'a, 'd> ControllerCmdSync<LeSetExtAdvData<'a>> for SoftdeviceController<'d>

Source§

async fn exec(&self, cmd: &LeSetExtAdvData<'a>) -> Result<(), CmdError<Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'a, 'd> ControllerCmdSync<LeSetExtAdvEnable<'a>> for SoftdeviceController<'d>

Source§

async fn exec(&self, cmd: &LeSetExtAdvEnable<'a>) -> Result<(), CmdError<Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetExtAdvParams> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetExtAdvParams, ) -> Result<<LeSetExtAdvParams as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetExtAdvParamsV2> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetExtAdvParamsV2, ) -> Result<<LeSetExtAdvParamsV2 as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetExtScanEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetExtScanEnable, ) -> Result<<LeSetExtScanEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetExtScanParams> for SoftdeviceController<'d>

Source§

async fn exec(&self, cmd: &LeSetExtScanParams) -> Result<(), CmdError<Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'a, 'd> ControllerCmdSync<LeSetExtScanResponseData<'a>> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetExtScanResponseData<'a>, ) -> Result<(), CmdError<Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetHostChannelClassification> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetHostChannelClassification, ) -> Result<<LeSetHostChannelClassification as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetHostFeature> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetHostFeature, ) -> Result<<LeSetHostFeature as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetHostFeatureV2> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetHostFeatureV2, ) -> Result<<LeSetHostFeatureV2 as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetPathLossReportingEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetPathLossReportingEnable, ) -> Result<<LeSetPathLossReportingEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetPathLossReportingParams> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetPathLossReportingParams, ) -> Result<<LeSetPathLossReportingParams as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'a, 'd> ControllerCmdSync<LeSetPeriodicAdvData<'a>> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetPeriodicAdvData<'a>, ) -> Result<(), CmdError<Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetPeriodicAdvEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetPeriodicAdvEnable, ) -> Result<<LeSetPeriodicAdvEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetPeriodicAdvParams> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetPeriodicAdvParams, ) -> Result<<LeSetPeriodicAdvParams as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetPeriodicAdvParamsV2> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetPeriodicAdvParamsV2, ) -> Result<<LeSetPeriodicAdvParamsV2 as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetPeriodicAdvReceiveEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetPeriodicAdvReceiveEnable, ) -> Result<<LeSetPeriodicAdvReceiveEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'a, 'd> ControllerCmdSync<LeSetPeriodicAdvResponseData<'a>> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetPeriodicAdvResponseData<'a>, ) -> Result<SyncHandle, CmdError<Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'a, 'd> ControllerCmdSync<LeSetPeriodicAdvSubeventData<'a>> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetPeriodicAdvSubeventData<'a>, ) -> Result<AdvHandle, CmdError<Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetPeriodicAdvSyncTransferParams> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetPeriodicAdvSyncTransferParams, ) -> Result<<LeSetPeriodicAdvSyncTransferParams as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'a, 'd> ControllerCmdSync<LeSetPeriodicSyncSubevent<'a>> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetPeriodicSyncSubevent<'a>, ) -> Result<SyncHandle, CmdError<Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetPrivacyMode> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetPrivacyMode, ) -> Result<<LeSetPrivacyMode as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetRandomAddr> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetRandomAddr, ) -> Result<<LeSetRandomAddr as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetResolvablePrivateAddrTimeout> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetResolvablePrivateAddrTimeout, ) -> Result<<LeSetResolvablePrivateAddrTimeout as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetScanEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetScanEnable, ) -> Result<<LeSetScanEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetScanParams> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetScanParams, ) -> Result<<LeSetScanParams as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetScanResponseData> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetScanResponseData, ) -> Result<<LeSetScanResponseData as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeSetTransmitPowerReportingEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeSetTransmitPowerReportingEnable, ) -> Result<<LeSetTransmitPowerReportingEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeTestEnd> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeTestEnd, ) -> Result<<LeTestEnd as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeWriteRfPathCompensation> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeWriteRfPathCompensation, ) -> Result<<LeWriteRfPathCompensation as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<LeWriteSuggestedDefaultDataLength> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &LeWriteSuggestedDefaultDataLength, ) -> Result<<LeWriteSuggestedDefaultDataLength as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicAllowParallelConnectionEstablishments> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicAllowParallelConnectionEstablishments, ) -> Result<<NordicAllowParallelConnectionEstablishments as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicBigReservedTimeSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicBigReservedTimeSet, ) -> Result<<NordicBigReservedTimeSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicCentralAclEventSpacingSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicCentralAclEventSpacingSet, ) -> Result<<NordicCentralAclEventSpacingSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicCigReservedTimeSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicCigReservedTimeSet, ) -> Result<<NordicCigReservedTimeSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicCisSubeventLengthSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicCisSubeventLengthSet, ) -> Result<<NordicCisSubeventLengthSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicCompatModeWindowOffsetSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicCompatModeWindowOffsetSet, ) -> Result<<NordicCompatModeWindowOffsetSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicConnAnchorPointUpdateEventReportEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicConnAnchorPointUpdateEventReportEnable, ) -> Result<<NordicConnAnchorPointUpdateEventReportEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicConnEventExtend> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicConnEventExtend, ) -> Result<<NordicConnEventExtend as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicConnUpdate> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicConnUpdate, ) -> Result<<NordicConnUpdate as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicEventLengthSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicEventLengthSet, ) -> Result<<NordicEventLengthSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicGetNextConnEventCounter> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicGetNextConnEventCounter, ) -> Result<<NordicGetNextConnEventCounter as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicIsoReadTxTimestamp> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicIsoReadTxTimestamp, ) -> Result<<NordicIsoReadTxTimestamp as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicLlpmModeSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicLlpmModeSet, ) -> Result<<NordicLlpmModeSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicMinValOfMaxAclTxPayloadSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicMinValOfMaxAclTxPayloadSet, ) -> Result<<NordicMinValOfMaxAclTxPayloadSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicPeriodicAdvEventLengthSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicPeriodicAdvEventLengthSet, ) -> Result<<NordicPeriodicAdvEventLengthSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicPeripheralLatencyModeSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicPeripheralLatencyModeSet, ) -> Result<<NordicPeripheralLatencyModeSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicQosChannelSurveyEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicQosChannelSurveyEnable, ) -> Result<<NordicQosChannelSurveyEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicQosConnEventReportEnable> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicQosConnEventReportEnable, ) -> Result<<NordicQosConnEventReportEnable as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicReadAverageRssi> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicReadAverageRssi, ) -> Result<<NordicReadAverageRssi as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicScanAcceptExtAdvPacketsSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicScanAcceptExtAdvPacketsSet, ) -> Result<<NordicScanAcceptExtAdvPacketsSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicScanChannelMapSet> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicScanChannelMapSet, ) -> Result<<NordicScanChannelMapSet as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicSetAdvRandomness> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicSetAdvRandomness, ) -> Result<<NordicSetAdvRandomness as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicSetEventStartTask> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicSetEventStartTask, ) -> Result<<NordicSetEventStartTask as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicSetPowerControlRequestParams> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicSetPowerControlRequestParams, ) -> Result<<NordicSetPowerControlRequestParams as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicSetRolePriority> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicSetRolePriority, ) -> Result<<NordicSetRolePriority as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<NordicWriteRemoteTxPower> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &NordicWriteRemoteTxPower, ) -> Result<<NordicWriteRemoteTxPower as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ReadAuthenticatedPayloadTimeout> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ReadAuthenticatedPayloadTimeout, ) -> Result<<ReadAuthenticatedPayloadTimeout as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ReadBdAddr> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ReadBdAddr, ) -> Result<<ReadBdAddr as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ReadLocalSupportedCmds> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ReadLocalSupportedCmds, ) -> Result<<ReadLocalSupportedCmds as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ReadLocalSupportedFeatures> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ReadLocalSupportedFeatures, ) -> Result<<ReadLocalSupportedFeatures as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ReadLocalVersionInformation> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ReadLocalVersionInformation, ) -> Result<<ReadLocalVersionInformation as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ReadRssi> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ReadRssi, ) -> Result<<ReadRssi as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ReadTransmitPowerLevel> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ReadTransmitPowerLevel, ) -> Result<<ReadTransmitPowerLevel as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<Reset> for SoftdeviceController<'d>

Source§

async fn exec( &self, _cmd: &Reset, ) -> Result<<Reset as SyncCmd>::Return, CmdError<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<SetControllerToHostFlowControl> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &SetControllerToHostFlowControl, ) -> Result<<SetControllerToHostFlowControl as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<SetEventMask> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &SetEventMask, ) -> Result<<SetEventMask as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<SetEventMaskPage2> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &SetEventMaskPage2, ) -> Result<<SetEventMaskPage2 as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<WriteAuthenticatedPayloadTimeout> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &WriteAuthenticatedPayloadTimeout, ) -> Result<<WriteAuthenticatedPayloadTimeout as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ZephyrReadChipTemp> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ZephyrReadChipTemp, ) -> Result<<ZephyrReadChipTemp as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ZephyrReadKeyHierarchyRoots> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ZephyrReadKeyHierarchyRoots, ) -> Result<<ZephyrReadKeyHierarchyRoots as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ZephyrReadStaticAddrs> for SoftdeviceController<'d>

Source§

async fn exec( &self, _cmd: &ZephyrReadStaticAddrs, ) -> Result<<ZephyrReadStaticAddrs as SyncCmd>::Return, CmdError<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ZephyrReadSupportedCommands> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ZephyrReadSupportedCommands, ) -> Result<<ZephyrReadSupportedCommands as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ZephyrReadTxPower> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ZephyrReadTxPower, ) -> Result<<ZephyrReadTxPower as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ZephyrReadVersionInfo> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ZephyrReadVersionInfo, ) -> Result<<ZephyrReadVersionInfo as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ZephyrWriteBdAddr> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ZephyrWriteBdAddr, ) -> Result<<ZephyrWriteBdAddr as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl<'d> ControllerCmdSync<ZephyrWriteTxPower> for SoftdeviceController<'d>

Source§

async fn exec( &self, cmd: &ZephyrWriteTxPower, ) -> Result<<ZephyrWriteTxPower as SyncCmd>::Return, Error<Self::Error>>

Note: Some implementations may require Controller::read() to be polled for this to return.
Source§

impl Drop for SoftdeviceController<'_>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl ErrorType for SoftdeviceController<'_>

Source§

type Error = Error

Error type of all the IO operations on this type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Az for T

Source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

Source§

fn cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> CheckedAs for T

Source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

Source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<Src, Dst> LosslessTryInto<Dst> for Src
where Dst: LosslessTryFrom<Src>,

Source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
Source§

impl<Src, Dst> LossyInto<Dst> for Src
where Dst: LossyFrom<Src>,

Source§

fn lossy_into(self) -> Dst

Performs the conversion.
Source§

impl<T> OverflowingAs for T

Source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

Source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> SaturatingAs for T

Source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

Source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> UnwrappedAs for T

Source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

Source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> WrappingAs for T

Source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

Source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.