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,6 +1,5 @@
#include "encode.h"
#include "parity.h"
#include "bit_stuff.h"
#include <stdbool.h>
#include <stdint.h>
#include <stddef.h>
@@ -10,7 +9,8 @@ void encode_get_nibbles(uint8_t value, uint8_t* high, uint8_t* low) {
return;
}
// Just extract the nibbles without encoding them
extract_nibbles_from_byte(value, high, low);
*high = (value >> 4) & 0xF;
*low = value & 0xF;
}
uint8_t encode_nibble(uint8_t nibble) {