mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
added support for HID SAM picopass communications. Nasty array copying but does the trick. Will need refactoring.
This commit is contained in:
parent
14a0e0bc72
commit
efac735bad
10 changed files with 665 additions and 16 deletions
|
@ -62,7 +62,9 @@
|
|||
#include "crc16.h"
|
||||
#include "protocols.h"
|
||||
#include "mifareutil.h"
|
||||
|
||||
#include "sam_picopass.h"
|
||||
#include "sam_seos.h"
|
||||
#include "sam_mfc.h"
|
||||
|
||||
#ifdef WITH_LCD
|
||||
#include "LCD_disabled.h"
|
||||
|
@ -2038,6 +2040,21 @@ static void PacketReceived(PacketCommandNG *packet) {
|
|||
fwdata = NULL;
|
||||
break;
|
||||
}
|
||||
|
||||
case CMD_HF_SAM_PICOPASS: {
|
||||
sam_picopass_get_pacs();
|
||||
break;
|
||||
}
|
||||
case CMD_HF_SAM_SEOS: {
|
||||
// sam_seos_get_pacs();
|
||||
break;
|
||||
}
|
||||
|
||||
case CMD_HF_SAM_MFC: {
|
||||
// sam_mfc_get_pacs();
|
||||
break;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef WITH_FPC_USART
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue