removed bit_stuff from adidas so v1.1

This commit is contained in:
Rens Pastoor
2025-06-05 16:46:09 +02:00
parent 34ebc83b3e
commit 44025963ed
8 changed files with 15 additions and 80 deletions

View File

@@ -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;
}