deleted function msb2lsb

This commit is contained in:
tharexde 2020-06-18 13:53:25 +02:00
parent 9393ecc823
commit 171bf6912b

View file

@ -59,19 +59,6 @@ int usage_lf_em4x50_write_password(void) {
return PM3_SUCCESS;
}
/*
static uint8_t msb2lsb(uint8_t byte) {
// convert given byte (msb) into lsb format
uint8_t tmp = 0;
for (int i = 0; i < 8; i++)
tmp |= ((byte >> (7-i)) & 1) << i;
return tmp;
}
*/
static bool check_bit_in_byte(uint8_t pos, uint8_t byte) {
// return true if bit at position <pos> is "1"