]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/comms.h
Merge pull request #909 from pwpiwi/fix_button_break
[proxmark3-svn] / client / comms.h
index 616f7ddbdddf15e1eb2d5f2740cf9f33a6cbd22a..65294695bf500a95a2ec2602ccb1b6585adf472e 100644 (file)
 #define CMD_BUFFER_SIZE 50
 #endif
 
-typedef struct {
-       // If TRUE, continue running the uart_receiver thread
-       bool run;
-
-       // Lock around serial port receives
-       pthread_mutex_t recv_lock;
-} receiver_arg;
-
-
 void SetOffline(bool new_offline);
 bool IsOffline();
 
-bool OpenProxmark(char *portname, bool waitCOMPort, int timeout);
+bool OpenProxmark(void *port, bool wait_for_port, int timeout, bool flash_mode);
 void CloseProxmark(void);
 
 void SendCommand(UsbCommand *c);
 
-void *uart_receiver(void *targ);
 void clearCommandBuffer();
 bool WaitForResponseTimeoutW(uint32_t cmd, UsbCommand* response, size_t ms_timeout, bool show_warning);
 bool WaitForResponseTimeout(uint32_t cmd, UsbCommand* response, size_t ms_timeout);
 bool WaitForResponse(uint32_t cmd, UsbCommand* response);
+bool GetFromBigBuf(uint8_t *dest, int bytes, int start_index, UsbCommand *response, size_t ms_timeout, bool show_warning);
+bool GetFromFpgaRAM(uint8_t *dest, int bytes);
 
 #endif // COMMS_H_
Impressum, Datenschutz