mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-16 21:28:33 +03:00
File simtrace_iso7816.c is like a library for iso specific functions. The next step will be to use the atmel softlib functions instead.
16 lines
359 B
C
16 lines
359 B
C
#ifndef SIMTRACE_H
|
|
#define SIMTRACE_H
|
|
|
|
// FIXME: static function definitions
|
|
extern uint32_t _ISO7816_GetChar( uint8_t *pCharToReceive );
|
|
extern uint32_t _ISO7816_SendChar( uint8_t CharToSend );
|
|
extern void Phone_Master_Init( void );
|
|
|
|
extern void Sniffer_Init( void );
|
|
|
|
extern void SIMtrace_USB_Initialize( void );
|
|
|
|
extern void _ISO7816_Init( void );
|
|
|
|
#endif
|