GetNcpInstance()
Returns the pointer to the single NCP instance.
InstanceToIid()
Returns an IID for the given instance Returned IID is an integer value that must be shifted by SPINEL_HEADER_IID_SHIFT before putting into spinel header. If multipan interface is not enabled or build is not for RCP IID=0 is returned. If nullptr is passed it matches broadcast IID in current implementation. Broadcast IID is also returned in case no match was found.
IidToInstance()
Returns an OT instance for the given IID Returns an OpenThread instance object associated to the given IID. If multipan interface is not enabled or build is not for RCP returned value is the same instance object regardless of the aIid parameter In current implementation nullptr is returned for broadcast IID and values exceeding the instances count but lower than kSpinelInterfaceCount.
GetCurCommandIid() const
This method returns the IID of the current spinel command.
StreamWrite()
Sends data to host via specific stream.
Log()
Send an OpenThread log message to host via `SPINEL_PROP_STREAM_LOG` property.
IncrementFrameErrorCounter()
Is called by the framer whenever a framing error is detected.
HandleReceive()
Called by the subclass to indicate when a frame has been received.
ShouldWakeHost()
Called by the subclass to learn when the host wake operation must be issued.
ShouldDeferHostSend()
Called by the subclass to learn when the transfer to the host should be deferred.
InfraIfHasAddress()
Check if the infrastructure interface has an IPv6 address.
InfraIfSendIcmp6Nd()
Send a ICMP6 ND message through the Infrastructure interface on the host.
HandleCommand()
AreHandlerEntriesSorted()
FindPropertyHandler()
FindGetPropertyHandler()
FindSetPropertyHandler()
FindInsertPropertyHandler()
FindRemovePropertyHandler()
HandlePropertySetForSpecialProperties()
HandleCommandPropertySet()
HandleCommandPropertyInsertRemove()
WriteLastStatusFrame()
WritePropertyValueIsFrame()
WritePropertyValueInsertedRemovedFrame()
SendQueuedResponses()
IsResponseQueueEmpty() const
EnqueueResponse()
PrepareGetResponse()
PrepareSetResponse()
PrepareLastStatusResponse()
GetWrappedResponseQueueIndex()
UpdateChangedProps()
UpdateChangedProps()
HandleFrameRemovedFromNcpBuffer()
HandleFrameRemovedFromNcpBuffer()
EncodeChannelMask()
DecodeChannelMask()
PackRadioFrame()
LinkRawReceiveDone()
LinkRawReceiveDone()
LinkRawTransmitDone()
LinkRawTransmitDone()
LinkRawEnergyScanDone()
LinkRawEnergyScanDone()
GetNcpBaseIid()
CommandHandler_NOOP()
CommandHandler_RESET()
CommandHandler_PROP_VALUE_update()
HandlePropertyGet()
HandlePropertySet()
HandlePropertyInsert()
HandlePropertyRemove()
HandlePropertySet_SPINEL_PROP_HOST_POWER_STATE()
DecodeStreamRawTxRequest()
HandlePropertySet_SPINEL_PROP_STREAM_RAW()
ResetCounters()
ConvertLogLevel()
ConvertLogRegion()
VendorCommandHandler()
Defines a vendor "command handler" hook to process vendor-specific spinel commands.
VendorHandleFrameRemovedFromNcpBuffer()
Is a callback which mirrors `NcpBase::HandleFrameRemovedFromNcpBuffer()`. It is called when a spinel frame is sent and removed from NCP buffer. (a) This can be used to track and verify that a vendor spinel frame response is delivered to the host (tracking the frame using its tag). (b) It indicates that NCP buffer space is now available (since a spinel frame is removed). This can be used to implement mechanisms to re-send a failed/pending response or an async spinel frame.
VendorGetPropertyHandler()
Defines a vendor "get property handler" hook to process vendor spinel properties. The vendor handler should return `OT_ERROR_NOT_FOUND` status if it does not support "get" operation for the given property key. Otherwise, the vendor handler should behave like other property get handlers, i.e., it should retrieve the property value and then encode and write the value into the NCP buffer. If the "get" operation itself fails, handler should write a `LAST_STATUS` with the error status into the NCP buffer.
VendorSetPropertyHandler()
Defines a vendor "set property handler" hook to process vendor spinel properties. The vendor handler should return `OT_ERROR_NOT_FOUND` status if it does not support "set" operation for the given property key. Otherwise, the vendor handler should behave like other property set handlers, i.e., it should first decode the value from the input spinel frame and then perform the corresponding set operation. The handler should not prepare the spinel response and therefore should not write anything to the NCP buffer. The `otError` returned from handler (other than `OT_ERROR_NOT_FOUND`) indicates the error in either parsing of the input or the error of the set operation. In case of a successful "set", `NcpBase` set command handler will call the `VendorGetPropertyHandler()` for the same property key to prepare the response.
ThreadDetachGracefullyHandler()
ThreadDetachGracefullyHandler()
DatasetSendMgmtPendingSetHandler()
DatasetSendMgmtPendingSetHandler()
ThreadErrorToSpinelStatus()
LinkFlagsToFlagByte()