Hello,
I have been following the guide from bishop fox to build the rfid strealer,(http://www.bishopfox.com/resources/tools/rfid-hacking/attack-tools/)
I have successfully got the hardware working and I am now trying to upload to the code to the arduino nano.
I am having compilation errors with the initialisation of the SD card. I have tried on the newest IDE, and also the version bishop fox use, which is 1.0.1. I have imported the library- http://sdfatlib.googlecode.com/files/sdfatlib20111205.zip
I have commented out the SDVolume as it is deprecated according to the IDE.
The errors I get after that are as follows:
Tastic_RFID_Arduino_Code.cpp: In function ‘void setup()’:
Tastic_RFID_Arduino_Code:220: error: no matching function for call to ‘SdFat::init(const uint8_t&, const uint8_t&)’
/home/john/arduino-1.0.1/libraries/SdFat/utility/FatVolume.h:216: note: candidates are: bool FatVolume::init()
/home/john/arduino-1.0.1/libraries/SdFat/utility/FatVolume.h:229: note: bool FatVolume::init(uint8_t)
Tastic_RFID_Arduino_Code:226: error: no matching function for call to ‘SdFat::init(const uint8_t&, const uint8_t&)’
/home/john/arduino-1.0.1/libraries/SdFat/utility/FatVolume.h:216: note: candidates are: bool FatVolume::init()
/home/john/arduino-1.0.1/libraries/SdFat/utility/FatVolume.h:229: note: bool FatVolume::init(uint8_t)
Has anybody managed to get this code working?