textual
[RRG-proxmark3.git] / client / src / cmdlfnedap.h
blob58e90954f453820de894a7722bad325213ba72be
1 //-----------------------------------------------------------------------------
2 //
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
5 // the license.
6 //-----------------------------------------------------------------------------
7 // Low frequency NEDAP tag commands
8 //-----------------------------------------------------------------------------
9 #ifndef CMDLFNEDAP_H__
10 #define CMDLFNEDAP_H__
12 #include "common.h"
14 int CmdLFNedap(const char *Cmd);
16 int demodNedap(bool verbose);
17 int detectNedap(uint8_t *dest, size_t *size);
18 int getNedapBits(uint32_t cn, uint8_t *nedapBits);
20 #endif