mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-31 04:39:49 +08:00
192aa9abd7
ADD: smartcard functionality (big thanks to Chris Nocker!)
17 lines
No EOL
406 B
C
17 lines
No EOL
406 B
C
#ifndef __SMARTCARD_H
|
|
#define __SMARTCARD_H
|
|
|
|
#include "usb_cdc.h"
|
|
#include "proxmark3.h"
|
|
#include "apps.h"
|
|
#include "ticks.h"
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
|
|
extern void Dbprintf(const char *fmt, ...);
|
|
|
|
void SmartCard_setup(void);
|
|
void SmartCard_stop(void);
|
|
bool SmartCard_init();
|
|
|
|
void SMART_CARD_ServiceSmartCard( void );
|
|
void SmartCard_print_status(void);
|
|
#endif |