]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - client/comms.h
Merge pull request #969 from pwpiwi/gcc10_fixes
[proxmark3-svn] / client / comms.h
... / ...
CommitLineData
1//-----------------------------------------------------------------------------
2// Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
3// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4//
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
7// the license.
8//-----------------------------------------------------------------------------
9// Code for communicating with the proxmark3 hardware.
10//-----------------------------------------------------------------------------
11
12#ifndef COMMS_H__
13#define COMMS_H__
14
15#include <stddef.h>
16#include <stdint.h>
17#include <stdbool.h>
18#include "usb_cmd.h"
19
20extern void SetOffline(bool new_offline);
21extern bool IsOffline();
22extern bool OpenProxmark(void *port, bool wait_for_port, int timeout);
23extern void CloseProxmark(void);
24extern void SendCommand(UsbCommand *c);
25extern void clearCommandBuffer();
26extern bool WaitForResponseTimeoutW(uint32_t cmd, UsbCommand* response, size_t ms_timeout, bool show_warning);
27extern bool WaitForResponseTimeout(uint32_t cmd, UsbCommand* response, size_t ms_timeout);
28extern bool WaitForResponse(uint32_t cmd, UsbCommand* response);
29extern bool GetFromBigBuf(uint8_t *dest, int bytes, int start_index, UsbCommand *response, size_t ms_timeout, bool show_warning);
30extern bool GetFromFpgaRAM(uint8_t *dest, int bytes);
31
32#endif // COMMS_H__
Impressum, Datenschutz