I want to reverse the packing of the following code:
struct.pack("<"+"I"*elements, *self.buf[:elements])
I know "<" means little endian and "I" is unsigned int. How can I use struct.unpack to reverse the packing?
I want to reverse the packing of the following code:
struct.pack("<"+"I"*elements, *self.buf[:elements])
I know "<" means little endian and "I" is unsigned int. How can I use struct.unpack to reverse the packing?