]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdlfjablotron.h
1 //-----------------------------------------------------------------------------
3 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
4 // at your option, any later version. See the LICENSE.txt file for the text of
6 //-----------------------------------------------------------------------------
7 // Low frequency T55xx commands
8 //-----------------------------------------------------------------------------
9 #ifndef CMDLFJABLOTRON_H__
10 #define CMDLFJABLOTRON_H__
13 #include "proxmark3.h"
17 #include "cmdparser.h"
21 #include "protocols.h" // for T55xx config register definitions
22 #include "lfdemod.h" // parityTest
23 int CmdLFJablotron(const char *Cmd
);
24 int CmdJablotronClone(const char *Cmd
);
25 int CmdJablotronSim(const char *Cmd
);
26 int CmdJablotronRead(const char *Cmd
);
27 int CmdJablotronDemod(const char *Cmd
);
29 int getJablotronBits(uint64_t fullcode
, uint8_t *bits
);
31 int usage_lf_jablotron_clone(void);
32 int usage_lf_jablotron_sim(void);
33 int usage_lf_jablotron_read(void);
34 int usage_lf_jablotron_demod(void);