ot::Spinel::Encoder::WriteVPacked() method
Encodes and writes a set of variables to the current input frame using a given spinel packing format string. Before using this method `BeginFrame()` must be called to start and prepare a new input frame. Otherwise, this method does nothing and returns error status `OT_ERROR_INVALID_STATE`. If no buffer space is available, this method will discard and clear the current input frame and return the error status `OT_ERROR_NO_BUFS`. Note that the encoded buffer should fit in `kPackFormatBufferSize` bytes.
Arguments
aPackFormat
A string giving the spinel packing format.
aArgs
Variable arguments corresponding to the types given in @p aPackFormat (see `spinel_datatype_pack()`).
Return value
OT_ERROR_NONE Successfully added given data to the frame. OT_ERROR_NO_BUFS Insufficient buffer space available to add the byte. OT_ERROR_INVALID_STATE `BeginFrame()` has not been called earlier to start the frame.