25 #define ADK_VID 0x18D1
26 #define ADK_PID 0x2D00
27 #define ADB_PID 0x2D01
29 #define XOOM //enables repeating getProto() and getConf() attempts
35 #define ADK_GETPROTO 51 //check USB accessory protocol version
36 #define ADK_SENDSTR 52 //send identifying string
37 #define ADK_ACCSTART 53 //start device in accessory mode
39 #define bmREQ_ADK_GET USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_VENDOR|USB_SETUP_RECIPIENT_DEVICE
40 #define bmREQ_ADK_SEND USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_VENDOR|USB_SETUP_RECIPIENT_DEVICE
42 #define ACCESSORY_STRING_MANUFACTURER 0
43 #define ACCESSORY_STRING_MODEL 1
44 #define ACCESSORY_STRING_DESCRIPTION 2
45 #define ACCESSORY_STRING_VERSION 3
46 #define ACCESSORY_STRING_URI 4
47 #define ACCESSORY_STRING_SERIAL 5
49 #define ADK_MAX_ENDPOINTS 3 //endpoint 0, bulk_IN, bulk_OUT
56 const char* manufacturer;
58 const char* description;
64 uint8_t getProto(uint8_t* adkproto);
65 uint8_t sendStr(uint8_t index,
const char* str);
66 uint8_t switchAcc(
void);
86 ADK(
USB *pUsb,
const char* manufacturer,
88 const char* description,
94 uint8_t
RcvData(uint16_t *nbytesptr, uint8_t *dataptr);
95 uint8_t
SndData(uint16_t nbytes, uint8_t *dataptr);
100 uint8_t
Init(uint8_t parent, uint8_t port,
bool lowspeed);
115 virtual bool VIDPIDOK(uint16_t vid, uint16_t pid) {
126 inline uint8_t ADK::getProto(uint8_t* adkproto) {
127 return (
pUsb->
ctrlReq(
bAddress, 0,
bmREQ_ADK_GET,
ADK_GETPROTO, 0, 0, 0, 2, 2, adkproto, NULL));
131 inline uint8_t ADK::sendStr(uint8_t index,
const char* str) {
132 return (
pUsb->
ctrlReq(
bAddress, 0,
bmREQ_ADK_SEND,
ADK_SENDSTR, 0, 0, index, strlen(str) + 1, strlen(str) + 1, (uint8_t*)str, NULL));
136 inline uint8_t ADK::switchAcc(
void) {
137 return (
pUsb->
ctrlReq(
bAddress, 0,
bmREQ_ADK_SEND,
ADK_ACCSTART, 0, 0, 0, 0, 0, NULL, NULL));
static const uint8_t epDataInIndex
uint8_t RcvData(uint16_t *nbytesptr, uint8_t *dataptr)
uint8_t SndData(uint16_t nbytes, uint8_t *dataptr)
void EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *ep)
uint8_t ConfigureDevice(uint8_t parent, uint8_t port, bool lowspeed)
static const uint8_t epDataOutIndex
uint8_t ctrlReq(uint8_t addr, uint8_t ep, uint8_t bmReqType, uint8_t bRequest, uint8_t wValLo, uint8_t wValHi, uint16_t wInd, uint16_t total, uint16_t nbytes, uint8_t *dataptr, USBReadParser *p)
virtual uint8_t GetAddress()
ADK(USB *pUsb, const char *manufacturer, const char *model, const char *description, const char *version, const char *uri, const char *serial)
EpInfo epInfo[ADK_MAX_ENDPOINTS]
#define ADK_MAX_ENDPOINTS
void PrintEndpointDescriptor(const USB_ENDPOINT_DESCRIPTOR *ep_ptr)
virtual bool VIDPIDOK(uint16_t vid, uint16_t pid)
uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed)