mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
27 lines
824 B
C
27 lines
824 B
C
|
//-----------------------------------------------------------------------------
|
||
|
// (c) 2016 Iceman
|
||
|
//
|
||
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
||
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
||
|
// the license.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// LEGIC type prototyping
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef _LEGIC_H_
|
||
|
#define _LEGIC_H_
|
||
|
|
||
|
#include "common.h"
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// LEGIC
|
||
|
//-----------------------------------------------------------------------------
|
||
|
typedef struct {
|
||
|
uint8_t uid[4];
|
||
|
uint32_t tagtype;
|
||
|
uint8_t cmdsize;
|
||
|
uint16_t cardsize;
|
||
|
} legic_card_select_t;
|
||
|
|
||
|
#endif // _LEGIC_H_
|