mirror of
https://github.com/nfc-tools/libnfc.git
synced 2026-02-26 11:46:37 +00:00
Revert 1c67c3f92a
Fixes issue 244 errorlibnfc.driver.acr122_usbToo small reply
This commit is contained in:
@@ -517,7 +517,13 @@ uint32_t htole32(uint32_t u32);
|
||||
uint32_t
|
||||
htole32(uint32_t u32)
|
||||
{
|
||||
return (((u32 & 0xff) << 24) + ((u32 & 0xff00) << 8) + ((u32 & 0xff0000) >> 8) + (u32 >> 24));
|
||||
uint8_t u8[4];
|
||||
for (int i = 0; i < 4; i++) {
|
||||
u8[i] = (u32 & 0xff);
|
||||
u32 >>= 8;
|
||||
}
|
||||
uint32_t *pu32 = (uint32_t *)u8;
|
||||
return *pu32;
|
||||
}
|
||||
|
||||
static int
|
||||
|
||||
Reference in New Issue
Block a user