pub const SPINEL_CMD_PROP_VALUE_INSERTED: _bindgen_ty_22 = 7;
Expand description
Property value insertion notification command (NCP -> Host)
Encoding:iD
i
: Property Id
D
: Value (encoding depends on the property)
This command can be sent by the NCP in response to the
CMD_PROP_VALUE_INSERT
command, or it can be sent by the NCP in an
unsolicited fashion to notify the host of various state changes
asynchronously.
The payload for this command is the property identifier encoded in the packed unsigned integer format, followed by the value that was inserted into the given property.
If the type signature of the property specified by property id consists
of a single structure enclosed by an array (A(t(...))
), then the
contents of value MUST contain the contents of the structure (...
)
rather than the serialization of the whole item (t(...)
). Specifically,
the length of the structure MUST NOT be prepended to VALUE
. This
helps to eliminate redundant data.
The resulting order of items in the list is defined by the given property.