X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/d8af608f8e4e6dc520045bac69e8e9dac6de7d42..99136c6eefdc8f1bba10ece22572e471b6deebb1:/armsrc/iso14443b.h diff --git a/armsrc/iso14443b.h b/armsrc/iso14443b.h index f90c54f3..8fc705d4 100644 --- a/armsrc/iso14443b.h +++ b/armsrc/iso14443b.h @@ -7,15 +7,47 @@ // at your option, any later version. See the LICENSE.txt file for the text of // the license. //----------------------------------------------------------------------------- -// Routines to support ISO 14443 type A. +// Routines to support ISO 14443 type B. //----------------------------------------------------------------------------- #ifndef __ISO14443B_H #define __ISO14443B_H -#include "common.h" -int iso14443b_apdu(uint8_t const *message, size_t message_length, uint8_t *response); +#ifdef __cplusplus +extern "C" { +#endif + +#include "proxmark3.h" +#include "common.h" // access to global variable: MF_DBGLEVEL +#include "apps.h" +#include "util.h" +#include "string.h" +#include "iso14443crc.h" +#include "mifare.h" +#include "protocols.h" + +extern void AppendCrc14443b(uint8_t *data, int len); +void SendRawCommand14443B_Ex(UsbCommand *c); void iso14443b_setup(); -int iso14443b_select_card(); +uint8_t iso14443b_apdu(uint8_t const *message, size_t message_length, uint8_t *response); +uint8_t iso14443b_select_card(iso14b_card_select_t* card); +uint8_t iso14443b_select_card_srx(iso14b_card_select_t* card); + +// testfunctions +void WaitForFpgaDelayQueueIsEmpty( uint16_t delay ); +void ClearFpgaShiftingRegisters(void); + +// States for 14B SIM command +#define SIM_NOFIELD 0 +#define SIM_IDLE 1 +#define SIM_HALTED 2 +#define SIM_SELECTING 3 +#define SIM_HALTING 4 +#define SIM_ACKNOWLEDGE 5 +#define SIM_WORK 6 + +#ifdef __cplusplus +} +#endif #endif /* __ISO14443B_H */