finished adidas v1.0
This commit is contained in:
@@ -5,9 +5,9 @@ uint8_t decode_combine_nibbles(uint8_t high, uint8_t low){
|
||||
uint8_t byte;
|
||||
uint8_t high_nibble;
|
||||
uint8_t low_nibble;
|
||||
decode_byte(high,high_nibble);
|
||||
decode_byte(low,low_nibble);
|
||||
combine_nibles_to_byte(high_nibble, low_nibble, byte);
|
||||
decode_byte(high,&high_nibble);
|
||||
decode_byte(low,&low_nibble);
|
||||
combine_nibles_to_byte(high_nibble, low_nibble, &byte);
|
||||
return byte;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user