Lets say I have this byte
uint8_t k[8]= {0,0,0,1,1,1,0,0};
Is there a way to get this to become a single integer or hex?
|
Lets say I have this byte
Is there a way to get this to become a single integer or hex? |
|||||||||||||||
|
|
If
The direction of the loop depends on the order in which the bytes of the original If the bytes represent individual bits, shift by one rather than eight. |
|||
|
|
|
This should do the trick:
|
||||
|
|