removed bit_stuff from adidas so v1.1
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
#include "decode.h"
|
||||
#include "bit_stuff.h"
|
||||
|
||||
uint8_t decode_combine_nibbles(uint8_t high, uint8_t low){
|
||||
uint8_t byte;
|
||||
@@ -7,7 +6,7 @@ uint8_t decode_combine_nibbles(uint8_t high, uint8_t low){
|
||||
uint8_t low_nibble;
|
||||
decode_byte(high,&high_nibble);
|
||||
decode_byte(low,&low_nibble);
|
||||
combine_nibles_to_byte(high_nibble, low_nibble, &byte);
|
||||
byte = (high_nibble << 4) | (low_nibble);
|
||||
return byte;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user