fix little endian vs big endian in the macros... again... but this time correct
[RRG-proxmark3.git] / client / src / cmdlfhitag.h
blob817cb16f37c682033bcb02927838635708d9a353
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2012 Roel Verdult
3 // 2017 iceman
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
6 // the license.
7 //-----------------------------------------------------------------------------
8 // Low frequency Hitag support
9 //-----------------------------------------------------------------------------
11 #ifndef CMDLFHITAG_H__
12 #define CMDLFHITAG_H__
14 #include "common.h"
16 int CmdLFHitag(const char *Cmd);
18 int readHitagUid(void);
19 void annotateHitag1(char *exp, size_t size, uint8_t *cmd, uint8_t cmdsize, bool is_response);
20 void annotateHitag2(char *exp, size_t size, uint8_t *cmd, uint8_t cmdsize, bool is_response);
21 void annotateHitagS(char *exp, size_t size, uint8_t *cmd, uint8_t cmdsize, bool is_response);
22 #endif