[][src]Function hid_io::protocol::hidio::continued_packet

pub fn continued_packet(
    packet_data: &mut Vec<u8>
) -> Result<bool, HIDIOParseError>

Determines whether there are following continued packets

Arguments

Remarks

Uses a packet byte stream to determine cont field.

struct HIDIO_Packet {
   ... (3 bits)
   uint8_t           cont:1;      // 0 - Only packet, 1 continued packet following
   ...
};