Skip to main content
added 2 characters in body
Source Link

Just cast the pointer.

float conAck = *((float*)(bufferBytes + 9));

Just cast the pointer.

float conAck = *((float*)bufferBytes + 9);

Just cast the pointer.

float conAck = *((float*)(bufferBytes + 9));
Source Link

Just cast the pointer.

float conAck = *((float*)bufferBytes + 9);