]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/util.c
CHG: enhanced the debug output for some LF demod/decode
[proxmark3-svn] / client / util.c
index a6ba8e81d16622d951f0e15a7684fdfa4f5ac9a9..0d24ac8ee32ae44dfe93cf4245274185ee580e57 100644 (file)
@@ -12,9 +12,6 @@
 #define MAX_BIN_BREAK_LENGTH   (3072+384+1)
 
 #ifndef _WIN32
-#include <termios.h>
-#include <sys/ioctl.h> 
-
 int ukbhit(void) {
   int cnt = 0;
   int error;
@@ -38,7 +35,6 @@ int ukbhit(void) {
 }
 
 #else
-#include <conio.h>
 int ukbhit(void) {
        return kbhit();
 }
@@ -189,7 +185,7 @@ char *sprint_hex_ascii(const uint8_t *data, const size_t len) {
 
 void num_to_bytes(uint64_t n, size_t len, uint8_t* dest) {
        while (len--) {
-               dest[len] = (uint8_t) n;
+               dest[len] = n & 0xFF;
                n >>= 8;
        }
 }
Impressum, Datenschutz