mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 09:32:41 +08:00
3ee13c9ba6
Check if memory allocation fails Fix memory leak Initialize struct in declaration Add/Fix some notes Remove unlikely() in favor of readability Remove a hard-coded magic number
55 lines
2 KiB
C
55 lines
2 KiB
C
//-----------------------------------------------------------------------------
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// See LICENSE.txt for the text of the license.
|
|
//-----------------------------------------------------------------------------
|
|
// at91sam7s USB CDC device implementation
|
|
// based on the "Basic USB Example" from ATMEL (doc6123.pdf)
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _USB_CDC_H_
|
|
#define _USB_CDC_H_
|
|
|
|
#include "common.h"
|
|
#include "at91sam7s512.h"
|
|
|
|
#define AT91C_USB_EP_CONTROL_SIZE 8
|
|
#define AT91C_USB_EP_OUT_SIZE 64
|
|
#define AT91C_USB_EP_IN_SIZE 64
|
|
|
|
void usb_disable(void);
|
|
void usb_enable(void);
|
|
bool usb_check(void);
|
|
bool usb_poll(void);
|
|
uint16_t usb_available_length(void);
|
|
bool usb_poll_validate_length(void);
|
|
uint32_t usb_read(uint8_t *data, size_t len);
|
|
int usb_write(const uint8_t *data, const size_t len);
|
|
int async_usb_write_start(void);
|
|
void async_usb_write_pushByte(uint8_t data);
|
|
bool async_usb_write_requestWrite(void);
|
|
int async_usb_write_stop(void);
|
|
uint32_t usb_read_ng(uint8_t *data, size_t len);
|
|
void usb_update_serial(uint64_t newSerialNumber);
|
|
|
|
void SetUSBreconnect(int value);
|
|
int GetUSBreconnect(void);
|
|
void SetUSBconfigured(int value);
|
|
int GetUSBconfigured(void);
|
|
|
|
void AT91F_USB_SendData(AT91PS_UDP pudp, const char *pData, uint32_t length);
|
|
void AT91F_USB_SendZlp(AT91PS_UDP pudp);
|
|
void AT91F_USB_SendStall(AT91PS_UDP pudp);
|
|
void AT91F_CDC_Enumerate(void);
|
|
|
|
#endif // _USB_CDC_H_
|