X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/bd20f8f47847787e1f3e933043933272908c5beb..f397b5cc874ac7d658173199d92c30f3f717a300:/armsrc/apps.h diff --git a/armsrc/apps.h b/armsrc/apps.h index 2245ecb8..322f2674 100644 --- a/armsrc/apps.h +++ b/armsrc/apps.h @@ -1,6 +1,6 @@ //----------------------------------------------------------------------------- // Jonathan Westhues, Aug 2005 -// Gerhard de Koning Gans, April 2008 +// Gerhard de Koning Gans, April 2008, May 2011 // // 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 @@ -20,6 +20,10 @@ typedef unsigned char byte_t; // maybe processed in some way. uint32_t BigBuf[8000]; +// This may be used (sparingly) to declare a function to be copied to +// and executed from RAM +#define RAMFUNC __attribute((long_call, section(".ramfunc"))) + /// appmain.h void ReadMem(int addr); void __attribute__((noreturn)) AppMain(void); @@ -27,6 +31,7 @@ void SamyRun(void); //void DbpIntegers(int a, int b, int c); void DbpString(char *str); void Dbprintf(const char *fmt, ...); +void Dbhexdump(int len, uint8_t *d); void ToSendStuffBit(int b); void ToSendReset(void); @@ -97,15 +102,28 @@ void ReadSTMemoryIso14443(uint32_t parameter,uint32_t dwLast); void SnoopIso14443(void); /// iso14443a.h -void SnoopIso14443a(void); +void RAMFUNC SnoopIso14443a(void); void SimulateIso14443aTag(int tagType, int TagUid); // ## simulate iso14443a tag -void ReaderIso14443a(uint32_t parameter); +void ReaderIso14443a(UsbCommand * c, UsbCommand * ack); void ReaderMifare(uint32_t parameter); +void MifareReadBlock(uint8_t arg0, uint8_t arg1, uint8_t arg2, uint8_t *data); +void MifareReadSector(uint8_t arg0, uint8_t arg1, uint8_t arg2, uint8_t *datain); +void MifareWriteBlock(uint8_t arg0, uint8_t arg1, uint8_t arg2, uint8_t *datain); +void MifareNested(uint32_t arg0, uint32_t arg1, uint32_t arg2, uint8_t *datain); +void MifareChkKeys(uint8_t arg0, uint8_t arg1, uint8_t arg2, uint8_t *datain); +void Mifare1ksim(uint8_t arg0, uint8_t arg1, uint8_t arg2, uint8_t *datain); /// iso15693.h +void RecordRawAdcSamplesIso15693(void); void AcquireRawAdcSamplesIso15693(void); void ReaderIso15693(uint32_t parameter); // Simulate an ISO15693 reader - greg void SimTagIso15693(uint32_t parameter); // simulate an ISO15693 tag - greg +void BruteforceIso15693Afi(uint32_t speed); // find an AFI of a tag - atrox +void DirectTag15693Command(uint32_t datalen,uint32_t speed, uint32_t recv, uint8_t data[]); // send arbitrary commands from CLI - atrox +void SetDebugIso15693(uint32_t flag); + +/// iclass.h +void RAMFUNC SnoopIClass(void); /// util.h