]>
git.zerfleddert.de Git - proxmark3-svn/blob - client/comms.h
c35c4f254ae1ee9393f93c184c5dd8fcd9671a77
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
3 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
5 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
6 // at your option, any later version. See the LICENSE.txt file for the text of
8 //-----------------------------------------------------------------------------
9 // Code for communicating with the proxmark3 hardware.
10 //-----------------------------------------------------------------------------
18 extern void SetOffline(bool new_offline
);
19 extern bool IsOffline();
20 extern bool OpenProxmark(void *port
, bool wait_for_port
, int timeout
, bool flash_mode
);
21 extern void CloseProxmark(void);
22 extern void SendCommand(UsbCommand
*c
);
23 extern void clearCommandBuffer();
24 extern bool WaitForResponseTimeoutW(uint32_t cmd
, UsbCommand
* response
, size_t ms_timeout
, bool show_warning
);
25 extern bool WaitForResponseTimeout(uint32_t cmd
, UsbCommand
* response
, size_t ms_timeout
);
26 extern bool WaitForResponse(uint32_t cmd
, UsbCommand
* response
);
27 extern bool GetFromBigBuf(uint8_t *dest
, int bytes
, int start_index
, UsbCommand
*response
, size_t ms_timeout
, bool show_warning
);
28 extern bool GetFromFpgaRAM(uint8_t *dest
, int bytes
);