mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Removed all source files
This commit is contained in:
parent
6caac1319b
commit
d23163ccea
95 changed files with 0 additions and 24044 deletions
261
BTD.h
261
BTD.h
|
@ -1,261 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _btd_h_
|
|
||||||
#define _btd_h_
|
|
||||||
|
|
||||||
#include "Usb.h"
|
|
||||||
#include "confdescparser.h"
|
|
||||||
|
|
||||||
//PID and VID of the Sony PS3 devices
|
|
||||||
#define PS3_VID 0x054C // Sony Corporation
|
|
||||||
#define PS3_PID 0x0268 // PS3 Controller DualShock 3
|
|
||||||
#define PS3NAVIGATION_PID 0x042F // Navigation controller
|
|
||||||
#define PS3MOVE_PID 0x03D5 // Motion controller
|
|
||||||
|
|
||||||
/* Bluetooth dongle data taken from descriptors */
|
|
||||||
#define BULK_MAXPKTSIZE 64 // max size for ACL data
|
|
||||||
|
|
||||||
// Used in control endpoint header for HCI Commands
|
|
||||||
#define bmREQ_HCI_OUT USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_DEVICE
|
|
||||||
// Used in control endpoint header for HID Commands
|
|
||||||
#define bmREQ_HID_OUT USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
|
|
||||||
#define HID_REQUEST_SET_REPORT 0x09
|
|
||||||
|
|
||||||
/* Bluetooth HCI states for hci_task() */
|
|
||||||
#define HCI_INIT_STATE 0
|
|
||||||
#define HCI_RESET_STATE 1
|
|
||||||
#define HCI_BDADDR_STATE 2
|
|
||||||
#define HCI_LOCAL_VERSION_STATE 3
|
|
||||||
#define HCI_SET_NAME_STATE 4
|
|
||||||
#define HCI_CHECK_WII_SERVICE 5
|
|
||||||
|
|
||||||
#define HCI_INQUIRY_STATE 6 // These three states are only used if it should pair and connect to a Wii controller
|
|
||||||
#define HCI_CONNECT_WII_STATE 7
|
|
||||||
#define HCI_CONNECTED_WII_STATE 8
|
|
||||||
|
|
||||||
#define HCI_SCANNING_STATE 9
|
|
||||||
#define HCI_CONNECT_IN_STATE 10
|
|
||||||
#define HCI_REMOTE_NAME_STATE 11
|
|
||||||
#define HCI_CONNECTED_STATE 12
|
|
||||||
#define HCI_DISABLE_SCAN_STATE 13
|
|
||||||
#define HCI_DONE_STATE 14
|
|
||||||
#define HCI_DISCONNECT_STATE 15
|
|
||||||
|
|
||||||
/* HCI event flags*/
|
|
||||||
#define HCI_FLAG_CMD_COMPLETE 0x01
|
|
||||||
#define HCI_FLAG_CONN_COMPLETE 0x02
|
|
||||||
#define HCI_FLAG_DISCONN_COMPLETE 0x04
|
|
||||||
#define HCI_FLAG_REMOTE_NAME_COMPLETE 0x08
|
|
||||||
#define HCI_FLAG_INCOMING_REQUEST 0x10
|
|
||||||
#define HCI_FLAG_READ_BDADDR 0x20
|
|
||||||
#define HCI_FLAG_READ_VERSION 0x40
|
|
||||||
#define HCI_FLAG_WII_FOUND 0x80
|
|
||||||
#define HCI_FLAG_CONNECT_EVENT 0x100
|
|
||||||
|
|
||||||
/*Macros for HCI event flag tests */
|
|
||||||
#define hci_cmd_complete (hci_event_flag & HCI_FLAG_CMD_COMPLETE)
|
|
||||||
#define hci_connect_complete (hci_event_flag & HCI_FLAG_CONN_COMPLETE)
|
|
||||||
#define hci_disconnect_complete (hci_event_flag & HCI_FLAG_DISCONN_COMPLETE)
|
|
||||||
#define hci_remote_name_complete (hci_event_flag & HCI_FLAG_REMOTE_NAME_COMPLETE)
|
|
||||||
#define hci_incoming_connect_request (hci_event_flag & HCI_FLAG_INCOMING_REQUEST)
|
|
||||||
#define hci_read_bdaddr_complete (hci_event_flag & HCI_FLAG_READ_BDADDR)
|
|
||||||
#define hci_read_version_complete (hci_event_flag & HCI_FLAG_READ_VERSION)
|
|
||||||
#define hci_wii_found (hci_event_flag & HCI_FLAG_WII_FOUND)
|
|
||||||
#define hci_connect_event (hci_event_flag & HCI_FLAG_CONNECT_EVENT)
|
|
||||||
|
|
||||||
/* HCI Events managed */
|
|
||||||
#define EV_INQUIRY_COMPLETE 0x01
|
|
||||||
#define EV_INQUIRY_RESULT 0x02
|
|
||||||
#define EV_CONNECT_COMPLETE 0x03
|
|
||||||
#define EV_INCOMING_CONNECT 0x04
|
|
||||||
#define EV_DISCONNECT_COMPLETE 0x05
|
|
||||||
#define EV_AUTHENTICATION_COMPLETE 0x06
|
|
||||||
#define EV_REMOTE_NAME_COMPLETE 0x07
|
|
||||||
#define EV_ENCRYPTION_CHANGE 0x08
|
|
||||||
#define EV_CHANGE_CONNECTION_LINK 0x09
|
|
||||||
#define EV_ROLE_CHANGED 0x12
|
|
||||||
#define EV_NUM_COMPLETE_PKT 0x13
|
|
||||||
#define EV_PIN_CODE_REQUEST 0x16
|
|
||||||
#define EV_LINK_KEY_REQUEST 0x17
|
|
||||||
#define EV_LINK_KEY_NOTIFICATION 0x18
|
|
||||||
#define EV_DATA_BUFFER_OVERFLOW 0x1A
|
|
||||||
#define EV_MAX_SLOTS_CHANGE 0x1B
|
|
||||||
#define EV_READ_REMOTE_VERSION_INFORMATION_COMPLETE 0x0C
|
|
||||||
#define EV_QOS_SETUP_COMPLETE 0x0D
|
|
||||||
#define EV_COMMAND_COMPLETE 0x0E
|
|
||||||
#define EV_COMMAND_STATUS 0x0F
|
|
||||||
#define EV_LOOPBACK_COMMAND 0x19
|
|
||||||
#define EV_PAGE_SCAN_REP_MODE 0x20
|
|
||||||
|
|
||||||
/* L2CAP signaling commands */
|
|
||||||
#define L2CAP_CMD_COMMAND_REJECT 0x01
|
|
||||||
#define L2CAP_CMD_CONNECTION_REQUEST 0x02
|
|
||||||
#define L2CAP_CMD_CONNECTION_RESPONSE 0x03
|
|
||||||
#define L2CAP_CMD_CONFIG_REQUEST 0x04
|
|
||||||
#define L2CAP_CMD_CONFIG_RESPONSE 0x05
|
|
||||||
#define L2CAP_CMD_DISCONNECT_REQUEST 0x06
|
|
||||||
#define L2CAP_CMD_DISCONNECT_RESPONSE 0x07
|
|
||||||
#define L2CAP_CMD_INFORMATION_REQUEST 0x0A
|
|
||||||
#define L2CAP_CMD_INFORMATION_RESPONSE 0x0B
|
|
||||||
|
|
||||||
// Used For Connection Response - Remember to Include High Byte
|
|
||||||
#define PENDING 0x01
|
|
||||||
#define SUCCESSFUL 0x00
|
|
||||||
|
|
||||||
/* Bluetooth L2CAP PSM - see http://www.bluetooth.org/Technical/AssignedNumbers/logical_link.htm */
|
|
||||||
#define SDP_PSM 0x01 // Service Discovery Protocol PSM Value
|
|
||||||
#define RFCOMM_PSM 0x03 // RFCOMM PSM Value
|
|
||||||
#define HID_CTRL_PSM 0x11 // HID_Control PSM Value
|
|
||||||
#define HID_INTR_PSM 0x13 // HID_Interrupt PSM Value
|
|
||||||
|
|
||||||
// Used to determine if it is a Bluetooth dongle
|
|
||||||
#define WI_SUBCLASS_RF 0x01 // RF Controller
|
|
||||||
#define WI_PROTOCOL_BT 0x01 // Bluetooth Programming Interface
|
|
||||||
|
|
||||||
#define BTD_MAX_ENDPOINTS 4
|
|
||||||
#define BTD_NUMSERVICES 4 // Max number of Bluetooth services
|
|
||||||
|
|
||||||
class BluetoothService { // All services should include this class
|
|
||||||
public:
|
|
||||||
virtual void ACLData(uint8_t* ACLData); // Used to pass acldata to the services
|
|
||||||
virtual void Run(); // Used to run the different state machines
|
|
||||||
virtual void Reset(); // Used to reset the services
|
|
||||||
virtual void disconnect(); // Used to disconnect both the L2CAP Channel and the HCI Connection
|
|
||||||
};
|
|
||||||
|
|
||||||
class BTD : public USBDeviceConfig, public UsbConfigXtracter {
|
|
||||||
public:
|
|
||||||
BTD(USB *p); // Constructor
|
|
||||||
|
|
||||||
// USBDeviceConfig implementation
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
virtual uint8_t Release();
|
|
||||||
virtual uint8_t Poll();
|
|
||||||
virtual uint8_t GetAddress() { return bAddress; };
|
|
||||||
virtual bool isReady() { return bPollEnable; };
|
|
||||||
|
|
||||||
// UsbConfigXtracter implementation, used to extract endpoint information
|
|
||||||
virtual void EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *ep);
|
|
||||||
|
|
||||||
bool watingForConnection; // Use this to see if it is waiting for a incoming connection
|
|
||||||
void disconnect() { // Used this void to disconnect all services
|
|
||||||
for (uint8_t i=0; i<BTD_NUMSERVICES; i++)
|
|
||||||
if (btService[i])
|
|
||||||
btService[i]->disconnect(); // Disconnect both the L2CAP Channel and the HCI Connection
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Register bluetooth dongle members/services */
|
|
||||||
int8_t registerServiceClass(BluetoothService *pService) {
|
|
||||||
for (uint8_t i=0; i<BTD_NUMSERVICES; i++) {
|
|
||||||
if (!btService[i]) {
|
|
||||||
btService[i] = pService;
|
|
||||||
return i; // Return ID
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return -1; // ErrorregisterServiceClass
|
|
||||||
};
|
|
||||||
|
|
||||||
bool l2capConnectionClaimed; // This is used by the service to know when to store the device information
|
|
||||||
|
|
||||||
const char* btdName; // These are set by the SPP library
|
|
||||||
const char* btdPin;
|
|
||||||
|
|
||||||
uint8_t my_bdaddr[6]; // The bluetooth dongles Bluetooth address
|
|
||||||
uint16_t hci_handle; // HCI handle for the last connection
|
|
||||||
uint8_t disc_bdaddr[6]; // Last incoming devices Bluetooth address
|
|
||||||
uint8_t remote_name[30]; // First 30 chars of last remote name
|
|
||||||
uint8_t hci_version;
|
|
||||||
|
|
||||||
bool connectToWii; // Used to only send the ACL data to the wiimote
|
|
||||||
bool incomingWii;
|
|
||||||
bool pairWithWii;
|
|
||||||
bool motionPlusInside; // True if it's the new Wiimote with the Motion Plus Inside
|
|
||||||
|
|
||||||
/* HCI Commands */
|
|
||||||
void HCI_Command(uint8_t* data, uint16_t nbytes);
|
|
||||||
void hci_reset();
|
|
||||||
void hci_read_bdaddr();
|
|
||||||
void hci_read_local_version_information();
|
|
||||||
void hci_set_local_name(const char* name);
|
|
||||||
void hci_write_scan_enable();
|
|
||||||
void hci_remote_name();
|
|
||||||
void hci_accept_connection();
|
|
||||||
void hci_write_scan_disable();
|
|
||||||
void hci_disconnect(uint16_t handle);
|
|
||||||
void hci_pin_code_request_reply();
|
|
||||||
void hci_pin_code_negative_request_reply();
|
|
||||||
void hci_link_key_request_negative_reply();
|
|
||||||
void hci_authentication_request();
|
|
||||||
void hci_inquiry();
|
|
||||||
void hci_inquiry_cancel();
|
|
||||||
void hci_connect();
|
|
||||||
|
|
||||||
/* L2CAP Commands */
|
|
||||||
void L2CAP_Command(uint16_t handle, uint8_t* data, uint8_t nbytes, uint8_t channelLow = 0x01, uint8_t channelHigh = 0x00); // Standard L2CAP header: Channel ID (0x01) for ACL-U
|
|
||||||
void l2cap_connection_request(uint16_t handle, uint8_t rxid, uint8_t* scid, uint16_t psm);
|
|
||||||
void l2cap_connection_response(uint16_t handle, uint8_t rxid, uint8_t* dcid, uint8_t* scid, uint8_t result);
|
|
||||||
void l2cap_config_request(uint16_t handle, uint8_t rxid, uint8_t* dcid);
|
|
||||||
void l2cap_config_response(uint16_t handle, uint8_t rxid, uint8_t* scid);
|
|
||||||
void l2cap_disconnection_request(uint16_t handle, uint8_t rxid, uint8_t* dcid, uint8_t* scid);
|
|
||||||
void l2cap_disconnection_response(uint16_t handle, uint8_t rxid, uint8_t* dcid, uint8_t* scid);
|
|
||||||
void l2cap_information_response(uint16_t handle, uint8_t rxid, uint8_t infoTypeLow, uint8_t infoTypeHigh);
|
|
||||||
|
|
||||||
protected:
|
|
||||||
/* Mandatory USB members */
|
|
||||||
USB *pUsb;
|
|
||||||
uint8_t bAddress; // Device address
|
|
||||||
EpInfo epInfo[BTD_MAX_ENDPOINTS]; // Endpoint info structure
|
|
||||||
|
|
||||||
uint8_t bConfNum; // Configuration number
|
|
||||||
uint8_t bNumEP; // Total number of endpoints in the configuration
|
|
||||||
uint32_t qNextPollTime; // Next poll time
|
|
||||||
|
|
||||||
#define BTD_CONTROL_PIPE 0 // Bluetooth dongles control endpoint
|
|
||||||
static const uint8_t BTD_EVENT_PIPE; // HCI event endpoint index
|
|
||||||
static const uint8_t BTD_DATAIN_PIPE; // ACL In endpoint index
|
|
||||||
static const uint8_t BTD_DATAOUT_PIPE; // ACL Out endpoint index
|
|
||||||
|
|
||||||
void PrintEndpointDescriptor(const USB_ENDPOINT_DESCRIPTOR* ep_ptr);
|
|
||||||
|
|
||||||
private:
|
|
||||||
BluetoothService* btService[BTD_NUMSERVICES];
|
|
||||||
|
|
||||||
bool bPollEnable;
|
|
||||||
uint8_t pollInterval;
|
|
||||||
|
|
||||||
/* variables used by high level HCI task */
|
|
||||||
uint8_t hci_state; //current state of bluetooth hci connection
|
|
||||||
uint16_t hci_counter; // counter used for bluetooth hci reset loops
|
|
||||||
uint8_t hci_num_reset_loops; // this value indicate how many times it should read before trying to reset
|
|
||||||
uint16_t hci_event_flag; // hci flags of received bluetooth events
|
|
||||||
uint8_t inquiry_counter;
|
|
||||||
|
|
||||||
uint8_t hcibuf[BULK_MAXPKTSIZE];//General purpose buffer for hci data
|
|
||||||
uint8_t l2capinbuf[BULK_MAXPKTSIZE];//General purpose buffer for l2cap in data
|
|
||||||
uint8_t l2capoutbuf[BULK_MAXPKTSIZE];//General purpose buffer for l2cap out data
|
|
||||||
|
|
||||||
/* State machines */
|
|
||||||
void HCI_event_task(); // Poll the HCI event pipe
|
|
||||||
void HCI_task(); // HCI state machine
|
|
||||||
void ACL_event_task(); // ACL input pipe
|
|
||||||
|
|
||||||
/* Used to set the Bluetooth Address internally to the PS3 Controllers */
|
|
||||||
void setBdaddr(uint8_t* BDADDR);
|
|
||||||
void setMoveBdaddr(uint8_t* BDADDR);
|
|
||||||
};
|
|
||||||
#endif
|
|
655
PS3BT.cpp
655
PS3BT.cpp
|
@ -1,655 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "PS3BT.h"
|
|
||||||
#define DEBUG // Uncomment to print data for debugging
|
|
||||||
//#define EXTRADEBUG // Uncomment to get even more debugging data
|
|
||||||
//#define PRINTREPORT // Uncomment to print the report send by the PS3 Controllers
|
|
||||||
|
|
||||||
const uint8_t OUTPUT_REPORT_BUFFER[] PROGMEM = {
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
|
||||||
0xff, 0x27, 0x10, 0x00, 0x32,
|
|
||||||
0xff, 0x27, 0x10, 0x00, 0x32,
|
|
||||||
0xff, 0x27, 0x10, 0x00, 0x32,
|
|
||||||
0xff, 0x27, 0x10, 0x00, 0x32,
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
|
||||||
};
|
|
||||||
|
|
||||||
PS3BT::PS3BT(BTD *p, uint8_t btadr5, uint8_t btadr4, uint8_t btadr3, uint8_t btadr2, uint8_t btadr1, uint8_t btadr0):
|
|
||||||
pBtd(p) // pointer to USB class instance - mandatory
|
|
||||||
{
|
|
||||||
if (pBtd)
|
|
||||||
pBtd->registerServiceClass(this); // Register it as a Bluetooth service
|
|
||||||
|
|
||||||
pBtd->my_bdaddr[5] = btadr5; // Change to your dongle's Bluetooth address instead
|
|
||||||
pBtd->my_bdaddr[4] = btadr4;
|
|
||||||
pBtd->my_bdaddr[3] = btadr3;
|
|
||||||
pBtd->my_bdaddr[2] = btadr2;
|
|
||||||
pBtd->my_bdaddr[1] = btadr1;
|
|
||||||
pBtd->my_bdaddr[0] = btadr0;
|
|
||||||
|
|
||||||
HIDBuffer[0] = 0x52;// HID BT Set_report (0x50) | Report Type (Output 0x02)
|
|
||||||
HIDBuffer[1] = 0x01;// Report ID
|
|
||||||
|
|
||||||
//Needed for PS3 Move Controller commands to work via bluetooth
|
|
||||||
HIDMoveBuffer[0] = 0xA2;// HID BT DATA_request (0xA0) | Report Type (Output 0x02)
|
|
||||||
HIDMoveBuffer[1] = 0x02;// Report ID
|
|
||||||
|
|
||||||
/* Set device cid for the control and intterrupt channelse - LSB */
|
|
||||||
control_dcid[0] = 0x40;//0x0040
|
|
||||||
control_dcid[1] = 0x00;
|
|
||||||
interrupt_dcid[0] = 0x41;//0x0041
|
|
||||||
interrupt_dcid[1] = 0x00;
|
|
||||||
|
|
||||||
Reset();
|
|
||||||
}
|
|
||||||
bool PS3BT::getButtonPress(Button b) {
|
|
||||||
return (ButtonState & (uint32_t)b);
|
|
||||||
}
|
|
||||||
bool PS3BT::getButtonClick(Button b) {
|
|
||||||
bool click = (ButtonClickState & (uint32_t)b);
|
|
||||||
ButtonClickState &= ~((uint32_t)b); // clear "click" event
|
|
||||||
return click;
|
|
||||||
}
|
|
||||||
uint8_t PS3BT::getAnalogButton(AnalogButton a) {
|
|
||||||
if (l2capinbuf == NULL)
|
|
||||||
return 0;
|
|
||||||
return (uint8_t)(l2capinbuf[(uint16_t)a]);
|
|
||||||
}
|
|
||||||
uint8_t PS3BT::getAnalogHat(AnalogHat a) {
|
|
||||||
if (l2capinbuf == NULL)
|
|
||||||
return 0;
|
|
||||||
return (uint8_t)(l2capinbuf[(uint16_t)a]);
|
|
||||||
}
|
|
||||||
int16_t PS3BT::getSensor(Sensor a) {
|
|
||||||
if (l2capinbuf == NULL)
|
|
||||||
return 0;
|
|
||||||
if(PS3Connected) {
|
|
||||||
if (a == aX || a == aY || a == aZ || a == gZ)
|
|
||||||
return ((l2capinbuf[(uint16_t)a] << 8) | l2capinbuf[(uint16_t)a + 1]);
|
|
||||||
else
|
|
||||||
return 0;
|
|
||||||
} else if(PS3MoveConnected) {
|
|
||||||
if (a == mXmove || a == mYmove) // These are all 12-bits long
|
|
||||||
return (((l2capinbuf[(uint16_t)a] & 0x0F) << 8) | (l2capinbuf[(uint16_t)a + 1]));
|
|
||||||
else if (a == mZmove || a == tempMove) // The tempearature is also 12 bits long
|
|
||||||
return ((l2capinbuf[(uint16_t)a] << 4) | ((l2capinbuf[(uint16_t)a + 1] & 0xF0) >> 4));
|
|
||||||
else // aXmove, aYmove, aZmove, gXmove, gYmove and gZmove
|
|
||||||
return (l2capinbuf[(uint16_t)a] | (l2capinbuf[(uint16_t)a + 1] << 8));
|
|
||||||
} else
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
double PS3BT::getAngle(Angle a) {
|
|
||||||
double accXval;
|
|
||||||
double accYval;
|
|
||||||
double accZval;
|
|
||||||
|
|
||||||
if(PS3Connected) {
|
|
||||||
// Data for the Kionix KXPC4 used in the DualShock 3
|
|
||||||
const double zeroG = 511.5; // 1.65/3.3*1023 (1,65V)
|
|
||||||
accXval = -((double)getSensor(aX)-zeroG);
|
|
||||||
accYval = -((double)getSensor(aY)-zeroG);
|
|
||||||
accZval = -((double)getSensor(aZ)-zeroG);
|
|
||||||
} else if(PS3MoveConnected) {
|
|
||||||
// It's a Kionix KXSC4 inside the Motion controller
|
|
||||||
const uint16_t zeroG = 0x8000;
|
|
||||||
accXval = -(int16_t)(getSensor(aXmove)-zeroG);
|
|
||||||
accYval = (int16_t)(getSensor(aYmove)-zeroG);
|
|
||||||
accZval = (int16_t)(getSensor(aZmove)-zeroG);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Convert to 360 degrees resolution
|
|
||||||
// atan2 outputs the value of -π to π (radians)
|
|
||||||
// We are then converting it to 0 to 2π and then to degrees
|
|
||||||
if (a == Pitch) {
|
|
||||||
double angle = (atan2(accYval,accZval)+PI)*RAD_TO_DEG;
|
|
||||||
return angle;
|
|
||||||
} else {
|
|
||||||
double angle = (atan2(accXval,accZval)+PI)*RAD_TO_DEG;
|
|
||||||
return angle;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
double PS3BT::get9DOFValues(Sensor a) { // Thanks to Manfred Piendl
|
|
||||||
if(!PS3MoveConnected)
|
|
||||||
return 0;
|
|
||||||
int16_t value = getSensor(a);
|
|
||||||
if (a == mXmove || a == mYmove || a == mZmove) {
|
|
||||||
if (value > 2047)
|
|
||||||
value -= 0x1000;
|
|
||||||
return (double)value/3.2; // unit: muT = 10^(-6) Tesla
|
|
||||||
} else if (a == aXmove || a == aYmove || a == aZmove) {
|
|
||||||
if (value < 0)
|
|
||||||
value += 0x8000;
|
|
||||||
else
|
|
||||||
value -= 0x8000;
|
|
||||||
return (double)value/442.0; // unit: m/(s^2)
|
|
||||||
} else if (a == gXmove || a == gYmove || a == gZmove) {
|
|
||||||
if (value < 0)
|
|
||||||
value += 0x8000;
|
|
||||||
else
|
|
||||||
value -= 0x8000;
|
|
||||||
if (a == gXmove)
|
|
||||||
return (double)value/11.6; // unit: deg/s
|
|
||||||
else if (a == gYmove)
|
|
||||||
return (double)value/11.2; // unit: deg/s
|
|
||||||
else // gZmove
|
|
||||||
return (double)value/9.6; // unit: deg/s
|
|
||||||
} else
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
String PS3BT::getTemperature() {
|
|
||||||
if(PS3MoveConnected) {
|
|
||||||
int16_t input = getSensor(tempMove);
|
|
||||||
|
|
||||||
String output = String(input/100);
|
|
||||||
output += ".";
|
|
||||||
if(input%100 < 10)
|
|
||||||
output += "0";
|
|
||||||
output += String(input%100);
|
|
||||||
|
|
||||||
return output;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
bool PS3BT::getStatus(Status c) {
|
|
||||||
if (l2capinbuf == NULL)
|
|
||||||
return false;
|
|
||||||
if (l2capinbuf[(uint16_t)c >> 8] == ((uint8_t)c & 0xff))
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
String PS3BT::getStatusString() {
|
|
||||||
if (PS3Connected || PS3NavigationConnected) {
|
|
||||||
char statusOutput[100];
|
|
||||||
|
|
||||||
strcpy(statusOutput,"ConnectionStatus: ");
|
|
||||||
|
|
||||||
if (getStatus(Plugged)) strcat(statusOutput,"Plugged");
|
|
||||||
else if (getStatus(Unplugged)) strcat(statusOutput,"Unplugged");
|
|
||||||
else strcat(statusOutput,"Error");
|
|
||||||
|
|
||||||
|
|
||||||
strcat(statusOutput," - PowerRating: ");
|
|
||||||
if (getStatus(Charging)) strcat(statusOutput,"Charging");
|
|
||||||
else if (getStatus(NotCharging)) strcat(statusOutput,"Not Charging");
|
|
||||||
else if (getStatus(Shutdown)) strcat(statusOutput,"Shutdown");
|
|
||||||
else if (getStatus(Dying)) strcat(statusOutput,"Dying");
|
|
||||||
else if (getStatus(Low)) strcat(statusOutput,"Low");
|
|
||||||
else if (getStatus(High)) strcat(statusOutput,"High");
|
|
||||||
else if (getStatus(Full)) strcat(statusOutput,"Full");
|
|
||||||
else strcat(statusOutput,"Error");
|
|
||||||
|
|
||||||
strcat(statusOutput," - WirelessStatus: ");
|
|
||||||
|
|
||||||
if (getStatus(CableRumble)) strcat(statusOutput,"Cable - Rumble is on");
|
|
||||||
else if (getStatus(Cable)) strcat(statusOutput,"Cable - Rumble is off");
|
|
||||||
else if (getStatus(BluetoothRumble)) strcat(statusOutput,"Bluetooth - Rumble is on");
|
|
||||||
else if (getStatus(Bluetooth)) strcat(statusOutput,"Bluetooth - Rumble is off");
|
|
||||||
else strcat(statusOutput,"Error");
|
|
||||||
|
|
||||||
return statusOutput;
|
|
||||||
|
|
||||||
}
|
|
||||||
else if(PS3MoveConnected) {
|
|
||||||
char statusOutput[50];
|
|
||||||
|
|
||||||
strcpy(statusOutput,"PowerRating: ");
|
|
||||||
|
|
||||||
if (getStatus(MoveCharging)) strcat(statusOutput,"Charging");
|
|
||||||
else if (getStatus(MoveNotCharging)) strcat(statusOutput,"Not Charging");
|
|
||||||
else if (getStatus(MoveShutdown)) strcat(statusOutput,"Shutdown");
|
|
||||||
else if (getStatus(MoveDying)) strcat(statusOutput,"Dying");
|
|
||||||
else if (getStatus(MoveLow)) strcat(statusOutput,"Low");
|
|
||||||
else if (getStatus(MoveHigh)) strcat(statusOutput,"High");
|
|
||||||
else if (getStatus(MoveFull)) strcat(statusOutput,"Full");
|
|
||||||
else strcat(statusOutput,"Error");
|
|
||||||
|
|
||||||
return statusOutput;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void PS3BT::Reset() {
|
|
||||||
PS3Connected = false;
|
|
||||||
PS3MoveConnected = false;
|
|
||||||
PS3NavigationConnected = false;
|
|
||||||
activeConnection = false;
|
|
||||||
l2cap_event_flag = 0; // Reset flags
|
|
||||||
l2cap_state = L2CAP_WAIT;
|
|
||||||
|
|
||||||
// Needed for PS3 Dualshock Controller commands to work via bluetooth
|
|
||||||
for (uint8_t i = 0; i < OUTPUT_REPORT_BUFFER_SIZE; i++)
|
|
||||||
HIDBuffer[i + 2] = pgm_read_byte(&OUTPUT_REPORT_BUFFER[i]); // First two bytes reserved for report type and ID
|
|
||||||
}
|
|
||||||
|
|
||||||
void PS3BT::disconnect() { // Use this void to disconnect any of the controllers
|
|
||||||
//First the HID interrupt channel has to be disconencted, then the HID control channel and finally the HCI connection
|
|
||||||
pBtd->l2cap_disconnection_request(hci_handle,0x0A, interrupt_scid, interrupt_dcid);
|
|
||||||
Reset();
|
|
||||||
l2cap_state = L2CAP_INTERRUPT_DISCONNECT;
|
|
||||||
}
|
|
||||||
|
|
||||||
void PS3BT::ACLData(uint8_t* ACLData) {
|
|
||||||
if(!pBtd->l2capConnectionClaimed && !PS3Connected && !PS3MoveConnected && !PS3NavigationConnected && !activeConnection && !pBtd->connectToWii && !pBtd->incomingWii && !pBtd->pairWithWii) {
|
|
||||||
if (ACLData[8] == L2CAP_CMD_CONNECTION_REQUEST) {
|
|
||||||
if((ACLData[12] | (ACLData[13] << 8)) == HID_CTRL_PSM) {
|
|
||||||
pBtd->l2capConnectionClaimed = true; // Claim that the incoming connection belongs to this service
|
|
||||||
activeConnection = true;
|
|
||||||
hci_handle = pBtd->hci_handle; // Store the HCI Handle for the connection
|
|
||||||
l2cap_state = L2CAP_WAIT;
|
|
||||||
for(uint8_t i = 0; i < 30; i++)
|
|
||||||
remote_name[i] = pBtd->remote_name[i]; // Store the remote name for the connection
|
|
||||||
#ifdef DEBUG
|
|
||||||
if(pBtd->hci_version < 3) { // Check the HCI Version of the Bluetooth dongle
|
|
||||||
Notify(PSTR("\r\nYour dongle may not support reading the analog buttons, sensors and status\r\nYour HCI Version is: "));
|
|
||||||
Serial.print(pBtd->hci_version);
|
|
||||||
Notify(PSTR("\r\nBut should be at least 3\r\nThis means that it doesn't support Bluetooth Version 2.0+EDR"));
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (((ACLData[0] | (ACLData[1] << 8)) == (hci_handle | 0x2000))) { //acl_handle_ok
|
|
||||||
for(uint8_t i = 0; i < BULK_MAXPKTSIZE; i++)
|
|
||||||
l2capinbuf[i] = ACLData[i];
|
|
||||||
if ((l2capinbuf[6] | (l2capinbuf[7] << 8)) == 0x0001) { //l2cap_control - Channel ID for ACL-U
|
|
||||||
if (l2capinbuf[8] == L2CAP_CMD_COMMAND_REJECT) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nL2CAP Command Rejected - Reason: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[13]);
|
|
||||||
Serial.print(" ");
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[12]);
|
|
||||||
Serial.print(" Data: ");
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[17]);
|
|
||||||
Serial.print(" ");
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[16]);
|
|
||||||
Serial.print(" ");
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[15]);
|
|
||||||
Serial.print(" ");
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[14]);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
else if (l2capinbuf[8] == L2CAP_CMD_CONNECTION_REQUEST) {
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR("\r\nL2CAP Connection Request - PSM: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[13]);
|
|
||||||
Notify(PSTR(" "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[12]);
|
|
||||||
Notify(PSTR(" SCID: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[15]);
|
|
||||||
Notify(PSTR(" "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[14]);
|
|
||||||
Notify(PSTR(" Identifier: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[9]);
|
|
||||||
#endif
|
|
||||||
if ((l2capinbuf[12] | (l2capinbuf[13] << 8)) == HID_CTRL_PSM) {
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
control_scid[0] = l2capinbuf[14];
|
|
||||||
control_scid[1] = l2capinbuf[15];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_CONNECTION_CONTROL_REQUEST;
|
|
||||||
}
|
|
||||||
else if ((l2capinbuf[12] | (l2capinbuf[13] << 8)) == HID_INTR_PSM) {
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
interrupt_scid[0] = l2capinbuf[14];
|
|
||||||
interrupt_scid[1] = l2capinbuf[15];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_CONNECTION_INTERRUPT_REQUEST;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (l2capinbuf[8] == L2CAP_CMD_CONFIG_RESPONSE) {
|
|
||||||
if ((l2capinbuf[16] | (l2capinbuf[17] << 8)) == 0x0000) { // Success
|
|
||||||
if (l2capinbuf[12] == control_dcid[0] && l2capinbuf[13] == control_dcid[1]) {
|
|
||||||
//Serial.print("\r\nHID Control Configuration Complete");
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_CONFIG_CONTROL_SUCCESS;
|
|
||||||
}
|
|
||||||
else if (l2capinbuf[12] == interrupt_dcid[0] && l2capinbuf[13] == interrupt_dcid[1]) {
|
|
||||||
//Serial.print("\r\nHID Interrupt Configuration Complete");
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_CONFIG_INTERRUPT_SUCCESS;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (l2capinbuf[8] == L2CAP_CMD_CONFIG_REQUEST) {
|
|
||||||
if (l2capinbuf[12] == control_dcid[0] && l2capinbuf[13] == control_dcid[1]) {
|
|
||||||
//Serial.print("\r\nHID Control Configuration Request");
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_CONFIG_CONTROL_REQUEST;
|
|
||||||
}
|
|
||||||
else if (l2capinbuf[12] == interrupt_dcid[0] && l2capinbuf[13] == interrupt_dcid[1]) {
|
|
||||||
//Serial.print("\r\nHID Interrupt Configuration Request");
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_CONFIG_INTERRUPT_REQUEST;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (l2capinbuf[8] == L2CAP_CMD_DISCONNECT_REQUEST) {
|
|
||||||
if (l2capinbuf[12] == control_dcid[0] && l2capinbuf[13] == control_dcid[1]) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nDisconnect Request: Control Channel"));
|
|
||||||
#endif
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
pBtd->l2cap_disconnection_response(hci_handle,identifier,control_dcid,control_scid);
|
|
||||||
Reset();
|
|
||||||
}
|
|
||||||
else if (l2capinbuf[12] == interrupt_dcid[0] && l2capinbuf[13] == interrupt_dcid[1]) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nDisconnect Request: Interrupt Channel"));
|
|
||||||
#endif
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
pBtd->l2cap_disconnection_response(hci_handle,identifier,interrupt_dcid,interrupt_scid);
|
|
||||||
Reset();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (l2capinbuf[8] == L2CAP_CMD_DISCONNECT_RESPONSE) {
|
|
||||||
if (l2capinbuf[12] == control_scid[0] && l2capinbuf[13] == control_scid[1]) {
|
|
||||||
//Serial.print("\r\nDisconnect Response: Control Channel");
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_DISCONNECT_CONTROL_RESPONSE;
|
|
||||||
}
|
|
||||||
else if (l2capinbuf[12] == interrupt_scid[0] && l2capinbuf[13] == interrupt_scid[1]) {
|
|
||||||
//Serial.print("\r\nDisconnect Response: Interrupt Channel");
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_DISCONNECT_INTERRUPT_RESPONSE;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
else {
|
|
||||||
Notify(PSTR("\r\nL2CAP Unknown Signaling Command: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[8]);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
} else if (l2capinbuf[6] == interrupt_dcid[0] && l2capinbuf[7] == interrupt_dcid[1]) { // l2cap_interrupt
|
|
||||||
//Serial.print("\r\nL2CAP Interrupt");
|
|
||||||
if(PS3Connected || PS3MoveConnected || PS3NavigationConnected) {
|
|
||||||
/* Read Report */
|
|
||||||
if(l2capinbuf[8] == 0xA1) { // HID_THDR_DATA_INPUT
|
|
||||||
if(PS3Connected || PS3NavigationConnected)
|
|
||||||
ButtonState = (uint32_t)(l2capinbuf[11] | ((uint16_t)l2capinbuf[12] << 8) | ((uint32_t)l2capinbuf[13] << 16));
|
|
||||||
else if(PS3MoveConnected)
|
|
||||||
ButtonState = (uint32_t)(l2capinbuf[10] | ((uint16_t)l2capinbuf[11] << 8) | ((uint32_t)l2capinbuf[12] << 16));
|
|
||||||
|
|
||||||
//Notify(PSTR("\r\nButtonState");
|
|
||||||
//PrintHex<uint32_t>(ButtonState);
|
|
||||||
|
|
||||||
if(ButtonState != OldButtonState) {
|
|
||||||
ButtonClickState = ButtonState & ~OldButtonState; // Update click state variable
|
|
||||||
OldButtonState = ButtonState;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef PRINTREPORT // Uncomment "#define PRINTREPORT" to print the report send by the PS3 Controllers
|
|
||||||
for(uint8_t i = 10; i < 58;i++) {
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[i]);
|
|
||||||
Serial.print(" ");
|
|
||||||
}
|
|
||||||
Serial.println();
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
L2CAP_task();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void PS3BT::L2CAP_task() {
|
|
||||||
switch (l2cap_state) {
|
|
||||||
case L2CAP_WAIT:
|
|
||||||
if (l2cap_connection_request_control_flag) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nHID Control Incoming Connection Request"));
|
|
||||||
#endif
|
|
||||||
pBtd->l2cap_connection_response(hci_handle,identifier, control_dcid, control_scid, PENDING);
|
|
||||||
delay(1);
|
|
||||||
pBtd->l2cap_connection_response(hci_handle,identifier, control_dcid, control_scid, SUCCESSFUL);
|
|
||||||
identifier++;
|
|
||||||
delay(1);
|
|
||||||
pBtd->l2cap_config_request(hci_handle,identifier, control_scid);
|
|
||||||
l2cap_state = L2CAP_CONTROL_REQUEST;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case L2CAP_CONTROL_REQUEST:
|
|
||||||
if (l2cap_config_request_control_flag) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nHID Control Configuration Request"));
|
|
||||||
#endif
|
|
||||||
pBtd->l2cap_config_response(hci_handle,identifier, control_scid);
|
|
||||||
l2cap_state = L2CAP_CONTROL_SUCCESS;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case L2CAP_CONTROL_SUCCESS:
|
|
||||||
if (l2cap_config_success_control_flag) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nHID Control Successfully Configured"));
|
|
||||||
#endif
|
|
||||||
l2cap_state = L2CAP_INTERRUPT_SETUP;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case L2CAP_INTERRUPT_SETUP:
|
|
||||||
if (l2cap_connection_request_interrupt_flag) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nHID Interrupt Incoming Connection Request"));
|
|
||||||
#endif
|
|
||||||
pBtd->l2cap_connection_response(hci_handle,identifier, interrupt_dcid, interrupt_scid, PENDING);
|
|
||||||
delay(1);
|
|
||||||
pBtd->l2cap_connection_response(hci_handle,identifier, interrupt_dcid, interrupt_scid, SUCCESSFUL);
|
|
||||||
identifier++;
|
|
||||||
delay(1);
|
|
||||||
pBtd->l2cap_config_request(hci_handle,identifier, interrupt_scid);
|
|
||||||
|
|
||||||
l2cap_state = L2CAP_INTERRUPT_REQUEST;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case L2CAP_INTERRUPT_REQUEST:
|
|
||||||
if (l2cap_config_request_interrupt_flag) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nHID Interrupt Configuration Request"));
|
|
||||||
#endif
|
|
||||||
pBtd->l2cap_config_response(hci_handle,identifier, interrupt_scid);
|
|
||||||
l2cap_state = L2CAP_INTERRUPT_SUCCESS;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case L2CAP_INTERRUPT_SUCCESS:
|
|
||||||
if (l2cap_config_success_interrupt_flag) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nHID Interrupt Successfully Configured"));
|
|
||||||
#endif
|
|
||||||
if(remote_name[0] == 'M') { // First letter in Motion Controller ('M')
|
|
||||||
for (uint8_t i = 0; i < BULK_MAXPKTSIZE; i++) // Reset l2cap in buffer as it sometimes read it as a button has been pressed
|
|
||||||
l2capinbuf[i] = 0;
|
|
||||||
ButtonState = 0;
|
|
||||||
OldButtonState = 0;
|
|
||||||
|
|
||||||
l2cap_state = L2CAP_HID_PS3_LED;
|
|
||||||
} else
|
|
||||||
l2cap_state = L2CAP_HID_ENABLE_SIXAXIS;
|
|
||||||
timer = millis();
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
/* These states are handled in Run() */
|
|
||||||
|
|
||||||
case L2CAP_INTERRUPT_DISCONNECT:
|
|
||||||
if (l2cap_disconnect_response_interrupt_flag) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nDisconnected Interrupt Channel"));
|
|
||||||
#endif
|
|
||||||
identifier++;
|
|
||||||
pBtd->l2cap_disconnection_request(hci_handle, identifier, control_scid, control_dcid);
|
|
||||||
l2cap_state = L2CAP_CONTROL_DISCONNECT;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case L2CAP_CONTROL_DISCONNECT:
|
|
||||||
if (l2cap_disconnect_response_control_flag) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nDisconnected Control Channel"));
|
|
||||||
#endif
|
|
||||||
pBtd->hci_disconnect(hci_handle);
|
|
||||||
l2cap_event_flag = 0; // Reset flags
|
|
||||||
l2cap_state = L2CAP_WAIT;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void PS3BT::Run() {
|
|
||||||
switch (l2cap_state) {
|
|
||||||
case L2CAP_HID_ENABLE_SIXAXIS:
|
|
||||||
if(millis() - timer > 1000) { // loop 1 second before sending the command
|
|
||||||
for (uint8_t i = 0; i < BULK_MAXPKTSIZE; i++) // Reset l2cap in buffer as it sometimes read it as a button has been pressed
|
|
||||||
l2capinbuf[i] = 0;
|
|
||||||
ButtonState = 0;
|
|
||||||
OldButtonState = 0;
|
|
||||||
|
|
||||||
enable_sixaxis();
|
|
||||||
for (uint8_t i = 15; i < 19; i++)
|
|
||||||
l2capinbuf[i] = 0x7F; // Set the analog joystick values to center position
|
|
||||||
l2cap_state = L2CAP_HID_PS3_LED;
|
|
||||||
timer = millis();
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case L2CAP_HID_PS3_LED:
|
|
||||||
if(millis() - timer > 1000) { // loop 1 second before sending the command
|
|
||||||
if (remote_name[0] == 'P') { // First letter in PLAYSTATION(R)3 Controller ('P')
|
|
||||||
setLedOn(LED1);
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nDualshock 3 Controller Enabled\r\n"));
|
|
||||||
#endif
|
|
||||||
PS3Connected = true;
|
|
||||||
} else if (remote_name[0] == 'N') { // First letter in Navigation Controller ('N')
|
|
||||||
setLedOn(LED1); // This just turns LED constantly on, on the Navigation controller
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nNavigation Controller Enabled\r\n"));
|
|
||||||
#endif
|
|
||||||
PS3NavigationConnected = true;
|
|
||||||
} else if(remote_name[0] == 'M') { // First letter in Motion Controller ('M')
|
|
||||||
moveSetBulb(Red);
|
|
||||||
timerBulbRumble = millis();
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nMotion Controller Enabled\r\n"));
|
|
||||||
#endif
|
|
||||||
PS3MoveConnected = true;
|
|
||||||
}
|
|
||||||
l2cap_state = L2CAP_DONE;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case L2CAP_DONE:
|
|
||||||
if (PS3MoveConnected) { //The Bulb and rumble values, has to be send at aproximatly every 5th second for it to stay on
|
|
||||||
if (millis() - timerBulbRumble > 4000) { //Send at least every 4th second
|
|
||||||
HIDMove_Command(HIDMoveBuffer, HID_BUFFERSIZE);//The Bulb and rumble values, has to be written again and again, for it to stay turned on
|
|
||||||
timerBulbRumble = millis();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/************************************************************/
|
|
||||||
/* HID Commands */
|
|
||||||
/************************************************************/
|
|
||||||
|
|
||||||
//Playstation Sixaxis Dualshock and Navigation Controller commands
|
|
||||||
void PS3BT::HID_Command(uint8_t* data, uint8_t nbytes) {
|
|
||||||
if (millis() - timerHID <= 250)// Check if is has been more than 250ms since last command
|
|
||||||
delay((uint32_t)(250 - (millis() - timerHID)));//There have to be a delay between commands
|
|
||||||
pBtd->L2CAP_Command(hci_handle,data,nbytes,control_scid[0],control_scid[1]); // Both the Navigation and Dualshock controller sends data via the control channel
|
|
||||||
timerHID = millis();
|
|
||||||
}
|
|
||||||
void PS3BT::setAllOff() {
|
|
||||||
for (uint8_t i = 0; i < OUTPUT_REPORT_BUFFER_SIZE; i++)
|
|
||||||
HIDBuffer[i + 2] = pgm_read_byte(&OUTPUT_REPORT_BUFFER[i]);//First two bytes reserved for report type and ID
|
|
||||||
|
|
||||||
HID_Command(HIDBuffer, HID_BUFFERSIZE);
|
|
||||||
}
|
|
||||||
void PS3BT::setRumbleOff() {
|
|
||||||
HIDBuffer[3] = 0x00;
|
|
||||||
HIDBuffer[4] = 0x00;//low mode off
|
|
||||||
HIDBuffer[5] = 0x00;
|
|
||||||
HIDBuffer[6] = 0x00;//high mode off
|
|
||||||
|
|
||||||
HID_Command(HIDBuffer, HID_BUFFERSIZE);
|
|
||||||
}
|
|
||||||
void PS3BT::setRumbleOn(Rumble mode) {
|
|
||||||
/* Still not totally sure how it works, maybe something like this instead?
|
|
||||||
* 3 - duration_right
|
|
||||||
* 4 - power_right
|
|
||||||
* 5 - duration_left
|
|
||||||
* 6 - power_left
|
|
||||||
*/
|
|
||||||
if ((mode & 0x30) > 0) {
|
|
||||||
HIDBuffer[3] = 0xfe;
|
|
||||||
HIDBuffer[5] = 0xfe;
|
|
||||||
if (mode == RumbleHigh) {
|
|
||||||
HIDBuffer[4] = 0;//low mode off
|
|
||||||
HIDBuffer[6] = 0xff;//high mode on
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
HIDBuffer[4] = 0xff;//low mode on
|
|
||||||
HIDBuffer[6] = 0;//high mode off
|
|
||||||
}
|
|
||||||
HID_Command(HIDBuffer, HID_BUFFERSIZE);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void PS3BT::setLedOff(LED a) {
|
|
||||||
HIDBuffer[11] &= ~((uint8_t)(((uint16_t)a & 0x0f) << 1));
|
|
||||||
HID_Command(HIDBuffer, HID_BUFFERSIZE);
|
|
||||||
}
|
|
||||||
void PS3BT::setLedOn(LED a) {
|
|
||||||
HIDBuffer[11] |= (uint8_t)(((uint16_t)a & 0x0f) << 1);
|
|
||||||
HID_Command(HIDBuffer, HID_BUFFERSIZE);
|
|
||||||
}
|
|
||||||
void PS3BT::setLedToggle(LED a) {
|
|
||||||
HIDBuffer[11] ^= (uint8_t)(((uint16_t)a & 0x0f) << 1);
|
|
||||||
HID_Command(HIDBuffer, HID_BUFFERSIZE);
|
|
||||||
}
|
|
||||||
void PS3BT::enable_sixaxis() { //Command used to enable the Dualshock 3 and Navigation controller to send data via USB
|
|
||||||
uint8_t cmd_buf[6];
|
|
||||||
cmd_buf[0] = 0x53;// HID BT Set_report (0x50) | Report Type (Feature 0x03)
|
|
||||||
cmd_buf[1] = 0xF4;// Report ID
|
|
||||||
cmd_buf[2] = 0x42;// Special PS3 Controller enable commands
|
|
||||||
cmd_buf[3] = 0x03;
|
|
||||||
cmd_buf[4] = 0x00;
|
|
||||||
cmd_buf[5] = 0x00;
|
|
||||||
|
|
||||||
HID_Command(cmd_buf, 6);
|
|
||||||
}
|
|
||||||
|
|
||||||
//Playstation Move Controller commands
|
|
||||||
void PS3BT::HIDMove_Command(uint8_t* data,uint8_t nbytes) {
|
|
||||||
if (millis() - timerHID <= 250)// Check if is has been less than 200ms since last command
|
|
||||||
delay((uint32_t)(250 - (millis() - timerHID)));//There have to be a delay between commands
|
|
||||||
pBtd->L2CAP_Command(hci_handle,data,nbytes,interrupt_scid[0],interrupt_scid[1]); // The Move controller sends it's data via the intterrupt channel
|
|
||||||
timerHID = millis();
|
|
||||||
}
|
|
||||||
void PS3BT::moveSetBulb(uint8_t r, uint8_t g, uint8_t b) { //Use this to set the Color using RGB values
|
|
||||||
//set the Bulb's values into the write buffer
|
|
||||||
HIDMoveBuffer[3] = r;
|
|
||||||
HIDMoveBuffer[4] = g;
|
|
||||||
HIDMoveBuffer[5] = b;
|
|
||||||
|
|
||||||
HIDMove_Command(HIDMoveBuffer, HID_BUFFERSIZE);
|
|
||||||
}
|
|
||||||
void PS3BT::moveSetBulb(Colors color) { //Use this to set the Color using the predefined colors in enum
|
|
||||||
moveSetBulb((uint8_t)(color >> 16),(uint8_t)(color >> 8),(uint8_t)(color));
|
|
||||||
}
|
|
||||||
void PS3BT::moveSetRumble(uint8_t rumble) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
if(rumble < 64 && rumble != 0) // The rumble value has to at least 64, or approximately 25% (64/255*100)
|
|
||||||
Notify(PSTR("\r\nThe rumble value has to at least 64, or approximately 25%"));
|
|
||||||
#endif
|
|
||||||
//set the rumble value into the write buffer
|
|
||||||
HIDMoveBuffer[7] = rumble;
|
|
||||||
|
|
||||||
HIDMove_Command(HIDMoveBuffer, HID_BUFFERSIZE);
|
|
||||||
}
|
|
147
PS3BT.h
147
PS3BT.h
|
@ -1,147 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _ps3bt_h_
|
|
||||||
#define _ps3bt_h_
|
|
||||||
|
|
||||||
#include "BTD.h"
|
|
||||||
#include "PS3Enums.h"
|
|
||||||
|
|
||||||
#define HID_BUFFERSIZE 50 // size of the buffer for the Playstation Motion Controller
|
|
||||||
#define OUTPUT_REPORT_BUFFER_SIZE 48 //Size of the output report buffer for the controllers
|
|
||||||
|
|
||||||
/* Bluetooth L2CAP states for L2CAP_task() */
|
|
||||||
#define L2CAP_WAIT 0
|
|
||||||
#define L2CAP_CONTROL_REQUEST 1
|
|
||||||
#define L2CAP_CONTROL_SUCCESS 2
|
|
||||||
#define L2CAP_INTERRUPT_SETUP 3
|
|
||||||
#define L2CAP_INTERRUPT_REQUEST 4
|
|
||||||
#define L2CAP_INTERRUPT_SUCCESS 5
|
|
||||||
#define L2CAP_HID_ENABLE_SIXAXIS 6
|
|
||||||
#define L2CAP_HID_PS3_LED 7
|
|
||||||
#define L2CAP_DONE 8
|
|
||||||
#define L2CAP_INTERRUPT_DISCONNECT 9
|
|
||||||
#define L2CAP_CONTROL_DISCONNECT 10
|
|
||||||
|
|
||||||
/* L2CAP event flags */
|
|
||||||
#define L2CAP_FLAG_CONNECTION_CONTROL_REQUEST 0x01
|
|
||||||
#define L2CAP_FLAG_CONFIG_CONTROL_REQUEST 0x02
|
|
||||||
#define L2CAP_FLAG_CONFIG_CONTROL_SUCCESS 0x04
|
|
||||||
#define L2CAP_FLAG_CONNECTION_INTERRUPT_REQUEST 0x08
|
|
||||||
#define L2CAP_FLAG_CONFIG_INTERRUPT_REQUEST 0x10
|
|
||||||
#define L2CAP_FLAG_CONFIG_INTERRUPT_SUCCESS 0x20
|
|
||||||
#define L2CAP_FLAG_DISCONNECT_CONTROL_RESPONSE 0x40
|
|
||||||
#define L2CAP_FLAG_DISCONNECT_INTERRUPT_RESPONSE 0x80
|
|
||||||
|
|
||||||
/*Macros for L2CAP event flag tests */
|
|
||||||
#define l2cap_connection_request_control_flag (l2cap_event_flag & L2CAP_FLAG_CONNECTION_CONTROL_REQUEST)
|
|
||||||
#define l2cap_config_request_control_flag (l2cap_event_flag & L2CAP_FLAG_CONFIG_CONTROL_REQUEST)
|
|
||||||
#define l2cap_config_success_control_flag (l2cap_event_flag & L2CAP_FLAG_CONFIG_CONTROL_SUCCESS)
|
|
||||||
#define l2cap_connection_request_interrupt_flag (l2cap_event_flag & L2CAP_FLAG_CONNECTION_INTERRUPT_REQUEST)
|
|
||||||
#define l2cap_config_request_interrupt_flag (l2cap_event_flag & L2CAP_FLAG_CONFIG_INTERRUPT_REQUEST)
|
|
||||||
#define l2cap_config_success_interrupt_flag (l2cap_event_flag & L2CAP_FLAG_CONFIG_INTERRUPT_SUCCESS)
|
|
||||||
#define l2cap_disconnect_response_control_flag (l2cap_event_flag & L2CAP_FLAG_DISCONNECT_CONTROL_RESPONSE)
|
|
||||||
#define l2cap_disconnect_response_interrupt_flag (l2cap_event_flag & L2CAP_FLAG_DISCONNECT_INTERRUPT_RESPONSE)
|
|
||||||
|
|
||||||
class PS3BT : public BluetoothService {
|
|
||||||
public:
|
|
||||||
PS3BT(BTD *pBtd, uint8_t btadr5=0, uint8_t btadr4=0, uint8_t btadr3=0, uint8_t btadr2=0, uint8_t btadr1=0, uint8_t btadr0=0);
|
|
||||||
|
|
||||||
// BluetoothService implementation
|
|
||||||
virtual void ACLData(uint8_t* ACLData); // Used to pass acldata to the services
|
|
||||||
virtual void Run(); // Used to run part of the state maschine
|
|
||||||
virtual void Reset(); // Use this to reset the service
|
|
||||||
virtual void disconnect(); // Use this void to disconnect any of the controllers
|
|
||||||
|
|
||||||
/* PS3 Controller Commands */
|
|
||||||
/*
|
|
||||||
getButtonPress will return true as long as the button is held down
|
|
||||||
While getButtonClick will only return it once
|
|
||||||
So you instance if you need to increase a variable once you would use getButtonClick,
|
|
||||||
but if you need to drive a robot forward you would use getButtonPress
|
|
||||||
*/
|
|
||||||
bool getButtonPress(Button b);
|
|
||||||
bool getButtonClick(Button b);
|
|
||||||
|
|
||||||
uint8_t getAnalogButton(AnalogButton a);
|
|
||||||
uint8_t getAnalogHat(AnalogHat a);
|
|
||||||
int16_t getSensor(Sensor a);
|
|
||||||
double getAngle(Angle a);
|
|
||||||
double get9DOFValues(Sensor a);
|
|
||||||
bool getStatus(Status c);
|
|
||||||
String getStatusString();
|
|
||||||
String getTemperature();
|
|
||||||
|
|
||||||
/* HID Commands */
|
|
||||||
/* Commands for Dualshock 3 and Navigation controller */
|
|
||||||
void setAllOff();
|
|
||||||
void setRumbleOff();
|
|
||||||
void setRumbleOn(Rumble mode);
|
|
||||||
void setLedOff(LED a);
|
|
||||||
void setLedOn(LED a);
|
|
||||||
void setLedToggle(LED a);
|
|
||||||
|
|
||||||
/* Commands for Motion controller only */
|
|
||||||
void moveSetBulb(uint8_t r, uint8_t g, uint8_t b);//Use this to set the Color using RGB values
|
|
||||||
void moveSetBulb(Colors color);//Use this to set the Color using the predefined colors in "enum Colors"
|
|
||||||
void moveSetRumble(uint8_t rumble);
|
|
||||||
|
|
||||||
bool PS3Connected;// Variable used to indicate if the normal playstation controller is successfully connected
|
|
||||||
bool PS3MoveConnected;// Variable used to indicate if the move controller is successfully connected
|
|
||||||
bool PS3NavigationConnected;// Variable used to indicate if the navigation controller is successfully connected
|
|
||||||
|
|
||||||
private:
|
|
||||||
/* mandatory members */
|
|
||||||
BTD *pBtd;
|
|
||||||
|
|
||||||
void L2CAP_task(); // L2CAP state machine
|
|
||||||
|
|
||||||
/* Variables filled from HCI event management */
|
|
||||||
int16_t hci_handle;
|
|
||||||
uint8_t remote_name[30]; // first 30 chars of remote name
|
|
||||||
bool activeConnection; // Used to indicate if it's already has established a connection
|
|
||||||
|
|
||||||
/* variables used by high level L2CAP task */
|
|
||||||
uint8_t l2cap_state;
|
|
||||||
uint16_t l2cap_event_flag;// l2cap flags of received bluetooth events
|
|
||||||
|
|
||||||
unsigned long timer;
|
|
||||||
|
|
||||||
uint32_t ButtonState;
|
|
||||||
uint32_t OldButtonState;
|
|
||||||
uint32_t ButtonClickState;
|
|
||||||
|
|
||||||
uint32_t timerHID;// timer used see if there has to be a delay before a new HID command
|
|
||||||
uint32_t timerBulbRumble;// used to continuously set PS3 Move controller Bulb and rumble values
|
|
||||||
|
|
||||||
uint8_t l2capinbuf[BULK_MAXPKTSIZE]; // General purpose buffer for l2cap in data
|
|
||||||
uint8_t HIDBuffer[HID_BUFFERSIZE];// Used to store HID commands
|
|
||||||
uint8_t HIDMoveBuffer[HID_BUFFERSIZE];// Used to store HID commands for the Move controller
|
|
||||||
|
|
||||||
/* L2CAP Channels */
|
|
||||||
uint8_t control_scid[2];// L2CAP source CID for HID_Control
|
|
||||||
uint8_t control_dcid[2];//0x0040
|
|
||||||
uint8_t interrupt_scid[2];// L2CAP source CID for HID_Interrupt
|
|
||||||
uint8_t interrupt_dcid[2];//0x0041
|
|
||||||
uint8_t identifier;//Identifier for connection
|
|
||||||
|
|
||||||
/* HID Commands */
|
|
||||||
void HID_Command(uint8_t* data, uint8_t nbytes);
|
|
||||||
void HIDMove_Command(uint8_t* data, uint8_t nbytes);
|
|
||||||
void enable_sixaxis();//Command used to enable the Dualshock 3 and Navigation controller to send data via USB
|
|
||||||
};
|
|
||||||
#endif
|
|
158
PS3Enums.h
158
PS3Enums.h
|
@ -1,158 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _ps3enums_h
|
|
||||||
#define _ps3enums_h
|
|
||||||
|
|
||||||
enum LED {
|
|
||||||
LED1 = 0x01,
|
|
||||||
LED2 = 0x02,
|
|
||||||
LED3 = 0x04,
|
|
||||||
LED4 = 0x08,
|
|
||||||
|
|
||||||
LED5 = 0x09,
|
|
||||||
LED6 = 0x0A,
|
|
||||||
LED7 = 0x0C,
|
|
||||||
LED8 = 0x0D,
|
|
||||||
LED9 = 0x0E,
|
|
||||||
LED10 = 0x0F,
|
|
||||||
};
|
|
||||||
enum Colors {
|
|
||||||
// Used to set the colors of the move controller
|
|
||||||
Red = 0xFF0000, // r = 255, g = 0, b = 0
|
|
||||||
Green = 0xFF00, // r = 0, g = 255, b = 0
|
|
||||||
Blue = 0xFF, // r = 0, g = 0, b = 255
|
|
||||||
|
|
||||||
Yellow = 0xFFEB04, // r = 255, g = 235, b = 4
|
|
||||||
Lightblue = 0xFFFF, // r = 0, g = 255, b = 255
|
|
||||||
Purble = 0xFF00FF, // r = 255, g = 0, b = 255
|
|
||||||
|
|
||||||
White = 0xFFFFFF, // r = 255, g = 255, b = 255
|
|
||||||
Off = 0x00, // r = 0, g = 0, b = 0
|
|
||||||
};
|
|
||||||
enum Button {
|
|
||||||
SELECT = 0x01,
|
|
||||||
L3 = 0x02,
|
|
||||||
R3 = 0x04,
|
|
||||||
START = 0x08,
|
|
||||||
UP = 0x10,
|
|
||||||
RIGHT = 0x20,
|
|
||||||
DOWN = 0x40,
|
|
||||||
LEFT = 0x80,
|
|
||||||
|
|
||||||
L2 = 0x0100,
|
|
||||||
R2 = 0x0200,
|
|
||||||
L1 = 0x0400,
|
|
||||||
R1 = 0x0800,
|
|
||||||
TRIANGLE = 0x1000,
|
|
||||||
CIRCLE = 0x2000,
|
|
||||||
CROSS = 0x4000,
|
|
||||||
SQUARE = 0x8000,
|
|
||||||
|
|
||||||
PS = 0x010000,
|
|
||||||
|
|
||||||
MOVE = 0x080000, // covers 12 bits - we only need to read the top 8
|
|
||||||
T = 0x100000, // covers 12 bits - we only need to read the top 8
|
|
||||||
};
|
|
||||||
enum AnalogButton {
|
|
||||||
// Note that the location is shiftet 9 when it's connected via USB
|
|
||||||
// Sixaxis Dualshcock 3 & Navigation controller
|
|
||||||
UP_ANALOG = 23,
|
|
||||||
RIGHT_ANALOG = 24,
|
|
||||||
DOWN_ANALOG = 25,
|
|
||||||
LEFT_ANALOG = 26,
|
|
||||||
|
|
||||||
L2_ANALOG = 27,
|
|
||||||
R2_ANALOG = 28,
|
|
||||||
L1_ANALOG = 29,
|
|
||||||
R1_ANALOG = 30,
|
|
||||||
TRIANGLE_ANALOG = 31,
|
|
||||||
CIRCLE_ANALOG = 32,
|
|
||||||
CROSS_ANALOG = 33,
|
|
||||||
SQUARE_ANALOG = 34,
|
|
||||||
|
|
||||||
//Playstation Move Controller
|
|
||||||
T_ANALOG = 15, // Both at byte 14 (last reading) and byte 15 (current reading)
|
|
||||||
};
|
|
||||||
enum AnalogHat {
|
|
||||||
// Note that the location is shiftet 9 when it's connected via USB
|
|
||||||
LeftHatX = 15,
|
|
||||||
LeftHatY = 16,
|
|
||||||
RightHatX = 17,
|
|
||||||
RightHatY = 18,
|
|
||||||
};
|
|
||||||
enum Sensor {
|
|
||||||
// Note that the location is shiftet 9 when it's connected via USB
|
|
||||||
// Sensors inside the Sixaxis Dualshock 3 controller
|
|
||||||
aX = 50,
|
|
||||||
aY = 52,
|
|
||||||
aZ = 54,
|
|
||||||
gZ = 56,
|
|
||||||
|
|
||||||
// Sensors inside the Move Motion controller
|
|
||||||
aXmove = 28,
|
|
||||||
aZmove = 30,
|
|
||||||
aYmove = 32,
|
|
||||||
|
|
||||||
gXmove = 40,
|
|
||||||
gZmove = 42,
|
|
||||||
gYmove = 44,
|
|
||||||
|
|
||||||
tempMove = 46,
|
|
||||||
|
|
||||||
mXmove = 47,
|
|
||||||
mZmove = 49,
|
|
||||||
mYmove = 50,
|
|
||||||
};
|
|
||||||
enum Angle {
|
|
||||||
// Used to get the angle calculated using atan2
|
|
||||||
Pitch = 0x01,
|
|
||||||
Roll = 0x02,
|
|
||||||
};
|
|
||||||
enum Status {
|
|
||||||
// Note that the location is shiftet 9 when it's connected via USB
|
|
||||||
// Byte location | bit location
|
|
||||||
Plugged = (38 << 8) | 0x02,
|
|
||||||
Unplugged = (38 << 8) | 0x03,
|
|
||||||
|
|
||||||
Charging = (39 << 8) | 0xEE,
|
|
||||||
NotCharging = (39 << 8) | 0xF1,
|
|
||||||
Shutdown = (39 << 8) | 0x01,
|
|
||||||
Dying = (39 << 8) | 0x02,
|
|
||||||
Low = (39 << 8) | 0x03,
|
|
||||||
High = (39 << 8) | 0x04,
|
|
||||||
Full = (39 << 8) | 0x05,
|
|
||||||
|
|
||||||
MoveCharging = (21 << 8) | 0xEE,
|
|
||||||
MoveNotCharging = (21 << 8) | 0xF1,
|
|
||||||
MoveShutdown = (21 << 8) | 0x01,
|
|
||||||
MoveDying = (21 << 8) | 0x02,
|
|
||||||
MoveLow = (21 << 8) | 0x03,
|
|
||||||
MoveHigh = (21 << 8) | 0x04,
|
|
||||||
MoveFull = (21 << 8) | 0x05,
|
|
||||||
|
|
||||||
CableRumble = (40 << 8) | 0x10,//Opperating by USB and rumble is turned on
|
|
||||||
Cable = (40 << 8) | 0x12,//Opperating by USB and rumble is turned off
|
|
||||||
BluetoothRumble = (40 << 8) | 0x14,//Opperating by bluetooth and rumble is turned on
|
|
||||||
Bluetooth = (40 << 8) | 0x16,//Opperating by bluetooth and rumble is turned off
|
|
||||||
};
|
|
||||||
enum Rumble {
|
|
||||||
RumbleHigh = 0x10,
|
|
||||||
RumbleLow = 0x20,
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
550
PS3USB.cpp
550
PS3USB.cpp
|
@ -1,550 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "PS3USB.h"
|
|
||||||
#define DEBUG // Uncomment to print data for debugging
|
|
||||||
//#define EXTRADEBUG // Uncomment to get even more debugging data
|
|
||||||
//#define PRINTREPORT // Uncomment to print the report send by the PS3 Controllers
|
|
||||||
|
|
||||||
const uint8_t PS3_REPORT_BUFFER[] PROGMEM = {
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
|
||||||
0xff, 0x27, 0x10, 0x00, 0x32,
|
|
||||||
0xff, 0x27, 0x10, 0x00, 0x32,
|
|
||||||
0xff, 0x27, 0x10, 0x00, 0x32,
|
|
||||||
0xff, 0x27, 0x10, 0x00, 0x32,
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
|
||||||
};
|
|
||||||
const uint8_t MOVE_REPORT_BUFFER[] PROGMEM = {
|
|
||||||
0x02, 0x00, // Always 0x02, 0x00,
|
|
||||||
0x00, 0x00, 0x00, // r, g, b,
|
|
||||||
0x00, // Always 0x00,
|
|
||||||
0x00 // Rumble
|
|
||||||
};
|
|
||||||
|
|
||||||
PS3USB::PS3USB(USB *p, uint8_t btadr5, uint8_t btadr4, uint8_t btadr3, uint8_t btadr2, uint8_t btadr1, uint8_t btadr0):
|
|
||||||
pUsb(p), // pointer to USB class instance - mandatory
|
|
||||||
bAddress(0), // device address - mandatory
|
|
||||||
bPollEnable(false) // don't start polling before dongle is connected
|
|
||||||
{
|
|
||||||
for(uint8_t i=0; i<PS3_MAX_ENDPOINTS; i++) {
|
|
||||||
epInfo[i].epAddr = 0;
|
|
||||||
epInfo[i].maxPktSize = (i) ? 0 : 8;
|
|
||||||
epInfo[i].epAttribs = 0;
|
|
||||||
epInfo[i].bmNakPower = (i) ? USB_NAK_NOWAIT : USB_NAK_MAX_POWER;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (pUsb) // register in USB subsystem
|
|
||||||
pUsb->RegisterDeviceClass(this); //set devConfig[] entry
|
|
||||||
|
|
||||||
my_bdaddr[5] = btadr5; // Change to your dongle's Bluetooth address instead
|
|
||||||
my_bdaddr[4] = btadr4;
|
|
||||||
my_bdaddr[3] = btadr3;
|
|
||||||
my_bdaddr[2] = btadr2;
|
|
||||||
my_bdaddr[1] = btadr1;
|
|
||||||
my_bdaddr[0] = btadr0;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t PS3USB::Init(uint8_t parent, uint8_t port, bool lowspeed) {
|
|
||||||
uint8_t buf[sizeof(USB_DEVICE_DESCRIPTOR)];
|
|
||||||
uint8_t rcode;
|
|
||||||
UsbDevice *p = NULL;
|
|
||||||
EpInfo *oldep_ptr = NULL;
|
|
||||||
uint16_t PID;
|
|
||||||
uint16_t VID;
|
|
||||||
|
|
||||||
// get memory address of USB device address pool
|
|
||||||
AddressPool &addrPool = pUsb->GetAddressPool();
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR("\r\nPS3USB Init"));
|
|
||||||
#endif
|
|
||||||
// check if address has already been assigned to an instance
|
|
||||||
if (bAddress) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nAddress in use"));
|
|
||||||
#endif
|
|
||||||
return USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get pointer to pseudo device with address 0 assigned
|
|
||||||
p = addrPool.GetUsbDevicePtr(0);
|
|
||||||
|
|
||||||
if (!p) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nAddress not found"));
|
|
||||||
#endif
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!p->epinfo) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nepinfo is null"));
|
|
||||||
#endif
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save old pointer to EP_RECORD of address 0
|
|
||||||
oldep_ptr = p->epinfo;
|
|
||||||
|
|
||||||
// Temporary assign new pointer to epInfo to p->epinfo in order to avoid toggle inconsistence
|
|
||||||
p->epinfo = epInfo;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Get device descriptor
|
|
||||||
rcode = pUsb->getDevDescr(0, 0, sizeof(USB_DEVICE_DESCRIPTOR), (uint8_t*)buf);// Get device descriptor - addr, ep, nbytes, data
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
if(rcode)
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
|
|
||||||
VID = ((USB_DEVICE_DESCRIPTOR*)buf)->idVendor;
|
|
||||||
PID = ((USB_DEVICE_DESCRIPTOR*)buf)->idProduct;
|
|
||||||
|
|
||||||
if(VID != PS3_VID || (PID != PS3_PID && PID != PS3NAVIGATION_PID && PID != PS3MOVE_PID))
|
|
||||||
goto FailUnknownDevice;
|
|
||||||
|
|
||||||
// Allocate new address according to device class
|
|
||||||
bAddress = addrPool.AllocAddress(parent, false, port);
|
|
||||||
|
|
||||||
if (!bAddress)
|
|
||||||
return USB_ERROR_OUT_OF_ADDRESS_SPACE_IN_POOL;
|
|
||||||
|
|
||||||
// Extract Max Packet Size from device descriptor
|
|
||||||
epInfo[0].maxPktSize = (uint8_t)((USB_DEVICE_DESCRIPTOR*)buf)->bMaxPacketSize0;
|
|
||||||
|
|
||||||
// Assign new address to the device
|
|
||||||
rcode = pUsb->setAddr( 0, 0, bAddress );
|
|
||||||
if (rcode) {
|
|
||||||
p->lowspeed = false;
|
|
||||||
addrPool.FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nsetAddr: "));
|
|
||||||
#endif
|
|
||||||
PrintHex<uint8_t>(rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR("\r\nAddr: "));
|
|
||||||
PrintHex<uint8_t>(bAddress);
|
|
||||||
#endif
|
|
||||||
p->lowspeed = false;
|
|
||||||
|
|
||||||
//get pointer to assigned address record
|
|
||||||
p = addrPool.GetUsbDevicePtr(bAddress);
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer - only EP0 is known
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 1, epInfo);
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
|
|
||||||
/* The application will work in reduced host mode, so we can save program and data
|
|
||||||
memory space. After verifying the PID and VID we will use known values for the
|
|
||||||
configuration values for device, interface, endpoints and HID for the PS3 Controllers */
|
|
||||||
|
|
||||||
/* Initialize data structures for endpoints of device */
|
|
||||||
epInfo[ PS3_OUTPUT_PIPE ].epAddr = 0x02; // PS3 output endpoint
|
|
||||||
epInfo[ PS3_OUTPUT_PIPE ].epAttribs = EP_INTERRUPT;
|
|
||||||
epInfo[ PS3_OUTPUT_PIPE ].bmNakPower = USB_NAK_NOWAIT; // Only poll once for interrupt endpoints
|
|
||||||
epInfo[ PS3_OUTPUT_PIPE ].maxPktSize = EP_MAXPKTSIZE;
|
|
||||||
epInfo[ PS3_OUTPUT_PIPE ].bmSndToggle = bmSNDTOG0;
|
|
||||||
epInfo[ PS3_OUTPUT_PIPE ].bmRcvToggle = bmRCVTOG0;
|
|
||||||
epInfo[ PS3_INPUT_PIPE ].epAddr = 0x01; // PS3 report endpoint
|
|
||||||
epInfo[ PS3_INPUT_PIPE ].epAttribs = EP_INTERRUPT;
|
|
||||||
epInfo[ PS3_INPUT_PIPE ].bmNakPower = USB_NAK_NOWAIT; // Only poll once for interrupt endpoints
|
|
||||||
epInfo[ PS3_INPUT_PIPE ].maxPktSize = EP_MAXPKTSIZE;
|
|
||||||
epInfo[ PS3_INPUT_PIPE ].bmSndToggle = bmSNDTOG0;
|
|
||||||
epInfo[ PS3_INPUT_PIPE ].bmRcvToggle = bmRCVTOG0;
|
|
||||||
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 3, epInfo);
|
|
||||||
if( rcode )
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
delay(200);//Give time for address change
|
|
||||||
|
|
||||||
rcode = pUsb->setConf(bAddress, epInfo[ PS3_CONTROL_PIPE ].epAddr, 1);
|
|
||||||
if( rcode )
|
|
||||||
goto FailSetConf;
|
|
||||||
|
|
||||||
if(PID == PS3_PID || PID == PS3NAVIGATION_PID) {
|
|
||||||
if(PID == PS3_PID) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nDualshock 3 Controller Connected"));
|
|
||||||
#endif
|
|
||||||
PS3Connected = true;
|
|
||||||
} else { // must be a navigation controller
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nNavigation Controller Connected"));
|
|
||||||
#endif
|
|
||||||
PS3NavigationConnected = true;
|
|
||||||
}
|
|
||||||
/* Set internal bluetooth address and request for data */
|
|
||||||
setBdaddr(my_bdaddr);
|
|
||||||
enable_sixaxis();
|
|
||||||
setLedOn(LED1);
|
|
||||||
|
|
||||||
// Needed for PS3 Dualshock and Navigation commands to work
|
|
||||||
for (uint8_t i = 0; i < PS3_REPORT_BUFFER_SIZE; i++)
|
|
||||||
writeBuf[i] = pgm_read_byte(&PS3_REPORT_BUFFER[i]);
|
|
||||||
|
|
||||||
for (uint8_t i = 6; i < 10; i++)
|
|
||||||
readBuf[i] = 0x7F; // Set the analog joystick values to center position
|
|
||||||
}
|
|
||||||
else { // must be a Motion controller
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nMotion Controller Connected"));
|
|
||||||
#endif
|
|
||||||
PS3MoveConnected = true;
|
|
||||||
setMoveBdaddr(my_bdaddr); // Set internal bluetooth address
|
|
||||||
moveSetBulb(Red);
|
|
||||||
|
|
||||||
// Needed for Move commands to work
|
|
||||||
for (uint8_t i = 0; i < MOVE_REPORT_BUFFER_SIZE; i++)
|
|
||||||
writeBuf[i] = pgm_read_byte(&MOVE_REPORT_BUFFER[i]);
|
|
||||||
}
|
|
||||||
|
|
||||||
bPollEnable = true;
|
|
||||||
Notify(PSTR("\r\n"));
|
|
||||||
timer = millis();
|
|
||||||
return 0; // successful configuration
|
|
||||||
|
|
||||||
/* diagnostic messages */
|
|
||||||
FailGetDevDescr:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\ngetDevDescr:"));
|
|
||||||
#endif
|
|
||||||
goto Fail;
|
|
||||||
FailSetDevTblEntry:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nsetDevTblEn:"));
|
|
||||||
#endif
|
|
||||||
goto Fail;
|
|
||||||
FailSetConf:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nsetConf:"));
|
|
||||||
#endif
|
|
||||||
goto Fail;
|
|
||||||
FailUnknownDevice:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nUnknown Device Connected - VID: "));
|
|
||||||
PrintHex<uint16_t>(VID);
|
|
||||||
Notify(PSTR(" PID: "));
|
|
||||||
PrintHex<uint16_t>(PID);
|
|
||||||
#endif
|
|
||||||
rcode = USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED;
|
|
||||||
goto Fail;
|
|
||||||
Fail:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nPS3 Init Failed, error code: "));
|
|
||||||
Serial.print(rcode,HEX);
|
|
||||||
#endif
|
|
||||||
Release();
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Performs a cleanup after failed Init() attempt */
|
|
||||||
uint8_t PS3USB::Release() {
|
|
||||||
PS3Connected = false;
|
|
||||||
PS3MoveConnected = false;
|
|
||||||
PS3NavigationConnected = false;
|
|
||||||
pUsb->GetAddressPool().FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
bPollEnable = false;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
uint8_t PS3USB::Poll() {
|
|
||||||
if (!bPollEnable)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
if(PS3Connected || PS3NavigationConnected) {
|
|
||||||
uint16_t BUFFER_SIZE = EP_MAXPKTSIZE;
|
|
||||||
pUsb->inTransfer(bAddress, epInfo[ PS3_INPUT_PIPE ].epAddr, &BUFFER_SIZE, readBuf); // input on endpoint 1
|
|
||||||
if(millis() - timer > 100) { // Loop 100ms before processing data
|
|
||||||
readReport();
|
|
||||||
#ifdef PRINTREPORT
|
|
||||||
printReport(); // Uncomment "#define PRINTREPORT" to print the report send by the PS3 Controllers
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if(PS3MoveConnected) { // One can only set the color of the bulb, set the rumble, set and get the bluetooth address and calibrate the magnetometer via USB
|
|
||||||
if (millis() - timer > 4000) // Send at least every 4th second
|
|
||||||
{
|
|
||||||
Move_Command(writeBuf, MOVE_REPORT_BUFFER_SIZE); // The Bulb and rumble values, has to be written again and again, for it to stay turned on
|
|
||||||
timer = millis();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void PS3USB::readReport() {
|
|
||||||
if (readBuf == NULL)
|
|
||||||
return;
|
|
||||||
|
|
||||||
ButtonState = (uint32_t)(readBuf[2] | ((uint16_t)readBuf[3] << 8) | ((uint32_t)readBuf[4] << 16));
|
|
||||||
|
|
||||||
//Notify(PSTR("\r\nButtonState");
|
|
||||||
//PrintHex<uint32_t>(ButtonState);
|
|
||||||
|
|
||||||
if(ButtonState != OldButtonState) {
|
|
||||||
ButtonClickState = ButtonState & ~OldButtonState; // Update click state variable
|
|
||||||
OldButtonState = ButtonState;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void PS3USB::printReport() { //Uncomment "#define PRINTREPORT" to print the report send by the PS3 Controllers
|
|
||||||
#ifdef PRINTREPORT
|
|
||||||
if (readBuf == NULL)
|
|
||||||
return;
|
|
||||||
for(uint8_t i = 0; i < PS3_REPORT_BUFFER_SIZE;i++) {
|
|
||||||
PrintHex<uint8_t>(readBuf[i]);
|
|
||||||
Serial.print(" ");
|
|
||||||
}
|
|
||||||
Serial.println();
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
bool PS3USB::getButtonPress(Button b) {
|
|
||||||
return (ButtonState & (uint32_t)b);
|
|
||||||
}
|
|
||||||
bool PS3USB::getButtonClick(Button b) {
|
|
||||||
bool click = (ButtonClickState & (uint32_t)b);
|
|
||||||
ButtonClickState &= ~((uint32_t)b); // clear "click" event
|
|
||||||
return click;
|
|
||||||
}
|
|
||||||
uint8_t PS3USB::getAnalogButton(AnalogButton a) {
|
|
||||||
if (readBuf == NULL)
|
|
||||||
return 0;
|
|
||||||
return (uint8_t)(readBuf[((uint16_t)a)-9]);
|
|
||||||
}
|
|
||||||
uint8_t PS3USB::getAnalogHat(AnalogHat a) {
|
|
||||||
if (readBuf == NULL)
|
|
||||||
return 0;
|
|
||||||
return (uint8_t)(readBuf[((uint16_t)a)-9]);
|
|
||||||
}
|
|
||||||
uint16_t PS3USB::getSensor(Sensor a) {
|
|
||||||
if (readBuf == NULL)
|
|
||||||
return 0;
|
|
||||||
return ((readBuf[((uint16_t)a)-9] << 8) | readBuf[((uint16_t)a + 1)-9]);
|
|
||||||
}
|
|
||||||
double PS3USB::getAngle(Angle a) {
|
|
||||||
if(PS3Connected) {
|
|
||||||
double accXval;
|
|
||||||
double accYval;
|
|
||||||
double accZval;
|
|
||||||
|
|
||||||
// Data for the Kionix KXPC4 used in the DualShock 3
|
|
||||||
const double zeroG = 511.5; // 1.65/3.3*1023 (1,65V)
|
|
||||||
accXval = -((double)getSensor(aX)-zeroG);
|
|
||||||
accYval = -((double)getSensor(aY)-zeroG);
|
|
||||||
accZval = -((double)getSensor(aZ)-zeroG);
|
|
||||||
|
|
||||||
// Convert to 360 degrees resolution
|
|
||||||
// atan2 outputs the value of -π to π (radians)
|
|
||||||
// We are then converting it to 0 to 2π and then to degrees
|
|
||||||
if (a == Pitch) {
|
|
||||||
double angle = (atan2(accYval,accZval)+PI)*RAD_TO_DEG;
|
|
||||||
return angle;
|
|
||||||
} else {
|
|
||||||
double angle = (atan2(accXval,accZval)+PI)*RAD_TO_DEG;
|
|
||||||
return angle;
|
|
||||||
}
|
|
||||||
} else
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
bool PS3USB::getStatus(Status c) {
|
|
||||||
if (readBuf == NULL)
|
|
||||||
return false;
|
|
||||||
if (readBuf[((uint16_t)c >> 8)-9] == ((uint8_t)c & 0xff))
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
String PS3USB::getStatusString() {
|
|
||||||
if (PS3Connected || PS3NavigationConnected) {
|
|
||||||
char statusOutput[100];
|
|
||||||
|
|
||||||
strcpy(statusOutput,"ConnectionStatus: ");
|
|
||||||
|
|
||||||
if (getStatus(Plugged)) strcat(statusOutput,"Plugged");
|
|
||||||
else if (getStatus(Unplugged)) strcat(statusOutput,"Unplugged");
|
|
||||||
else strcat(statusOutput,"Error");
|
|
||||||
|
|
||||||
|
|
||||||
strcat(statusOutput," - PowerRating: ");
|
|
||||||
|
|
||||||
if (getStatus(Charging)) strcat(statusOutput,"Charging");
|
|
||||||
else if (getStatus(NotCharging)) strcat(statusOutput,"Not Charging");
|
|
||||||
else if (getStatus(Shutdown)) strcat(statusOutput,"Shutdown");
|
|
||||||
else if (getStatus(Dying)) strcat(statusOutput,"Dying");
|
|
||||||
else if (getStatus(Low)) strcat(statusOutput,"Low");
|
|
||||||
else if (getStatus(High)) strcat(statusOutput,"High");
|
|
||||||
else if (getStatus(Full)) strcat(statusOutput,"Full");
|
|
||||||
else strcat(statusOutput,"Error");
|
|
||||||
|
|
||||||
strcat(statusOutput," - WirelessStatus: ");
|
|
||||||
|
|
||||||
if (getStatus(CableRumble)) strcat(statusOutput,"Cable - Rumble is on");
|
|
||||||
else if (getStatus(Cable)) strcat(statusOutput,"Cable - Rumble is off");
|
|
||||||
else if (getStatus(BluetoothRumble)) strcat(statusOutput,"Bluetooth - Rumble is on");
|
|
||||||
else if (getStatus(Bluetooth)) strcat(statusOutput,"Bluetooth - Rumble is off");
|
|
||||||
else strcat(statusOutput,"Error");
|
|
||||||
|
|
||||||
return statusOutput;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Playstation Sixaxis Dualshock and Navigation Controller commands */
|
|
||||||
void PS3USB::PS3_Command(uint8_t* data, uint16_t nbytes) {
|
|
||||||
//bmRequest = Host to device (0x00) | Class (0x20) | Interface (0x01) = 0x21, bRequest = Set Report (0x09), Report ID (0x01), Report Type (Output 0x02), interface (0x00), datalength, datalength, data)
|
|
||||||
pUsb->ctrlReq(bAddress,epInfo[PS3_CONTROL_PIPE].epAddr, bmREQ_HID_OUT, HID_REQUEST_SET_REPORT, 0x01, 0x02, 0x00, nbytes, nbytes, data, NULL);
|
|
||||||
}
|
|
||||||
void PS3USB::setAllOff() {
|
|
||||||
for (uint8_t i = 0; i < PS3_REPORT_BUFFER_SIZE; i++)
|
|
||||||
writeBuf[i] = pgm_read_byte(&PS3_REPORT_BUFFER[i]); // Reset buffer
|
|
||||||
|
|
||||||
PS3_Command(writeBuf, PS3_REPORT_BUFFER_SIZE);
|
|
||||||
}
|
|
||||||
void PS3USB::setRumbleOff() {
|
|
||||||
writeBuf[1] = 0x00;
|
|
||||||
writeBuf[2] = 0x00;//low mode off
|
|
||||||
writeBuf[3] = 0x00;
|
|
||||||
writeBuf[4] = 0x00;//high mode off
|
|
||||||
|
|
||||||
PS3_Command(writeBuf, PS3_REPORT_BUFFER_SIZE);
|
|
||||||
}
|
|
||||||
void PS3USB::setRumbleOn(Rumble mode) {
|
|
||||||
/* Still not totally sure how it works, maybe something like this instead?
|
|
||||||
* 3 - duration_right
|
|
||||||
* 4 - power_right
|
|
||||||
* 5 - duration_left
|
|
||||||
* 6 - power_left
|
|
||||||
*/
|
|
||||||
if ((mode & 0x30) > 0) {
|
|
||||||
writeBuf[1] = 0xfe;
|
|
||||||
writeBuf[3] = 0xfe;
|
|
||||||
if (mode == RumbleHigh) {
|
|
||||||
writeBuf[2] = 0;//low mode off
|
|
||||||
writeBuf[4] = 0xff;//high mode on
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
writeBuf[2] = 0xff;//low mode on
|
|
||||||
writeBuf[4] = 0;//high mode off
|
|
||||||
}
|
|
||||||
PS3_Command(writeBuf, PS3_REPORT_BUFFER_SIZE);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void PS3USB::setLedOff(LED a) {
|
|
||||||
writeBuf[9] &= ~((uint8_t)(((uint16_t)a & 0x0f) << 1));
|
|
||||||
PS3_Command(writeBuf, PS3_REPORT_BUFFER_SIZE);
|
|
||||||
}
|
|
||||||
void PS3USB::setLedOn(LED a) {
|
|
||||||
writeBuf[9] |= (uint8_t)(((uint16_t)a & 0x0f) << 1);
|
|
||||||
PS3_Command(writeBuf, PS3_REPORT_BUFFER_SIZE);
|
|
||||||
}
|
|
||||||
void PS3USB::setLedToggle(LED a) {
|
|
||||||
writeBuf[9] ^= (uint8_t)(((uint16_t)a & 0x0f) << 1);
|
|
||||||
PS3_Command(writeBuf, PS3_REPORT_BUFFER_SIZE);
|
|
||||||
}
|
|
||||||
void PS3USB::setBdaddr(uint8_t* BDADDR) {
|
|
||||||
/* Set the internal bluetooth address */
|
|
||||||
uint8_t buf[8];
|
|
||||||
buf[0] = 0x01;
|
|
||||||
buf[1] = 0x00;
|
|
||||||
for (uint8_t i = 0; i < 6; i++)
|
|
||||||
buf[i+2] = BDADDR[5 - i];//Copy into buffer, has to be written reversed
|
|
||||||
|
|
||||||
//bmRequest = Host to device (0x00) | Class (0x20) | Interface (0x01) = 0x21, bRequest = Set Report (0x09), Report ID (0xF5), Report Type (Feature 0x03), interface (0x00), datalength, datalength, data)
|
|
||||||
pUsb->ctrlReq(bAddress,epInfo[PS3_CONTROL_PIPE].epAddr, bmREQ_HID_OUT, HID_REQUEST_SET_REPORT, 0xF5, 0x03, 0x00, 8, 8, buf, NULL);
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nBluetooth Address was set to: "));
|
|
||||||
for(int8_t i = 5; i > 0; i--) {
|
|
||||||
PrintHex<uint8_t>(my_bdaddr[i]);
|
|
||||||
Serial.print(":");
|
|
||||||
}
|
|
||||||
PrintHex<uint8_t>(my_bdaddr[0]);
|
|
||||||
#endif
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
void PS3USB::enable_sixaxis() { //Command used to enable the Dualshock 3 and Navigation controller to send data via USB
|
|
||||||
uint8_t cmd_buf[4];
|
|
||||||
cmd_buf[0] = 0x42;// Special PS3 Controller enable commands
|
|
||||||
cmd_buf[1] = 0x0c;
|
|
||||||
cmd_buf[2] = 0x00;
|
|
||||||
cmd_buf[3] = 0x00;
|
|
||||||
|
|
||||||
//bmRequest = Host to device (0x00) | Class (0x20) | Interface (0x01) = 0x21, bRequest = Set Report (0x09), Report ID (0xF4), Report Type (Feature 0x03), interface (0x00), datalength, datalength, data)
|
|
||||||
pUsb->ctrlReq(bAddress,epInfo[PS3_CONTROL_PIPE].epAddr, bmREQ_HID_OUT, HID_REQUEST_SET_REPORT, 0xF4, 0x03, 0x00, 4, 4, cmd_buf, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Playstation Move Controller commands */
|
|
||||||
void PS3USB::Move_Command(uint8_t* data, uint16_t nbytes) {
|
|
||||||
pUsb->outTransfer(bAddress, epInfo[ PS3_OUTPUT_PIPE ].epAddr, nbytes, data);
|
|
||||||
}
|
|
||||||
|
|
||||||
void PS3USB::moveSetBulb(uint8_t r, uint8_t g, uint8_t b) { //Use this to set the Color using RGB values
|
|
||||||
// set the Bulb's values into the write buffer
|
|
||||||
writeBuf[2] = r;
|
|
||||||
writeBuf[3] = g;
|
|
||||||
writeBuf[4] = b;
|
|
||||||
|
|
||||||
Move_Command(writeBuf, MOVE_REPORT_BUFFER_SIZE);
|
|
||||||
}
|
|
||||||
void PS3USB::moveSetBulb(Colors color) { //Use this to set the Color using the predefined colors in "enums.h"
|
|
||||||
moveSetBulb((uint8_t)(color >> 16),(uint8_t)(color >> 8),(uint8_t)(color));
|
|
||||||
}
|
|
||||||
void PS3USB::moveSetRumble(uint8_t rumble) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
if(rumble < 64 && rumble != 0) // The rumble value has to at least 64, or approximately 25% (64/255*100)
|
|
||||||
Notify(PSTR("\r\nThe rumble value has to at least 64, or approximately 25%"));
|
|
||||||
#endif
|
|
||||||
//set the rumble value into the write buffer
|
|
||||||
writeBuf[6] = rumble;
|
|
||||||
|
|
||||||
Move_Command(writeBuf, MOVE_REPORT_BUFFER_SIZE);
|
|
||||||
}
|
|
||||||
void PS3USB::setMoveBdaddr(uint8_t* BDADDR) {
|
|
||||||
/* Set the internal bluetooth address */
|
|
||||||
uint8_t buf[11];
|
|
||||||
buf[0] = 0x05;
|
|
||||||
buf[7] = 0x10;
|
|
||||||
buf[8] = 0x01;
|
|
||||||
buf[9] = 0x02;
|
|
||||||
buf[10] = 0x12;
|
|
||||||
|
|
||||||
for (uint8_t i = 0; i < 6; i++)
|
|
||||||
buf[i + 1] = BDADDR[i];
|
|
||||||
|
|
||||||
//bmRequest = Host to device (0x00) | Class (0x20) | Interface (0x01) = 0x21, bRequest = Set Report (0x09), Report ID (0x05), Report Type (Feature 0x03), interface (0x00), datalength, datalength, data)
|
|
||||||
pUsb->ctrlReq(bAddress,epInfo[PS3_CONTROL_PIPE].epAddr, bmREQ_HID_OUT, HID_REQUEST_SET_REPORT, 0x05, 0x03, 0x00,11,11, buf, NULL);
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nBluetooth Address was set to: "));
|
|
||||||
for(int8_t i = 5; i > 0; i--) {
|
|
||||||
PrintHex<uint8_t>(my_bdaddr[i]);
|
|
||||||
Serial.print(":");
|
|
||||||
}
|
|
||||||
PrintHex<uint8_t>(my_bdaddr[0]);
|
|
||||||
#endif
|
|
||||||
return;
|
|
||||||
}
|
|
131
PS3USB.h
131
PS3USB.h
|
@ -1,131 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _ps3usb_h_
|
|
||||||
#define _ps3usb_h_
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >= 100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include "WProgram.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "Usb.h"
|
|
||||||
#include "PS3Enums.h"
|
|
||||||
|
|
||||||
/* PS3 data taken from descriptors */
|
|
||||||
#define EP_MAXPKTSIZE 64 // max size for data via USB
|
|
||||||
|
|
||||||
/* Endpoint types */
|
|
||||||
#define EP_INTERRUPT 0x03
|
|
||||||
|
|
||||||
/* Names we give to the 3 ps3 pipes - this is only used for setting the bluetooth address into the ps3 controllers */
|
|
||||||
#define PS3_CONTROL_PIPE 0
|
|
||||||
#define PS3_OUTPUT_PIPE 1
|
|
||||||
#define PS3_INPUT_PIPE 2
|
|
||||||
|
|
||||||
//PID and VID of the different devices
|
|
||||||
#define PS3_VID 0x054C // Sony Corporation
|
|
||||||
#define PS3_PID 0x0268 // PS3 Controller DualShock 3
|
|
||||||
#define PS3NAVIGATION_PID 0x042F // Navigation controller
|
|
||||||
#define PS3MOVE_PID 0x03D5 // Motion controller
|
|
||||||
|
|
||||||
#define PS3_REPORT_BUFFER_SIZE 48 // Size of the output report buffer for the Dualshock and Navigation controllers
|
|
||||||
#define MOVE_REPORT_BUFFER_SIZE 7 // Size of the output report buffer for the Move Controller
|
|
||||||
|
|
||||||
// used in control endpoint header for HID Commands
|
|
||||||
#define bmREQ_HID_OUT USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
|
|
||||||
#define HID_REQUEST_SET_REPORT 0x09
|
|
||||||
|
|
||||||
#define PS3_MAX_ENDPOINTS 3
|
|
||||||
|
|
||||||
class PS3USB : public USBDeviceConfig {
|
|
||||||
public:
|
|
||||||
PS3USB(USB *pUsb, uint8_t btadr5=0, uint8_t btadr4=0, uint8_t btadr3=0, uint8_t btadr2=0, uint8_t btadr1=0, uint8_t btadr0=0);
|
|
||||||
|
|
||||||
// USBDeviceConfig implementation
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
virtual uint8_t Release();
|
|
||||||
virtual uint8_t Poll();
|
|
||||||
virtual uint8_t GetAddress() { return bAddress; };
|
|
||||||
virtual bool isReady() { return bPollEnable; };
|
|
||||||
|
|
||||||
void setBdaddr(uint8_t* BDADDR);
|
|
||||||
void setMoveBdaddr(uint8_t* BDADDR);
|
|
||||||
|
|
||||||
/* PS3 Controller Commands */
|
|
||||||
/*
|
|
||||||
getButtonPress will return true as long as the button is held down
|
|
||||||
While getButtonClick will only return it once
|
|
||||||
So you instance if you need to increase a variable once you would use getButtonClick,
|
|
||||||
but if you need to drive a robot forward you would use getButtonPress
|
|
||||||
*/
|
|
||||||
bool getButtonPress(Button b);
|
|
||||||
bool getButtonClick(Button b);
|
|
||||||
|
|
||||||
uint8_t getAnalogButton(AnalogButton a);
|
|
||||||
uint8_t getAnalogHat(AnalogHat a);
|
|
||||||
uint16_t getSensor(Sensor a);
|
|
||||||
double getAngle(Angle a);
|
|
||||||
bool getStatus(Status c);
|
|
||||||
String getStatusString();
|
|
||||||
|
|
||||||
/* Commands for Dualshock 3 and Navigation controller */
|
|
||||||
void setAllOff();
|
|
||||||
void setRumbleOff();
|
|
||||||
void setRumbleOn(Rumble mode);
|
|
||||||
void setLedOff(LED a);
|
|
||||||
void setLedOn(LED a);
|
|
||||||
void setLedToggle(LED a);
|
|
||||||
|
|
||||||
/* Commands for Motion controller only */
|
|
||||||
void moveSetBulb(uint8_t r, uint8_t g, uint8_t b);//Use this to set the Color using RGB values
|
|
||||||
void moveSetBulb(Colors color);//Use this to set the Color using the predefined colors in "enum Colors"
|
|
||||||
void moveSetRumble(uint8_t rumble);
|
|
||||||
|
|
||||||
bool PS3Connected;// Variable used to indicate if the normal playstation controller is successfully connected
|
|
||||||
bool PS3MoveConnected;// Variable used to indicate if the move controller is successfully connected
|
|
||||||
bool PS3NavigationConnected;// Variable used to indicate if the navigation controller is successfully connected */
|
|
||||||
|
|
||||||
protected:
|
|
||||||
/* mandatory members */
|
|
||||||
USB *pUsb;
|
|
||||||
uint8_t bAddress; // device address
|
|
||||||
EpInfo epInfo[PS3_MAX_ENDPOINTS]; //endpoint info structure
|
|
||||||
|
|
||||||
private:
|
|
||||||
bool bPollEnable;
|
|
||||||
|
|
||||||
uint32_t timer; // used to continuously set PS3 Move controller Bulb and rumble values
|
|
||||||
|
|
||||||
uint32_t ButtonState;
|
|
||||||
uint32_t OldButtonState;
|
|
||||||
uint32_t ButtonClickState;
|
|
||||||
|
|
||||||
uint8_t my_bdaddr[6]; // Change to your dongles Bluetooth address in the constructor
|
|
||||||
uint8_t readBuf[EP_MAXPKTSIZE]; // General purpose buffer for input data
|
|
||||||
uint8_t writeBuf[EP_MAXPKTSIZE]; // General purpose buffer for output data
|
|
||||||
|
|
||||||
void readReport(); // read incoming data
|
|
||||||
void printReport(); // print incoming date - Uncomment for debugging
|
|
||||||
|
|
||||||
/* Private commands */
|
|
||||||
void PS3_Command(uint8_t* data, uint16_t nbytes);
|
|
||||||
void enable_sixaxis(); // Command used to enable the Dualshock 3 and Navigation controller to send data via USB
|
|
||||||
void Move_Command(uint8_t* data, uint16_t nbytes);
|
|
||||||
};
|
|
||||||
#endif
|
|
146
README.md
146
README.md
|
@ -1,146 +0,0 @@
|
||||||
# USB Host Library Rev.2.0
|
|
||||||
|
|
||||||
The code is released under the GNU General Public License.
|
|
||||||
__________
|
|
||||||
|
|
||||||
# Summary
|
|
||||||
This is Revision 2.0 of MAX3421E-based USB Host Shield Library for AVR's.
|
|
||||||
|
|
||||||
Project main web site is: <http://www.circuitsathome.com>.
|
|
||||||
|
|
||||||
Some information can also be found at: <http://blog.tkjelectronics.dk/>.
|
|
||||||
|
|
||||||
The shield can be purchased at the main site: <http://www.circuitsathome.com/products-page/arduino-shields>.
|
|
||||||
|
|
||||||
[![USB Host Shield](http://www.circuitsathome.com/wp/wp-content/uploads/2012/02/UHS_20_main-288x216.jpg)](http://www.circuitsathome.com/products-page/arduino-shields)
|
|
||||||
|
|
||||||
For more information about the hardware see the [Hardware Manual](http://www.circuitsathome.com/usb-host-shield-hardware-manual).
|
|
||||||
|
|
||||||
# Developed By
|
|
||||||
|
|
||||||
* __Oleg Mazurov, Circuits@Home__ - <mazurov@circuitsathome.com>
|
|
||||||
* Developer of the USB Core, HID, FTDI, ADK, ACM, and PL2303 libraries
|
|
||||||
* __Kristian Lauszus, TKJ Electronics__ - <kristianl@tkjelectronics.com>
|
|
||||||
* Developer of the BTD, SPP, PS3, Wii, and Xbox libraries
|
|
||||||
|
|
||||||
# How to use the library
|
|
||||||
|
|
||||||
### Arduino ADK
|
|
||||||
To use this library with the official [Arduino ADK](http://arduino.cc/en/Main/ArduinoBoardADK) uncomment the following line in [avrpins.h](https://github.com/felis/USB_Host_Shield_2.0/blob/master/avrpins.h):
|
|
||||||
|
|
||||||
<code>
|
|
||||||
\#define BOARD\_MEGA_ADK
|
|
||||||
</code>
|
|
||||||
|
|
||||||
### [Bluetooth libraries](https://github.com/felis/USB_Host_Shield_2.0/blob/master/BTD.cpp)
|
|
||||||
|
|
||||||
The [BTD library](https://github.com/felis/USB_Host_Shield_2.0/blob/master/BTD.cpp) is a general purpose library for an ordinary Bluetooth dongle.
|
|
||||||
This library make it easy to add support for different Bluetooth services like a PS3 or a Wii controller or SPP which is a virtual serial port via Bluetooth.
|
|
||||||
Some different examples can be found in the [example directory](https://github.com/felis/USB_Host_Shield_2.0/tree/master/examples/Bluetooth).
|
|
||||||
|
|
||||||
The BTD library will also make it possible to use multiple services at once, the following example sketch is an example of this:
|
|
||||||
<https://github.com/felis/USB_Host_Shield_2.0/blob/master/examples/Bluetooth/PS3SPP/PS3SPP.ino>
|
|
||||||
|
|
||||||
### [SPP library](https://github.com/felis/USB_Host_Shield_2.0/blob/master/SPP.cpp)
|
|
||||||
|
|
||||||
SPP stands for "Serial Port Profile" and is a Bluetooth protocol that implements a virtual comport which allows you to send data back and forth from your computer/phone to your Arduino via Bluetooth.
|
|
||||||
It has been tested successfully on Windows, Mac OS X, Linux, and Android.
|
|
||||||
Unfortunately Google broke something in Android 4.2, so it's currently not working in this version of Android.
|
|
||||||
|
|
||||||
More information can be found at these blog posts:
|
|
||||||
|
|
||||||
* <http://www.circuitsathome.com/mcu/bluetooth-rfcommspp-service-support-for-usb-host-2-0-library-released>
|
|
||||||
* <http://blog.tkjelectronics.dk/2012/07/rfcommspp-library-for-arduino/>
|
|
||||||
|
|
||||||
To implement the SPP protocol I used a Bluetooth sniffing tool called [PacketLogger](http://www.tkjelectronics.com/uploads/PacketLogger.zip) developed by Apple.
|
|
||||||
It enables me to see the Bluetooth communication between my Mac and any device.
|
|
||||||
|
|
||||||
### PS3 Library
|
|
||||||
|
|
||||||
These libraries consist of the [PS3BT](https://github.com/felis/USB_Host_Shield_2.0/blob/master/PS3BT.cpp) and [PS3USB](https://github.com/felis/USB_Host_Shield_2.0/blob/master/PS3USB.cpp). These libraries allows you to use a Dualshock 3, Navigation or a Motion controller with the USB Host Shield both via Bluetooth and USB.
|
|
||||||
|
|
||||||
In order to use your Playstation controller via Bluetooth you have to set the Bluetooth address of the dongle internally to your PS3 Controller. This can be achieved by plugging the controller in via USB and letting the library set it automatically.
|
|
||||||
|
|
||||||
__Note:__ To obtain the address you have to plug in the Bluetooth dongle before connecting the controller, or alternatively you could set it in code like so: <https://github.com/felis/USB_Host_Shield_2.0/blob/master/examples/Bluetooth/PS3BT/PS3BT.ino#L12>.
|
|
||||||
|
|
||||||
For more information about the PS3 protocol see the official wiki: <https://github.com/felis/USB_Host_Shield_2.0/wiki/PS3-Information>.
|
|
||||||
|
|
||||||
Also take a look at the blog posts:
|
|
||||||
|
|
||||||
* <http://blog.tkjelectronics.dk/2012/01/ps3-controller-bt-library-for-arduino/>
|
|
||||||
* <http://www.circuitsathome.com/mcu/sony-ps3-controller-support-added-to-usb-host-library>
|
|
||||||
* <http://www.circuitsathome.com/mcu/arduino/interfacing-ps3-controllers-via-usb>
|
|
||||||
|
|
||||||
A special thanks go to the following people:
|
|
||||||
|
|
||||||
1. _Richard Ibbotson_ who made this excellent guide: <http://www.circuitsathome.com/mcu/ps3-and-wiimote-game-controllers-on-the-arduino-host-shield-part>
|
|
||||||
2. _Tomoyuki Tanaka_ for releasing his code for the Arduino USB Host shield connected to the wiimote: <http://www.circuitsathome.com/mcu/rc-car-controlled-by-wii-remote-on-arduino>
|
|
||||||
|
|
||||||
Also a big thanks all the people behind these sites about the Motion controller:
|
|
||||||
|
|
||||||
* <http://thp.io/2010/psmove/>
|
|
||||||
* <http://www.copenhagengamecollective.org/unimove/>
|
|
||||||
* <https://github.com/thp/psmoveapi>
|
|
||||||
* <http://code.google.com/p/moveonpc/>
|
|
||||||
|
|
||||||
### Xbox 360 Library
|
|
||||||
|
|
||||||
The library support one Xbox 360 via USB or up to four Xbox 360 controllers wirelessly by using a [Xbox 360 wireless receiver](http://blog.tkjelectronics.dk/wp-content/uploads/xbox360-wireless-receiver.jpg).
|
|
||||||
|
|
||||||
To use it via USB use the [XBOXUSB](https://github.com/felis/USB_Host_Shield_2.0/blob/master/XBOXUSB.cpp) library or to use it wirelessly use the [XBOXRECV](https://github.com/felis/USB_Host_Shield_2.0/blob/master/XBOXRECV.cpp) library.
|
|
||||||
|
|
||||||
__Note that a Wireless controller can NOT be used via USB!__
|
|
||||||
|
|
||||||
Examples code can be found in the [examples directory](https://github.com/felis/USB_Host_Shield_2.0/tree/master/examples/Xbox).
|
|
||||||
|
|
||||||
Also see the following blog posts:
|
|
||||||
|
|
||||||
* <http://www.circuitsathome.com/mcu/xbox360-controller-support-added-to-usb-host-shield-2-0-library>
|
|
||||||
* <http://blog.tkjelectronics.dk/2012/07/xbox-360-controller-support-added-to-the-usb-host-library/>
|
|
||||||
* <http://blog.tkjelectronics.dk/2012/12/xbox-360-receiver-added-to-the-usb-host-library/>
|
|
||||||
|
|
||||||
All the information regarding the Xbox 360 controller protocol are form these sites:
|
|
||||||
|
|
||||||
* <http://tattiebogle.net/index.php/ProjectRoot/Xbox360Controller/UsbInfo>
|
|
||||||
* <http://tattiebogle.net/index.php/ProjectRoot/Xbox360Controller/WirelessUsbInfo>
|
|
||||||
* <https://github.com/Grumbel/xboxdrv/blob/master/PROTOCOL>
|
|
||||||
|
|
||||||
### [Wii library](https://github.com/felis/USB_Host_Shield_2.0/blob/master/Wii.cpp)
|
|
||||||
|
|
||||||
The [Wii](https://github.com/felis/USB_Host_Shield_2.0/blob/master/Wii.cpp) library support the Wiimote, but also the Nunchuch and Motion Plus extension via Bluetooth.
|
|
||||||
|
|
||||||
First you have to pair with the controller, this is done automatically by the library if you create the instance like so:
|
|
||||||
|
|
||||||
<code>
|
|
||||||
WII Wii(&Btd,PAIR);
|
|
||||||
</code>
|
|
||||||
|
|
||||||
And then press 1 & 2 at once on the Wiimote.
|
|
||||||
|
|
||||||
After that you can simply create the instance like so:
|
|
||||||
|
|
||||||
<code>
|
|
||||||
WII Wii(&Btd);
|
|
||||||
</code>
|
|
||||||
|
|
||||||
Then just press any button any button on the Wiimote and it will connect to the dongle.
|
|
||||||
|
|
||||||
Take a look at the example for more information: <https://github.com/felis/USB_Host_Shield_2.0/blob/master/examples/Bluetooth/Wii/Wii.ino>.
|
|
||||||
|
|
||||||
Also take a look at the blog post:
|
|
||||||
|
|
||||||
* <http://blog.tkjelectronics.dk/2012/08/wiimote-added-to-usb-host-library/>
|
|
||||||
|
|
||||||
All the information about the Wii controllers are from these sites:
|
|
||||||
|
|
||||||
* <http://wiibrew.org/wiki/Wiimote>
|
|
||||||
* <http://wiibrew.org/wiki/Wiimote/Extension_Controllers>
|
|
||||||
* <http://wiibrew.org/wiki/Wiimote/Extension_Controllers/Nunchuck>
|
|
||||||
* <http://wiibrew.org/wiki/Wiimote/Extension_Controllers/Wii_Motion_Plus>
|
|
||||||
* The old library created by _Tomoyuki Tanaka_: <https://github.com/moyuchin/WiiRemote_on_Arduino> also helped a lot.
|
|
||||||
|
|
||||||
# FAQ
|
|
||||||
|
|
||||||
> When I plug my device into the USB connector nothing happens?
|
|
||||||
|
|
||||||
Try to connect a external power supply to the Arduino - this solves the problem in most cases.
|
|
910
SPP.cpp
910
SPP.cpp
|
@ -1,910 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "SPP.h"
|
|
||||||
#define DEBUG // Uncomment to print data for debugging
|
|
||||||
//#define EXTRADEBUG // Uncomment to get even more debugging data
|
|
||||||
//#define PRINTREPORT // Uncomment to print the report sent to the Arduino
|
|
||||||
|
|
||||||
/*
|
|
||||||
* CRC (reversed crc) lookup table as calculated by the table generator in ETSI TS 101 369 V6.3.0.
|
|
||||||
*/
|
|
||||||
const uint8_t rfcomm_crc_table[256] PROGMEM = { /* reversed, 8-bit, poly=0x07 */
|
|
||||||
0x00, 0x91, 0xE3, 0x72, 0x07, 0x96, 0xE4, 0x75, 0x0E, 0x9F, 0xED, 0x7C, 0x09, 0x98, 0xEA, 0x7B,
|
|
||||||
0x1C, 0x8D, 0xFF, 0x6E, 0x1B, 0x8A, 0xF8, 0x69, 0x12, 0x83, 0xF1, 0x60, 0x15, 0x84, 0xF6, 0x67,
|
|
||||||
0x38, 0xA9, 0xDB, 0x4A, 0x3F, 0xAE, 0xDC, 0x4D, 0x36, 0xA7, 0xD5, 0x44, 0x31, 0xA0, 0xD2, 0x43,
|
|
||||||
0x24, 0xB5, 0xC7, 0x56, 0x23, 0xB2, 0xC0, 0x51, 0x2A, 0xBB, 0xC9, 0x58, 0x2D, 0xBC, 0xCE, 0x5F,
|
|
||||||
0x70, 0xE1, 0x93, 0x02, 0x77, 0xE6, 0x94, 0x05, 0x7E, 0xEF, 0x9D, 0x0C, 0x79, 0xE8, 0x9A, 0x0B,
|
|
||||||
0x6C, 0xFD, 0x8F, 0x1E, 0x6B, 0xFA, 0x88, 0x19, 0x62, 0xF3, 0x81, 0x10, 0x65, 0xF4, 0x86, 0x17,
|
|
||||||
0x48, 0xD9, 0xAB, 0x3A, 0x4F, 0xDE, 0xAC, 0x3D, 0x46, 0xD7, 0xA5, 0x34, 0x41, 0xD0, 0xA2, 0x33,
|
|
||||||
0x54, 0xC5, 0xB7, 0x26, 0x53, 0xC2, 0xB0, 0x21, 0x5A, 0xCB, 0xB9, 0x28, 0x5D, 0xCC, 0xBE, 0x2F,
|
|
||||||
0xE0, 0x71, 0x03, 0x92, 0xE7, 0x76, 0x04, 0x95, 0xEE, 0x7F, 0x0D, 0x9C, 0xE9, 0x78, 0x0A, 0x9B,
|
|
||||||
0xFC, 0x6D, 0x1F, 0x8E, 0xFB, 0x6A, 0x18, 0x89, 0xF2, 0x63, 0x11, 0x80, 0xF5, 0x64, 0x16, 0x87,
|
|
||||||
0xD8, 0x49, 0x3B, 0xAA, 0xDF, 0x4E, 0x3C, 0xAD, 0xD6, 0x47, 0x35, 0xA4, 0xD1, 0x40, 0x32, 0xA3,
|
|
||||||
0xC4, 0x55, 0x27, 0xB6, 0xC3, 0x52, 0x20, 0xB1, 0xCA, 0x5B, 0x29, 0xB8, 0xCD, 0x5C, 0x2E, 0xBF,
|
|
||||||
0x90, 0x01, 0x73, 0xE2, 0x97, 0x06, 0x74, 0xE5, 0x9E, 0x0F, 0x7D, 0xEC, 0x99, 0x08, 0x7A, 0xEB,
|
|
||||||
0x8C, 0x1D, 0x6F, 0xFE, 0x8B, 0x1A, 0x68, 0xF9, 0x82, 0x13, 0x61, 0xF0, 0x85, 0x14, 0x66, 0xF7,
|
|
||||||
0xA8, 0x39, 0x4B, 0xDA, 0xAF, 0x3E, 0x4C, 0xDD, 0xA6, 0x37, 0x45, 0xD4, 0xA1, 0x30, 0x42, 0xD3,
|
|
||||||
0xB4, 0x25, 0x57, 0xC6, 0xB3, 0x22, 0x50, 0xC1, 0xBA, 0x2B, 0x59, 0xC8, 0xBD, 0x2C, 0x5E, 0xCF
|
|
||||||
};
|
|
||||||
|
|
||||||
SPP::SPP(BTD *p, const char* name, const char* pin):
|
|
||||||
pBtd(p) // Pointer to BTD class instance - mandatory
|
|
||||||
{
|
|
||||||
if (pBtd)
|
|
||||||
pBtd->registerServiceClass(this); // Register it as a Bluetooth service
|
|
||||||
|
|
||||||
pBtd->btdName = name;
|
|
||||||
pBtd->btdPin = pin;
|
|
||||||
|
|
||||||
/* Set device cid for the SDP and RFCOMM channelse */
|
|
||||||
sdp_dcid[0] = 0x50; // 0x0050
|
|
||||||
sdp_dcid[1] = 0x00;
|
|
||||||
rfcomm_dcid[0] = 0x51; // 0x0051
|
|
||||||
rfcomm_dcid[1] = 0x00;
|
|
||||||
|
|
||||||
Reset();
|
|
||||||
}
|
|
||||||
void SPP::Reset() {
|
|
||||||
connected = false;
|
|
||||||
RFCOMMConnected = false;
|
|
||||||
SDPConnected = false;
|
|
||||||
l2cap_sdp_state = L2CAP_SDP_WAIT;
|
|
||||||
l2cap_rfcomm_state = L2CAP_RFCOMM_WAIT;
|
|
||||||
l2cap_event_flag = 0;
|
|
||||||
}
|
|
||||||
void SPP::disconnect(){
|
|
||||||
connected = false;
|
|
||||||
// First the two L2CAP channels has to be disconencted and then the HCI connection
|
|
||||||
if(RFCOMMConnected)
|
|
||||||
pBtd->l2cap_disconnection_request(hci_handle,0x0A, rfcomm_scid, rfcomm_dcid);
|
|
||||||
if(RFCOMMConnected && SDPConnected)
|
|
||||||
delay(1); // Add delay between commands
|
|
||||||
if(SDPConnected)
|
|
||||||
pBtd->l2cap_disconnection_request(hci_handle,0x0B, sdp_scid, sdp_dcid);
|
|
||||||
l2cap_sdp_state = L2CAP_DISCONNECT_RESPONSE;
|
|
||||||
}
|
|
||||||
void SPP::ACLData(uint8_t* l2capinbuf) {
|
|
||||||
if(!pBtd->l2capConnectionClaimed && !connected && !RFCOMMConnected && !SDPConnected) {
|
|
||||||
if (l2capinbuf[8] == L2CAP_CMD_CONNECTION_REQUEST) {
|
|
||||||
if(((l2capinbuf[12] | (l2capinbuf[13] << 8)) == SDP_PSM) || ((l2capinbuf[12] | (l2capinbuf[13] << 8)) == RFCOMM_PSM)) {
|
|
||||||
pBtd->l2capConnectionClaimed = true; // Claim that the incoming connection belongs to this service
|
|
||||||
hci_handle = pBtd->hci_handle; // Store the HCI Handle for the connection
|
|
||||||
l2cap_sdp_state = L2CAP_SDP_WAIT; // Reset state
|
|
||||||
l2cap_rfcomm_state = L2CAP_RFCOMM_WAIT; // Reset state
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (((l2capinbuf[0] | (l2capinbuf[1] << 8)) == (hci_handle | 0x2000))) { // acl_handle_ok
|
|
||||||
if ((l2capinbuf[6] | (l2capinbuf[7] << 8)) == 0x0001) { //l2cap_control - Channel ID for ACL-U
|
|
||||||
if (l2capinbuf[8] == L2CAP_CMD_COMMAND_REJECT) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nL2CAP Command Rejected - Reason: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[13]);
|
|
||||||
Notify(PSTR(" "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[12]);
|
|
||||||
Notify(PSTR(" Data: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[17]);
|
|
||||||
Notify(PSTR(" "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[16]);
|
|
||||||
Notify(PSTR(" "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[15]);
|
|
||||||
Notify(PSTR(" "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[14]);
|
|
||||||
#endif
|
|
||||||
} else if (l2capinbuf[8] == L2CAP_CMD_CONNECTION_REQUEST) {
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR("\r\nL2CAP Connection Request - PSM: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[13]);
|
|
||||||
Notify(PSTR(" "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[12]);
|
|
||||||
Notify(PSTR(" SCID: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[15]);
|
|
||||||
Notify(PSTR(" "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[14]);
|
|
||||||
Notify(PSTR(" Identifier: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[9]);
|
|
||||||
#endif
|
|
||||||
if ((l2capinbuf[12] | (l2capinbuf[13] << 8)) == SDP_PSM) { // It doesn't matter if it receives another reqeust, since it waits for the channel to disconnect in the L2CAP_SDP_DONE state, and the l2cap_event_flag will be cleared if so
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
sdp_scid[0] = l2capinbuf[14];
|
|
||||||
sdp_scid[1] = l2capinbuf[15];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_CONNECTION_SDP_REQUEST;
|
|
||||||
} else if ((l2capinbuf[12] | (l2capinbuf[13] << 8)) == RFCOMM_PSM) { // ----- || -----
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
rfcomm_scid[0] = l2capinbuf[14];
|
|
||||||
rfcomm_scid[1] = l2capinbuf[15];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_CONNECTION_RFCOMM_REQUEST;
|
|
||||||
}
|
|
||||||
} else if (l2capinbuf[8] == L2CAP_CMD_CONFIG_RESPONSE) {
|
|
||||||
if ((l2capinbuf[16] | (l2capinbuf[17] << 8)) == 0x0000) { // Success
|
|
||||||
if (l2capinbuf[12] == sdp_dcid[0] && l2capinbuf[13] == sdp_dcid[1]) {
|
|
||||||
//Serial.print("\r\nSDP Configuration Complete");
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_CONFIG_SDP_SUCCESS;
|
|
||||||
}
|
|
||||||
else if (l2capinbuf[12] == rfcomm_dcid[0] && l2capinbuf[13] == rfcomm_dcid[1]) {
|
|
||||||
//Serial.print("\r\nRFCOMM Configuration Complete");
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_CONFIG_RFCOMM_SUCCESS;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (l2capinbuf[8] == L2CAP_CMD_CONFIG_REQUEST) {
|
|
||||||
if (l2capinbuf[12] == sdp_dcid[0] && l2capinbuf[13] == sdp_dcid[1]) {
|
|
||||||
//Serial.print("\r\nSDP Configuration Request");
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_CONFIG_SDP_REQUEST;
|
|
||||||
}
|
|
||||||
else if (l2capinbuf[12] == rfcomm_dcid[0] && l2capinbuf[13] == rfcomm_dcid[1]) {
|
|
||||||
//Serial.print("\r\nRFCOMM Configuration Request");
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_CONFIG_RFCOMM_REQUEST;
|
|
||||||
}
|
|
||||||
} else if (l2capinbuf[8] == L2CAP_CMD_DISCONNECT_REQUEST) {
|
|
||||||
if (l2capinbuf[12] == sdp_dcid[0] && l2capinbuf[13] == sdp_dcid[1]) {
|
|
||||||
//Notify(PSTR("\r\nDisconnect Request: SDP Channel"));
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_DISCONNECT_SDP_REQUEST;
|
|
||||||
} else if (l2capinbuf[12] == rfcomm_dcid[0] && l2capinbuf[13] == rfcomm_dcid[1]) {
|
|
||||||
//Notify(PSTR("\r\nDisconnect Request: RFCOMM Channel"));
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_DISCONNECT_RFCOMM_REQUEST;
|
|
||||||
}
|
|
||||||
} else if (l2capinbuf[8] == L2CAP_CMD_DISCONNECT_RESPONSE) {
|
|
||||||
if (l2capinbuf[12] == sdp_scid[0] && l2capinbuf[13] == sdp_scid[1]) {
|
|
||||||
//Serial.print("\r\nDisconnect Response: SDP Channel");
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_DISCONNECT_RESPONSE;
|
|
||||||
} else if (l2capinbuf[12] == rfcomm_scid[0] && l2capinbuf[13] == rfcomm_scid[1]) {
|
|
||||||
//Serial.print("\r\nDisconnect Response: RFCOMM Channel");
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
l2cap_event_flag |= L2CAP_FLAG_DISCONNECT_RESPONSE;
|
|
||||||
}
|
|
||||||
} else if (l2capinbuf[8] == L2CAP_CMD_INFORMATION_REQUEST) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nInformation request"));
|
|
||||||
#endif
|
|
||||||
identifier = l2capinbuf[9];
|
|
||||||
pBtd->l2cap_information_response(hci_handle,identifier,l2capinbuf[12],l2capinbuf[13]);
|
|
||||||
}
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
else {
|
|
||||||
Notify(PSTR("\r\nL2CAP Unknown Signaling Command: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[8]);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
} else if (l2capinbuf[6] == sdp_dcid[0] && l2capinbuf[7] == sdp_dcid[1]) { // SDP
|
|
||||||
if(l2capinbuf[8] == SDP_SERVICE_SEARCH_ATTRIBUTE_REQUEST_PDU) {
|
|
||||||
/*
|
|
||||||
Serial.print("\r\nUUID: 0x");
|
|
||||||
Serial.print(l2capinbuf[16],HEX);
|
|
||||||
Serial.print(" ");
|
|
||||||
Serial.print(l2capinbuf[17],HEX);
|
|
||||||
*/
|
|
||||||
if ((l2capinbuf[16] << 8 | l2capinbuf[17]) == SERIALPORT_UUID) {
|
|
||||||
if(firstMessage) {
|
|
||||||
serialPortResponse1(l2capinbuf[9],l2capinbuf[10]);
|
|
||||||
firstMessage = false;
|
|
||||||
} else {
|
|
||||||
serialPortResponse2(l2capinbuf[9],l2capinbuf[10]); // Serialport continuation state
|
|
||||||
firstMessage = true;
|
|
||||||
}
|
|
||||||
} else if ((l2capinbuf[16] << 8 | l2capinbuf[17]) == L2CAP_UUID) {
|
|
||||||
if(firstMessage) {
|
|
||||||
l2capResponse1(l2capinbuf[9],l2capinbuf[10]);
|
|
||||||
firstMessage = false;
|
|
||||||
} else {
|
|
||||||
l2capResponse2(l2capinbuf[9],l2capinbuf[10]); // L2CAP continuation state
|
|
||||||
firstMessage = true;
|
|
||||||
}
|
|
||||||
} else
|
|
||||||
serviceNotSupported(l2capinbuf[9],l2capinbuf[10]); // The service is not supported
|
|
||||||
}
|
|
||||||
} else if (l2capinbuf[6] == rfcomm_dcid[0] && l2capinbuf[7] == rfcomm_dcid[1]) { // RFCOMM
|
|
||||||
rfcommChannel = l2capinbuf[8] & 0xF8;
|
|
||||||
rfcommDirection = l2capinbuf[8] & 0x04;
|
|
||||||
rfcommCommandResponse = l2capinbuf[8] & 0x02;
|
|
||||||
rfcommChannelType = l2capinbuf[9] & 0xEF;
|
|
||||||
rfcommPfBit = l2capinbuf[9] & 0x10;
|
|
||||||
|
|
||||||
if(rfcommChannel>>3 != 0x00)
|
|
||||||
rfcommChannelConnection = rfcommChannel;
|
|
||||||
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR("\r\nRFCOMM Channel: "));
|
|
||||||
Serial.print(rfcommChannel>>3,HEX);
|
|
||||||
Notify(PSTR(" Direction: "));
|
|
||||||
Serial.print(rfcommDirection>>2,HEX);
|
|
||||||
Notify(PSTR(" CommandResponse: "));
|
|
||||||
Serial.print(rfcommCommandResponse>>1,HEX);
|
|
||||||
Notify(PSTR(" ChannelType: "));
|
|
||||||
Serial.print(rfcommChannelType,HEX);
|
|
||||||
Notify(PSTR(" PF_BIT: "));
|
|
||||||
Serial.print(rfcommPfBit,HEX);
|
|
||||||
#endif
|
|
||||||
if (rfcommChannelType == RFCOMM_DISC) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nReceived Disconnect RFCOMM Command on channel: "));
|
|
||||||
Serial.print(rfcommChannel>>3,HEX);
|
|
||||||
#endif
|
|
||||||
connected = false;
|
|
||||||
sendRfcomm(rfcommChannel,rfcommDirection,rfcommCommandResponse,RFCOMM_UA,rfcommPfBit,rfcommbuf,0x00); // UA Command
|
|
||||||
}
|
|
||||||
if(connected) {
|
|
||||||
/* Read the incoming message */
|
|
||||||
if(rfcommChannelType == RFCOMM_UIH && rfcommChannel == rfcommChannelConnection) {
|
|
||||||
uint8_t length = l2capinbuf[10] >> 1; // Get length
|
|
||||||
uint8_t offset = l2capinbuf[4]-length-4; // See if there is credit
|
|
||||||
if(rfcommAvailable + length <= sizeof(rfcommDataBuffer)) { // Don't add data to buffer if it would be full
|
|
||||||
for(uint8_t i = 0; i < length; i++)
|
|
||||||
rfcommDataBuffer[rfcommAvailable+i] = l2capinbuf[11+i+offset];
|
|
||||||
rfcommAvailable += length;
|
|
||||||
}
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR("\r\nRFCOMM Data Available: "));
|
|
||||||
Serial.print(rfcommAvailable);
|
|
||||||
if (offset) {
|
|
||||||
Notify(PSTR(" - Credit: 0x"));
|
|
||||||
Serial.print(l2capinbuf[11],HEX);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
#ifdef PRINTREPORT // Uncomment "#define PRINTREPORT" to print the report send to the Arduino via Bluetooth
|
|
||||||
for(uint8_t i = 0; i < length; i++)
|
|
||||||
Serial.write(l2capinbuf[i+11+offset]);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if(rfcommChannelType == RFCOMM_SABM) { // SABM Command - this is sent twice: once for channel 0 and then for the channel to establish
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nReceived SABM Command"));
|
|
||||||
#endif
|
|
||||||
sendRfcomm(rfcommChannel,rfcommDirection,rfcommCommandResponse,RFCOMM_UA,rfcommPfBit,rfcommbuf,0x00); // UA Command
|
|
||||||
} else if(rfcommChannelType == RFCOMM_UIH && l2capinbuf[11] == BT_RFCOMM_PN_CMD) { // UIH Parameter Negotiation Command
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nReceived UIH Parameter Negotiation Command"));
|
|
||||||
#endif
|
|
||||||
rfcommbuf[0] = BT_RFCOMM_PN_RSP; // UIH Parameter Negotiation Response
|
|
||||||
rfcommbuf[1] = l2capinbuf[12]; // Length and shiftet like so: length << 1 | 1
|
|
||||||
rfcommbuf[2] = l2capinbuf[13]; // Channel: channel << 1 | 1
|
|
||||||
rfcommbuf[3] = 0xE0; // Pre difined for Bluetooth, see 5.5.3 of TS 07.10 Adaption for RFCOMM
|
|
||||||
rfcommbuf[4] = 0x00; // Priority
|
|
||||||
rfcommbuf[5] = 0x00; // Timer
|
|
||||||
rfcommbuf[6] = 0x40; // Max Fram Size LSB - we will just set this to 64
|
|
||||||
rfcommbuf[7] = 0x00; // Max Fram Size MSB
|
|
||||||
rfcommbuf[8] = 0x00; // MaxRatransm.
|
|
||||||
rfcommbuf[9] = 0x00; // Number of Frames
|
|
||||||
sendRfcomm(rfcommChannel,rfcommDirection,0,RFCOMM_UIH,rfcommPfBit,rfcommbuf,0x0A);
|
|
||||||
} else if(rfcommChannelType == RFCOMM_UIH && l2capinbuf[11] == BT_RFCOMM_MSC_CMD) { // UIH Modem Status Command
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nSend UIH Modem Status Response"));
|
|
||||||
#endif
|
|
||||||
rfcommbuf[0] = BT_RFCOMM_MSC_RSP; // UIH Modem Status Response
|
|
||||||
rfcommbuf[1] = 2 << 1 | 1; // Length and shiftet like so: length << 1 | 1
|
|
||||||
rfcommbuf[2] = l2capinbuf[13]; // Channel: (1 << 0) | (1 << 1) | (0 << 2) | (channel << 3)
|
|
||||||
rfcommbuf[3] = l2capinbuf[14];
|
|
||||||
sendRfcomm(rfcommChannel,rfcommDirection,0,RFCOMM_UIH,rfcommPfBit,rfcommbuf,0x04);
|
|
||||||
|
|
||||||
delay(1);
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nSend UIH Modem Status Command"));
|
|
||||||
#endif
|
|
||||||
rfcommbuf[0] = BT_RFCOMM_MSC_CMD; // UIH Modem Status Command
|
|
||||||
rfcommbuf[1] = 2 << 1 | 1; // Length and shiftet like so: length << 1 | 1
|
|
||||||
rfcommbuf[2] = l2capinbuf[13]; // Channel: (1 << 0) | (1 << 1) | (0 << 2) | (channel << 3)
|
|
||||||
rfcommbuf[3] = 0x8D; // Can receive frames (YES), Ready to Communicate (YES), Ready to Receive (YES), Incomig Call (NO), Data is Value (YES)
|
|
||||||
|
|
||||||
sendRfcomm(rfcommChannel,rfcommDirection,0,RFCOMM_UIH,rfcommPfBit,rfcommbuf,0x04);
|
|
||||||
} else if(rfcommChannelType == RFCOMM_UIH && l2capinbuf[11] == BT_RFCOMM_MSC_RSP) { // UIH Modem Status Response
|
|
||||||
if(!creditSent) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nSend UIH Command with credit"));
|
|
||||||
#endif
|
|
||||||
sendRfcommCredit(rfcommChannelConnection,rfcommDirection,0,RFCOMM_UIH,0x10,sizeof(rfcommDataBuffer)); // Send credit
|
|
||||||
creditSent = true;
|
|
||||||
timer = millis();
|
|
||||||
waitForLastCommand = true;
|
|
||||||
}
|
|
||||||
} else if(rfcommChannelType == RFCOMM_UIH && l2capinbuf[10] == 0x01) { // UIH Command with credit
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nReceived UIH Command with credit"));
|
|
||||||
#endif
|
|
||||||
} else if(rfcommChannelType == RFCOMM_UIH && l2capinbuf[11] == BT_RFCOMM_RPN_CMD) { // UIH Remote Port Negotiation Command
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nReceived UIH Remote Port Negotiation Command"));
|
|
||||||
#endif
|
|
||||||
rfcommbuf[0] = BT_RFCOMM_RPN_RSP; // Command
|
|
||||||
rfcommbuf[1] = l2capinbuf[12]; // Length and shiftet like so: length << 1 | 1
|
|
||||||
rfcommbuf[2] = l2capinbuf[13]; // Channel: channel << 1 | 1
|
|
||||||
rfcommbuf[3] = l2capinbuf[14]; // Pre difined for Bluetooth, see 5.5.3 of TS 07.10 Adaption for RFCOMM
|
|
||||||
rfcommbuf[4] = l2capinbuf[15]; // Priority
|
|
||||||
rfcommbuf[5] = l2capinbuf[16]; // Timer
|
|
||||||
rfcommbuf[6] = l2capinbuf[17]; // Max Fram Size LSB
|
|
||||||
rfcommbuf[7] = l2capinbuf[18]; // Max Fram Size MSB
|
|
||||||
rfcommbuf[8] = l2capinbuf[19]; // MaxRatransm.
|
|
||||||
rfcommbuf[9] = l2capinbuf[20]; // Number of Frames
|
|
||||||
sendRfcomm(rfcommChannel,rfcommDirection,0,RFCOMM_UIH,rfcommPfBit,rfcommbuf,0x0A); // UIH Remote Port Negotiation Response
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nRFCOMM Connection is now established\r\n"));
|
|
||||||
#endif
|
|
||||||
waitForLastCommand = false;
|
|
||||||
creditSent = false;
|
|
||||||
connected = true; // The RFCOMM channel is now established
|
|
||||||
}
|
|
||||||
#ifdef DEBUG
|
|
||||||
else if(rfcommChannelType != RFCOMM_DISC) {
|
|
||||||
Notify(PSTR("\r\nUnsupported RFCOMM Data - ChannelType: "));
|
|
||||||
PrintHex<uint8_t>(rfcommChannelType);
|
|
||||||
Notify(PSTR(" Command: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[11]);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
else {
|
|
||||||
Notify(PSTR("\r\nUnsupported L2CAP Data - Channel ID: "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[7]);
|
|
||||||
Notify(PSTR(" "));
|
|
||||||
PrintHex<uint8_t>(l2capinbuf[6]);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
SDP_task();
|
|
||||||
RFCOMM_task();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void SPP::Run() {
|
|
||||||
if(waitForLastCommand && (millis() - timer) > 100) { // We will only wait 100ms and see if the UIH Remote Port Negotiation Command is send, as some deviced don't send it
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nRFCOMM Connection is now established - Automatic\r\n"));
|
|
||||||
#endif
|
|
||||||
creditSent = false;
|
|
||||||
waitForLastCommand = false;
|
|
||||||
connected = true; // The RFCOMM channel is now established
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void SPP::SDP_task() {
|
|
||||||
switch (l2cap_sdp_state)
|
|
||||||
{
|
|
||||||
case L2CAP_SDP_WAIT:
|
|
||||||
if (l2cap_connection_request_sdp_flag) {
|
|
||||||
l2cap_event_flag &= ~L2CAP_FLAG_CONNECTION_SDP_REQUEST; // Clear flag
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nSDP Incoming Connection Request"));
|
|
||||||
#endif
|
|
||||||
pBtd->l2cap_connection_response(hci_handle,identifier, sdp_dcid, sdp_scid, PENDING);
|
|
||||||
delay(1);
|
|
||||||
pBtd->l2cap_connection_response(hci_handle,identifier, sdp_dcid, sdp_scid, SUCCESSFUL);
|
|
||||||
identifier++;
|
|
||||||
delay(1);
|
|
||||||
pBtd->l2cap_config_request(hci_handle,identifier, sdp_scid);
|
|
||||||
l2cap_sdp_state = L2CAP_SDP_REQUEST;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case L2CAP_SDP_REQUEST:
|
|
||||||
if (l2cap_config_request_sdp_flag) {
|
|
||||||
l2cap_event_flag &= ~L2CAP_FLAG_CONFIG_SDP_REQUEST; // Clear flag
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nSDP Configuration Request"));
|
|
||||||
#endif
|
|
||||||
pBtd->l2cap_config_response(hci_handle,identifier, sdp_scid);
|
|
||||||
l2cap_sdp_state = L2CAP_SDP_SUCCESS;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case L2CAP_SDP_SUCCESS:
|
|
||||||
if (l2cap_config_success_sdp_flag) {
|
|
||||||
l2cap_event_flag &= ~L2CAP_FLAG_CONFIG_SDP_SUCCESS; // Clear flag
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nSDP Successfully Configured"));
|
|
||||||
#endif
|
|
||||||
firstMessage = true; // Reset bool
|
|
||||||
SDPConnected = true;
|
|
||||||
l2cap_sdp_state = L2CAP_SDP_DONE;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case L2CAP_SDP_DONE:
|
|
||||||
if(l2cap_disconnect_request_sdp_flag) {
|
|
||||||
l2cap_event_flag &= ~L2CAP_FLAG_DISCONNECT_SDP_REQUEST; // Clear flag
|
|
||||||
SDPConnected = false;
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nDisconnected SDP Channel"));
|
|
||||||
#endif
|
|
||||||
pBtd->l2cap_disconnection_response(hci_handle,identifier,sdp_dcid,sdp_scid);
|
|
||||||
l2cap_sdp_state = L2CAP_SDP_WAIT;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case L2CAP_DISCONNECT_RESPONSE: // This is for both disconnection response from the RFCOMM and SDP channel if they were connected
|
|
||||||
if (l2cap_disconnect_response_flag) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nDisconnected L2CAP Connection"));
|
|
||||||
#endif
|
|
||||||
RFCOMMConnected = false;
|
|
||||||
SDPConnected = false;
|
|
||||||
pBtd->hci_disconnect(hci_handle);
|
|
||||||
l2cap_event_flag = 0; // Reset flags
|
|
||||||
l2cap_sdp_state = L2CAP_SDP_WAIT;
|
|
||||||
l2cap_rfcomm_state = L2CAP_RFCOMM_WAIT;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void SPP::RFCOMM_task()
|
|
||||||
{
|
|
||||||
switch (l2cap_rfcomm_state)
|
|
||||||
{
|
|
||||||
case L2CAP_RFCOMM_WAIT:
|
|
||||||
if(l2cap_connection_request_rfcomm_flag) {
|
|
||||||
l2cap_event_flag &= ~L2CAP_FLAG_CONNECTION_RFCOMM_REQUEST; // Clear flag
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nRFCOMM Incoming Connection Request"));
|
|
||||||
#endif
|
|
||||||
pBtd->l2cap_connection_response(hci_handle,identifier, rfcomm_dcid, rfcomm_scid, PENDING);
|
|
||||||
delay(1);
|
|
||||||
pBtd->l2cap_connection_response(hci_handle,identifier, rfcomm_dcid, rfcomm_scid, SUCCESSFUL);
|
|
||||||
identifier++;
|
|
||||||
delay(1);
|
|
||||||
pBtd->l2cap_config_request(hci_handle,identifier, rfcomm_scid);
|
|
||||||
l2cap_rfcomm_state = L2CAP_RFCOMM_REQUEST;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case L2CAP_RFCOMM_REQUEST:
|
|
||||||
if (l2cap_config_request_rfcomm_flag) {
|
|
||||||
l2cap_event_flag &= ~L2CAP_FLAG_CONFIG_RFCOMM_REQUEST; // Clear flag
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nRFCOMM Configuration Request"));
|
|
||||||
#endif
|
|
||||||
pBtd->l2cap_config_response(hci_handle,identifier, rfcomm_scid);
|
|
||||||
l2cap_rfcomm_state = L2CAP_RFCOMM_SUCCESS;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case L2CAP_RFCOMM_SUCCESS:
|
|
||||||
if (l2cap_config_success_rfcomm_flag) {
|
|
||||||
l2cap_event_flag &= ~L2CAP_FLAG_CONFIG_RFCOMM_SUCCESS; // Clear flag
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nRFCOMM Successfully Configured"));
|
|
||||||
#endif
|
|
||||||
rfcommAvailable = 0; // Reset number of bytes available
|
|
||||||
bytesRead = 0; // Reset number of bytes received
|
|
||||||
RFCOMMConnected = true;
|
|
||||||
l2cap_rfcomm_state = L2CAP_RFCOMM_DONE;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case L2CAP_RFCOMM_DONE:
|
|
||||||
if(l2cap_disconnect_request_rfcomm_flag) {
|
|
||||||
l2cap_event_flag &= ~L2CAP_FLAG_DISCONNECT_RFCOMM_REQUEST; // Clear flag
|
|
||||||
RFCOMMConnected = false;
|
|
||||||
connected = false;
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nDisconnected RFCOMM Channel"));
|
|
||||||
#endif
|
|
||||||
pBtd->l2cap_disconnection_response(hci_handle,identifier,rfcomm_dcid,rfcomm_scid);
|
|
||||||
l2cap_rfcomm_state = L2CAP_RFCOMM_WAIT;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/************************************************************/
|
|
||||||
/* SDP Commands */
|
|
||||||
/************************************************************/
|
|
||||||
void SPP::SDP_Command(uint8_t* data, uint8_t nbytes) { // See page 223 in the Bluetooth specs
|
|
||||||
pBtd->L2CAP_Command(hci_handle,data,nbytes,sdp_scid[0],sdp_scid[1]);
|
|
||||||
}
|
|
||||||
void SPP::serviceNotSupported(uint8_t transactionIDHigh, uint8_t transactionIDLow) { // See page 235 in the Bluetooth specs
|
|
||||||
l2capoutbuf[0] = SDP_SERVICE_SEARCH_ATTRIBUTE_RESPONSE_PDU;
|
|
||||||
l2capoutbuf[1] = transactionIDHigh;
|
|
||||||
l2capoutbuf[2] = transactionIDLow;
|
|
||||||
l2capoutbuf[3] = 0x00; // Parameter Length
|
|
||||||
l2capoutbuf[4] = 0x05; // Parameter Length
|
|
||||||
l2capoutbuf[5] = 0x00; // AttributeListsByteCount
|
|
||||||
l2capoutbuf[6] = 0x02; // AttributeListsByteCount
|
|
||||||
|
|
||||||
/* Attribute ID/Value Sequence: */
|
|
||||||
l2capoutbuf[7] = 0x35;
|
|
||||||
l2capoutbuf[8] = 0x00;
|
|
||||||
l2capoutbuf[9] = 0x00;
|
|
||||||
|
|
||||||
SDP_Command(l2capoutbuf,10);
|
|
||||||
}
|
|
||||||
void SPP::serialPortResponse1(uint8_t transactionIDHigh, uint8_t transactionIDLow) {
|
|
||||||
l2capoutbuf[0] = SDP_SERVICE_SEARCH_ATTRIBUTE_RESPONSE_PDU;
|
|
||||||
l2capoutbuf[1] = transactionIDHigh;
|
|
||||||
l2capoutbuf[2] = transactionIDLow;
|
|
||||||
l2capoutbuf[3] = 0x00; // Parameter Length
|
|
||||||
l2capoutbuf[4] = 0x2B; // Parameter Length
|
|
||||||
l2capoutbuf[5] = 0x00; // AttributeListsByteCount
|
|
||||||
l2capoutbuf[6] = 0x26; // AttributeListsByteCount
|
|
||||||
|
|
||||||
/* Attribute ID/Value Sequence: */
|
|
||||||
l2capoutbuf[7] = 0x36;
|
|
||||||
l2capoutbuf[8] = 0x00;
|
|
||||||
l2capoutbuf[9] = 0x3C;
|
|
||||||
l2capoutbuf[10] = 0x36;
|
|
||||||
l2capoutbuf[11] = 0x00;
|
|
||||||
|
|
||||||
l2capoutbuf[12] = 0x39;
|
|
||||||
l2capoutbuf[13] = 0x09;
|
|
||||||
l2capoutbuf[14] = 0x00;
|
|
||||||
l2capoutbuf[15] = 0x00;
|
|
||||||
l2capoutbuf[16] = 0x0A;
|
|
||||||
l2capoutbuf[17] = 0x00;
|
|
||||||
l2capoutbuf[18] = 0x01;
|
|
||||||
l2capoutbuf[19] = 0x00;
|
|
||||||
l2capoutbuf[20] = 0x06;
|
|
||||||
l2capoutbuf[21] = 0x09;
|
|
||||||
l2capoutbuf[22] = 0x00;
|
|
||||||
l2capoutbuf[23] = 0x01;
|
|
||||||
l2capoutbuf[24] = 0x35;
|
|
||||||
l2capoutbuf[25] = 0x03;
|
|
||||||
l2capoutbuf[26] = 0x19;
|
|
||||||
l2capoutbuf[27] = 0x11;
|
|
||||||
|
|
||||||
l2capoutbuf[28] = 0x01;
|
|
||||||
l2capoutbuf[29] = 0x09;
|
|
||||||
l2capoutbuf[30] = 0x00;
|
|
||||||
l2capoutbuf[31] = 0x04;
|
|
||||||
l2capoutbuf[32] = 0x35;
|
|
||||||
l2capoutbuf[33] = 0x0C;
|
|
||||||
l2capoutbuf[34] = 0x35;
|
|
||||||
l2capoutbuf[35] = 0x03;
|
|
||||||
l2capoutbuf[36] = 0x19;
|
|
||||||
l2capoutbuf[37] = 0x01;
|
|
||||||
l2capoutbuf[38] = 0x00;
|
|
||||||
l2capoutbuf[39] = 0x35;
|
|
||||||
l2capoutbuf[40] = 0x05;
|
|
||||||
l2capoutbuf[41] = 0x19;
|
|
||||||
l2capoutbuf[42] = 0x00;
|
|
||||||
l2capoutbuf[43] = 0x03;
|
|
||||||
|
|
||||||
l2capoutbuf[44] = 0x08;
|
|
||||||
l2capoutbuf[45] = 0x02; // Two extra bytes
|
|
||||||
l2capoutbuf[46] = 0x00; // 25 (0x19) more bytes to come
|
|
||||||
l2capoutbuf[47] = 0x19;
|
|
||||||
|
|
||||||
SDP_Command(l2capoutbuf,48);
|
|
||||||
}
|
|
||||||
void SPP::serialPortResponse2(uint8_t transactionIDHigh, uint8_t transactionIDLow) {
|
|
||||||
l2capoutbuf[0] = SDP_SERVICE_SEARCH_ATTRIBUTE_RESPONSE_PDU;
|
|
||||||
l2capoutbuf[1] = transactionIDHigh;
|
|
||||||
l2capoutbuf[2] = transactionIDLow;
|
|
||||||
l2capoutbuf[3] = 0x00; // Parameter Length
|
|
||||||
l2capoutbuf[4] = 0x1C; // Parameter Length
|
|
||||||
l2capoutbuf[5] = 0x00; // AttributeListsByteCount
|
|
||||||
l2capoutbuf[6] = 0x19; // AttributeListsByteCount
|
|
||||||
|
|
||||||
/* Attribute ID/Value Sequence: */
|
|
||||||
l2capoutbuf[7] = 0x01;
|
|
||||||
l2capoutbuf[8] = 0x09;
|
|
||||||
l2capoutbuf[9] = 0x00;
|
|
||||||
l2capoutbuf[10] = 0x06;
|
|
||||||
l2capoutbuf[11] = 0x35;
|
|
||||||
|
|
||||||
l2capoutbuf[12] = 0x09;
|
|
||||||
l2capoutbuf[13] = 0x09;
|
|
||||||
l2capoutbuf[14] = 0x65;
|
|
||||||
l2capoutbuf[15] = 0x6E;
|
|
||||||
l2capoutbuf[16] = 0x09;
|
|
||||||
l2capoutbuf[17] = 0x00;
|
|
||||||
l2capoutbuf[18] = 0x6A;
|
|
||||||
l2capoutbuf[19] = 0x09;
|
|
||||||
l2capoutbuf[20] = 0x01;
|
|
||||||
l2capoutbuf[21] = 0x00;
|
|
||||||
l2capoutbuf[22] = 0x09;
|
|
||||||
l2capoutbuf[23] = 0x01;
|
|
||||||
l2capoutbuf[24] = 0x00;
|
|
||||||
l2capoutbuf[25] = 0x25;
|
|
||||||
|
|
||||||
l2capoutbuf[26] = 0x05; // Name length
|
|
||||||
l2capoutbuf[27] = 'T';
|
|
||||||
l2capoutbuf[28] = 'K';
|
|
||||||
l2capoutbuf[29] = 'J';
|
|
||||||
l2capoutbuf[30] = 'S';
|
|
||||||
l2capoutbuf[31] = 'P';
|
|
||||||
l2capoutbuf[32] = 0x00; // No more data
|
|
||||||
|
|
||||||
SDP_Command(l2capoutbuf,33);
|
|
||||||
}
|
|
||||||
void SPP::l2capResponse1(uint8_t transactionIDHigh, uint8_t transactionIDLow) {
|
|
||||||
serialPortResponse1(transactionIDHigh,transactionIDLow); // These has to send all the supported functions, since it only supports virtual serialport it just sends the message again
|
|
||||||
}
|
|
||||||
void SPP::l2capResponse2(uint8_t transactionIDHigh, uint8_t transactionIDLow) {
|
|
||||||
serialPortResponse2(transactionIDHigh,transactionIDLow); // Same data as serialPortResponse2
|
|
||||||
}
|
|
||||||
/************************************************************/
|
|
||||||
/* RFCOMM Commands */
|
|
||||||
/************************************************************/
|
|
||||||
void SPP::RFCOMM_Command(uint8_t* data, uint8_t nbytes) {
|
|
||||||
if ((millis() - printTimer) < 10)// Check if is has been more than 10ms since last command
|
|
||||||
delay((uint32_t)(10 - (millis() - printTimer))); // There have to be a delay between commands
|
|
||||||
pBtd->L2CAP_Command(hci_handle,data,nbytes,rfcomm_scid[0],rfcomm_scid[1]);
|
|
||||||
printTimer = millis();
|
|
||||||
}
|
|
||||||
|
|
||||||
void SPP::sendRfcomm(uint8_t channel, uint8_t direction, uint8_t CR, uint8_t channelType, uint8_t pfBit, uint8_t* data, uint8_t length) {
|
|
||||||
l2capoutbuf[0] = channel | direction | CR | extendAddress; // RFCOMM Address
|
|
||||||
l2capoutbuf[1] = channelType | pfBit; // RFCOMM Control
|
|
||||||
l2capoutbuf[2] = length << 1 | 0x01; // Length and format (allways 0x01 bytes format)
|
|
||||||
uint8_t i = 0;
|
|
||||||
for(; i < length; i++)
|
|
||||||
l2capoutbuf[i+3] = data[i];
|
|
||||||
l2capoutbuf[i+3] = calcFcs(l2capoutbuf);
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR(" - RFCOMM Data: "));
|
|
||||||
for(i = 0; i < length+4; i++) {
|
|
||||||
Serial.print(l2capoutbuf[i],HEX);
|
|
||||||
Notify(PSTR(" "));
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
RFCOMM_Command(l2capoutbuf,length+4);
|
|
||||||
}
|
|
||||||
|
|
||||||
void SPP::sendRfcommCredit(uint8_t channel, uint8_t direction, uint8_t CR, uint8_t channelType, uint8_t pfBit, uint8_t credit) {
|
|
||||||
l2capoutbuf[0] = channel | direction | CR | extendAddress; // RFCOMM Address
|
|
||||||
l2capoutbuf[1] = channelType | pfBit; // RFCOMM Control
|
|
||||||
l2capoutbuf[2] = 0x01; // Length = 0
|
|
||||||
l2capoutbuf[3] = credit; // Credit
|
|
||||||
l2capoutbuf[4] = calcFcs(l2capoutbuf);
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR(" - RFCOMM Credit Data: "));
|
|
||||||
for(uint8_t i = 0; i < 5; i++) {
|
|
||||||
Serial.print(l2capoutbuf[i],HEX);
|
|
||||||
Notify(PSTR(" "));
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
RFCOMM_Command(l2capoutbuf,5);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* CRC on 2 bytes */
|
|
||||||
uint8_t SPP::__crc(uint8_t* data) {
|
|
||||||
return(pgm_read_byte(&rfcomm_crc_table[pgm_read_byte(&rfcomm_crc_table[0xff ^ data[0]]) ^ data[1]]));
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Calculate FCS - we never actually check if the host sends correct FCS to the Arduino */
|
|
||||||
uint8_t SPP::calcFcs(uint8_t *data) {
|
|
||||||
if((data[1] & 0xEF) == RFCOMM_UIH)
|
|
||||||
return (0xff - __crc(data)); // FCS on 2 bytes
|
|
||||||
else
|
|
||||||
return (0xff - pgm_read_byte(&rfcomm_crc_table[__crc(data) ^ data[2]])); // FCS on 3 bytes
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Serial commands */
|
|
||||||
void SPP::print(const String &str) {
|
|
||||||
uint8_t length = str.length();
|
|
||||||
if(length > (sizeof(l2capoutbuf)-4))
|
|
||||||
length = sizeof(l2capoutbuf)-4;
|
|
||||||
l2capoutbuf[0] = rfcommChannelConnection | 0 | 0 | extendAddress;; // RFCOMM Address
|
|
||||||
l2capoutbuf[1] = RFCOMM_UIH; // RFCOMM Control
|
|
||||||
l2capoutbuf[2] = length << 1 | 1; // Length
|
|
||||||
uint8_t i = 0;
|
|
||||||
for(; i < length; i++)
|
|
||||||
l2capoutbuf[i+3] = str[i];
|
|
||||||
l2capoutbuf[i+3] = calcFcs(l2capoutbuf);
|
|
||||||
|
|
||||||
RFCOMM_Command(l2capoutbuf,length+4);
|
|
||||||
}
|
|
||||||
void SPP::print(const char* data) {
|
|
||||||
uint8_t length = strlen(data);
|
|
||||||
if(length > (sizeof(l2capoutbuf)-4))
|
|
||||||
length = sizeof(l2capoutbuf)-4;
|
|
||||||
l2capoutbuf[0] = rfcommChannelConnection | 0 | 0 | extendAddress;; // RFCOMM Address
|
|
||||||
l2capoutbuf[1] = RFCOMM_UIH; // RFCOMM Control
|
|
||||||
l2capoutbuf[2] = length << 1 | 1; // Length
|
|
||||||
uint8_t i = 0;
|
|
||||||
for(; i < length; i++)
|
|
||||||
l2capoutbuf[i+3] = data[i];
|
|
||||||
l2capoutbuf[i+3] = calcFcs(l2capoutbuf);
|
|
||||||
|
|
||||||
RFCOMM_Command(l2capoutbuf,length+4);
|
|
||||||
}
|
|
||||||
void SPP::print(uint8_t data) {
|
|
||||||
print(&data,1);
|
|
||||||
}
|
|
||||||
void SPP::print(uint8_t* array, uint8_t length) {
|
|
||||||
if(length > (sizeof(l2capoutbuf)-4))
|
|
||||||
length = sizeof(l2capoutbuf)-4;
|
|
||||||
l2capoutbuf[0] = rfcommChannelConnection | 0 | 0 | extendAddress;; // RFCOMM Address
|
|
||||||
l2capoutbuf[1] = RFCOMM_UIH; // RFCOMM Control
|
|
||||||
l2capoutbuf[2] = length << 1 | 1; // Length
|
|
||||||
uint8_t i = 0;
|
|
||||||
for(; i < length; i++)
|
|
||||||
l2capoutbuf[i+3] = array[i];
|
|
||||||
l2capoutbuf[i+3] = calcFcs(l2capoutbuf);
|
|
||||||
|
|
||||||
RFCOMM_Command(l2capoutbuf,length+4);
|
|
||||||
}
|
|
||||||
void SPP::print(const __FlashStringHelper *ifsh) {
|
|
||||||
const char PROGMEM *p = (const char PROGMEM *)ifsh;
|
|
||||||
size_t size = 0;
|
|
||||||
while (1) { // Calculate the size of the string
|
|
||||||
uint8_t c = pgm_read_byte(p+size);
|
|
||||||
if (c == 0)
|
|
||||||
break;
|
|
||||||
size++;
|
|
||||||
}
|
|
||||||
uint8_t buf[size];
|
|
||||||
|
|
||||||
for(uint8_t i = 0; i < size; i++)
|
|
||||||
buf[i] = pgm_read_byte(p++);
|
|
||||||
|
|
||||||
print(buf,size);
|
|
||||||
}
|
|
||||||
void SPP::println(const String &str) {
|
|
||||||
String output = str + "\r\n";
|
|
||||||
print(output);
|
|
||||||
}
|
|
||||||
void SPP::println(const char* data) {
|
|
||||||
char output[strlen(data)+3];
|
|
||||||
strcpy(output,data);
|
|
||||||
strcat(output,"\r\n");
|
|
||||||
print(output);
|
|
||||||
}
|
|
||||||
void SPP::println(uint8_t data) {
|
|
||||||
uint8_t buf[3] = {data, '\r', '\n'};
|
|
||||||
print(buf,3);
|
|
||||||
}
|
|
||||||
void SPP::println(uint8_t* array, uint8_t length) {
|
|
||||||
uint8_t buf[length+2];
|
|
||||||
memcpy(buf,array,length);
|
|
||||||
buf[length] = '\r';
|
|
||||||
buf[length+1] = '\n';
|
|
||||||
print(buf,length+2);
|
|
||||||
}
|
|
||||||
void SPP::println(const __FlashStringHelper *ifsh) {
|
|
||||||
const char PROGMEM *p = (const char PROGMEM *)ifsh;
|
|
||||||
size_t size = 0;
|
|
||||||
while (1) { // Calculate the size of the string
|
|
||||||
uint8_t c = pgm_read_byte(p+size);
|
|
||||||
if (c == 0)
|
|
||||||
break;
|
|
||||||
size++;
|
|
||||||
}
|
|
||||||
uint8_t buf[size+2];
|
|
||||||
|
|
||||||
for(uint8_t i = 0; i < size; i++)
|
|
||||||
buf[i] = pgm_read_byte(p++);
|
|
||||||
|
|
||||||
buf[size] = '\r';
|
|
||||||
buf[size+1] = '\n';
|
|
||||||
print(buf,size+2);
|
|
||||||
}
|
|
||||||
void SPP::println(void) {
|
|
||||||
uint8_t buf[2] = {'\r','\n'};
|
|
||||||
print(buf,2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* These must be used to print numbers */
|
|
||||||
void SPP::printNumber(int16_t n) {
|
|
||||||
bool negative = false;
|
|
||||||
if(n < 0) {
|
|
||||||
negative = true;
|
|
||||||
n = -n;
|
|
||||||
}
|
|
||||||
uint16_t temp = n;
|
|
||||||
uint8_t digits = 0;
|
|
||||||
while (temp) {
|
|
||||||
temp /= 10;
|
|
||||||
digits++;
|
|
||||||
}
|
|
||||||
if(digits == 0)
|
|
||||||
print("0");
|
|
||||||
else {
|
|
||||||
uint8_t buf[digits+1]; // Add one extra in case it is negative
|
|
||||||
for(uint8_t i = 1; i < digits+1; i++) {
|
|
||||||
if(negative)
|
|
||||||
buf[digits-i+1] = n%10 + '0'; // Get number and convert to ASCII Character
|
|
||||||
else
|
|
||||||
buf[digits-i] = n%10 + '0'; // Get number and convert to ASCII Character
|
|
||||||
n /= 10;
|
|
||||||
}
|
|
||||||
if(negative) {
|
|
||||||
buf[0] = '-';
|
|
||||||
print(buf,digits+1);
|
|
||||||
} else
|
|
||||||
print(buf,digits);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void SPP::printNumberln(int16_t n) {
|
|
||||||
bool negative = false;
|
|
||||||
if(n < 0) {
|
|
||||||
negative = true;
|
|
||||||
n = -n;
|
|
||||||
}
|
|
||||||
uint16_t temp = n;
|
|
||||||
uint8_t digits = 0;
|
|
||||||
while (temp) {
|
|
||||||
temp /= 10;
|
|
||||||
digits++;
|
|
||||||
}
|
|
||||||
if(digits == 0)
|
|
||||||
print("0\r\n");
|
|
||||||
else {
|
|
||||||
uint8_t buf[digits+3]; // Add one extra in case it is negative
|
|
||||||
for(uint8_t i = 1; i < digits+1; i++) {
|
|
||||||
if(negative)
|
|
||||||
buf[digits-i+1] = n%10 + '0'; // Get number and convert to ASCII Character
|
|
||||||
else
|
|
||||||
buf[digits-i] = n%10 + '0'; // Get number and convert to ASCII Character
|
|
||||||
n /= 10;
|
|
||||||
}
|
|
||||||
if(negative) {
|
|
||||||
buf[0] = '-';
|
|
||||||
buf[digits+1] = '\r';
|
|
||||||
buf[digits+2] = '\n';
|
|
||||||
print(buf,digits+3);
|
|
||||||
} else {
|
|
||||||
buf[digits] = '\r';
|
|
||||||
buf[digits+1] = '\n';
|
|
||||||
print(buf,digits+2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void SPP::printNumber(double n, uint8_t digits) {
|
|
||||||
print(doubleToString(n,digits));
|
|
||||||
}
|
|
||||||
void SPP::printNumberln(double n, uint8_t digits) {
|
|
||||||
char buf[12];
|
|
||||||
strcpy(buf,doubleToString(n,digits));
|
|
||||||
strcat(buf,"\r\n");
|
|
||||||
print(buf);
|
|
||||||
}
|
|
||||||
const char* SPP::doubleToString(double input, uint8_t digits) {
|
|
||||||
char output[10];
|
|
||||||
char buffer[10];
|
|
||||||
if(input < 0) {
|
|
||||||
strcpy(output,"-");
|
|
||||||
input = -input;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
strcpy(output,"");
|
|
||||||
|
|
||||||
// Round correctly
|
|
||||||
double rounding = 0.5;
|
|
||||||
for (uint8_t i=0; i<digits; i++)
|
|
||||||
rounding /= 10.0;
|
|
||||||
input += rounding;
|
|
||||||
|
|
||||||
unsigned long intpart = (unsigned long)input;
|
|
||||||
itoa(intpart,buffer,10); // Convert to string
|
|
||||||
strcat(output,buffer);
|
|
||||||
strcat(output,".");
|
|
||||||
double fractpart = (input-(double)intpart);
|
|
||||||
fractpart *= pow(10,digits);
|
|
||||||
for(uint8_t i=1;i<digits;i++) { // Put zeroes in front of number
|
|
||||||
if(fractpart < pow(10,digits-i)) {
|
|
||||||
strcat(output,"0");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
itoa((unsigned long)fractpart,buffer,10); // Convert to string
|
|
||||||
strcat(output,buffer);
|
|
||||||
return output;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t SPP::read() {
|
|
||||||
if(rfcommAvailable == 0) // Don't read if there is nothing in the buffer
|
|
||||||
return 0;
|
|
||||||
uint8_t output = rfcommDataBuffer[0];
|
|
||||||
for(uint8_t i = 1; i < rfcommAvailable; i++)
|
|
||||||
rfcommDataBuffer[i-1] = rfcommDataBuffer[i]; // Shift the buffer one left
|
|
||||||
rfcommAvailable--;
|
|
||||||
bytesRead++;
|
|
||||||
if(bytesRead > (sizeof(rfcommDataBuffer)-5)) { // We will send the command just before it runs out of credit
|
|
||||||
bytesRead = 0;
|
|
||||||
sendRfcommCredit(rfcommChannelConnection,rfcommDirection,0,RFCOMM_UIH,0x10,sizeof(rfcommDataBuffer)); // Send more credit
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR("\r\nSent "));
|
|
||||||
Serial.print(sizeof(rfcommDataBuffer));
|
|
||||||
Notify(PSTR(" more credit"));
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
return output;
|
|
||||||
}
|
|
193
SPP.h
193
SPP.h
|
@ -1,193 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _spp_h_
|
|
||||||
#define _spp_h_
|
|
||||||
|
|
||||||
#include "BTD.h"
|
|
||||||
|
|
||||||
/* Bluetooth L2CAP states for SDP_task() */
|
|
||||||
#define L2CAP_SDP_WAIT 0
|
|
||||||
#define L2CAP_SDP_REQUEST 1
|
|
||||||
#define L2CAP_SDP_SUCCESS 2
|
|
||||||
#define L2CAP_SDP_DONE 3
|
|
||||||
#define L2CAP_DISCONNECT_RESPONSE 4
|
|
||||||
|
|
||||||
/* Bluetooth L2CAP states for RFCOMM_task() */
|
|
||||||
#define L2CAP_RFCOMM_WAIT 0
|
|
||||||
#define L2CAP_RFCOMM_REQUEST 1
|
|
||||||
#define L2CAP_RFCOMM_SUCCESS 2
|
|
||||||
#define L2CAP_RFCOMM_DONE 3
|
|
||||||
|
|
||||||
/* L2CAP event flags */
|
|
||||||
#define L2CAP_FLAG_CONNECTION_SDP_REQUEST 0x001
|
|
||||||
#define L2CAP_FLAG_CONNECTION_RFCOMM_REQUEST 0x002
|
|
||||||
#define L2CAP_FLAG_CONFIG_SDP_REQUEST 0x004
|
|
||||||
#define L2CAP_FLAG_CONFIG_RFCOMM_REQUEST 0x008
|
|
||||||
#define L2CAP_FLAG_CONFIG_SDP_SUCCESS 0x010
|
|
||||||
#define L2CAP_FLAG_CONFIG_RFCOMM_SUCCESS 0x020
|
|
||||||
#define L2CAP_FLAG_DISCONNECT_SDP_REQUEST 0x040
|
|
||||||
#define L2CAP_FLAG_DISCONNECT_RFCOMM_REQUEST 0x080
|
|
||||||
#define L2CAP_FLAG_DISCONNECT_RESPONSE 0x100
|
|
||||||
|
|
||||||
/* Macros for L2CAP event flag tests */
|
|
||||||
#define l2cap_connection_request_sdp_flag (l2cap_event_flag & L2CAP_FLAG_CONNECTION_SDP_REQUEST)
|
|
||||||
#define l2cap_connection_request_rfcomm_flag (l2cap_event_flag & L2CAP_FLAG_CONNECTION_RFCOMM_REQUEST)
|
|
||||||
#define l2cap_config_request_sdp_flag (l2cap_event_flag & L2CAP_FLAG_CONFIG_SDP_REQUEST)
|
|
||||||
#define l2cap_config_request_rfcomm_flag (l2cap_event_flag & L2CAP_FLAG_CONFIG_RFCOMM_REQUEST)
|
|
||||||
#define l2cap_config_success_sdp_flag (l2cap_event_flag & L2CAP_FLAG_CONFIG_SDP_SUCCESS)
|
|
||||||
#define l2cap_config_success_rfcomm_flag (l2cap_event_flag & L2CAP_FLAG_CONFIG_RFCOMM_SUCCESS)
|
|
||||||
#define l2cap_disconnect_request_sdp_flag (l2cap_event_flag & L2CAP_FLAG_DISCONNECT_SDP_REQUEST)
|
|
||||||
#define l2cap_disconnect_request_rfcomm_flag (l2cap_event_flag & L2CAP_FLAG_DISCONNECT_RFCOMM_REQUEST)
|
|
||||||
#define l2cap_disconnect_response_flag (l2cap_event_flag & L2CAP_FLAG_DISCONNECT_RESPONSE)
|
|
||||||
|
|
||||||
/* Used for SDP */
|
|
||||||
#define SDP_SERVICE_SEARCH_ATTRIBUTE_REQUEST_PDU 0x06 // See the RFCOMM specs
|
|
||||||
#define SDP_SERVICE_SEARCH_ATTRIBUTE_RESPONSE_PDU 0x07 // See the RFCOMM specs
|
|
||||||
#define SERIALPORT_UUID 0x1101 // See http://www.bluetooth.org/Technical/AssignedNumbers/service_discovery.htm
|
|
||||||
#define L2CAP_UUID 0x0100
|
|
||||||
|
|
||||||
/* Used for RFCOMM */
|
|
||||||
#define RFCOMM_SABM 0x2F
|
|
||||||
#define RFCOMM_UA 0x63
|
|
||||||
#define RFCOMM_UIH 0xEF
|
|
||||||
//#define RFCOMM_DM 0x0F
|
|
||||||
#define RFCOMM_DISC 0x43
|
|
||||||
|
|
||||||
#define extendAddress 0x01 // Allways 1
|
|
||||||
|
|
||||||
// Multiplexer message types
|
|
||||||
#define BT_RFCOMM_PN_CMD 0x83
|
|
||||||
#define BT_RFCOMM_PN_RSP 0x81
|
|
||||||
#define BT_RFCOMM_MSC_CMD 0xE3
|
|
||||||
#define BT_RFCOMM_MSC_RSP 0xE1
|
|
||||||
#define BT_RFCOMM_RPN_CMD 0x93
|
|
||||||
#define BT_RFCOMM_RPN_RSP 0x91
|
|
||||||
/*
|
|
||||||
#define BT_RFCOMM_TEST_CMD 0x23
|
|
||||||
#define BT_RFCOMM_TEST_RSP 0x21
|
|
||||||
#define BT_RFCOMM_FCON_CMD 0xA3
|
|
||||||
#define BT_RFCOMM_FCON_RSP 0xA1
|
|
||||||
#define BT_RFCOMM_FCOFF_CMD 0x63
|
|
||||||
#define BT_RFCOMM_FCOFF_RSP 0x61
|
|
||||||
#define BT_RFCOMM_RLS_CMD 0x53
|
|
||||||
#define BT_RFCOMM_RLS_RSP 0x51
|
|
||||||
#define BT_RFCOMM_NSC_RSP 0x11
|
|
||||||
*/
|
|
||||||
|
|
||||||
class SPP : public BluetoothService {
|
|
||||||
public:
|
|
||||||
SPP(BTD *p, const char* name = "Arduino", const char* pin = "1234");
|
|
||||||
|
|
||||||
// BluetoothService implementation
|
|
||||||
virtual void ACLData(uint8_t* ACLData); // Used to pass acldata to the services
|
|
||||||
virtual void Run(); // Used to establish the connection automatically
|
|
||||||
virtual void Reset(); // Use this to reset the service
|
|
||||||
virtual void disconnect(); // Used this void to disconnect the virtual serial port
|
|
||||||
|
|
||||||
bool connected;// Variable used to indicate if the connection is established
|
|
||||||
|
|
||||||
/* Serial port profile (SPP) commands */
|
|
||||||
void print(const String &); // Used to send strings
|
|
||||||
void print(const char* data); // Used to send strings
|
|
||||||
void print(uint8_t data); // Used to send single bytes
|
|
||||||
void print(uint8_t* array, uint8_t length); // Used to send arrays
|
|
||||||
void print(const __FlashStringHelper *); // Used to print strings stored in flash
|
|
||||||
|
|
||||||
void println(const String &); // Include newline and carriage return
|
|
||||||
void println(const char* data); // Include newline and carriage return
|
|
||||||
void println(uint8_t data); // Include newline and carriage return
|
|
||||||
void println(uint8_t* array, uint8_t length); // Include newline and carriage return
|
|
||||||
void println(const __FlashStringHelper *); // Include newline and carriage return
|
|
||||||
void println(void); // Use this to print newline and carriage return
|
|
||||||
|
|
||||||
void printNumber(int16_t n); // These must be used to print numbers
|
|
||||||
void printNumberln(int16_t n); // This will include newline and carriage return
|
|
||||||
void printNumber(double n, uint8_t digits = 2); // These must be used to print floating-point numbers
|
|
||||||
void printNumberln(double n, uint8_t digits = 2); // This will include newline and carriage return
|
|
||||||
|
|
||||||
const char* doubleToString(double input, uint8_t digits); // Helper function to convert from double to string
|
|
||||||
|
|
||||||
uint8_t available() { return rfcommAvailable; }; // Get the bytes waiting to be read
|
|
||||||
uint8_t read(); // Used to read the buffer
|
|
||||||
void flush() { rfcommAvailable = 0; }; // Discard all the bytes in the buffer
|
|
||||||
|
|
||||||
private:
|
|
||||||
/* Bluetooth dongle library pointer */
|
|
||||||
BTD *pBtd;
|
|
||||||
|
|
||||||
/* Set true when a channel is created */
|
|
||||||
bool SDPConnected;
|
|
||||||
bool RFCOMMConnected;
|
|
||||||
|
|
||||||
uint16_t hci_handle; // The HCI Handle for the connection
|
|
||||||
|
|
||||||
/* Variables used by L2CAP state maschines */
|
|
||||||
uint8_t l2cap_sdp_state;
|
|
||||||
uint8_t l2cap_rfcomm_state;
|
|
||||||
uint16_t l2cap_event_flag; // l2cap flags of received bluetooth events
|
|
||||||
|
|
||||||
uint8_t l2capoutbuf[BULK_MAXPKTSIZE]; // General purpose buffer for l2cap out data
|
|
||||||
uint8_t rfcommbuf[10]; // Buffer for RFCOMM Commands
|
|
||||||
|
|
||||||
/* L2CAP Channels */
|
|
||||||
uint8_t sdp_scid[2]; // L2CAP source CID for SDP
|
|
||||||
uint8_t sdp_dcid[2]; // 0x0050
|
|
||||||
uint8_t rfcomm_scid[2]; // L2CAP source CID for RFCOMM
|
|
||||||
uint8_t rfcomm_dcid[2]; // 0x0051
|
|
||||||
uint8_t identifier; // Identifier for command
|
|
||||||
|
|
||||||
/* RFCOMM Variables */
|
|
||||||
uint8_t rfcommChannel;
|
|
||||||
uint8_t rfcommChannelConnection; // This is the channel the SPP chanel will be running at
|
|
||||||
uint8_t rfcommDirection;
|
|
||||||
uint8_t rfcommCommandResponse;
|
|
||||||
uint8_t rfcommChannelType;
|
|
||||||
uint8_t rfcommPfBit;
|
|
||||||
|
|
||||||
unsigned long timer;
|
|
||||||
bool waitForLastCommand;
|
|
||||||
bool creditSent;
|
|
||||||
|
|
||||||
uint8_t rfcommDataBuffer[100]; // Create a 100 sized buffer for incoming data
|
|
||||||
uint8_t rfcommAvailable;
|
|
||||||
|
|
||||||
bool firstMessage; // Used to see if it's the first SDP request received
|
|
||||||
uint8_t bytesRead; // Counter to see when it's time to send more credit
|
|
||||||
|
|
||||||
unsigned long printTimer; // Used to set a delay, so it doesn't try to print too fast
|
|
||||||
|
|
||||||
/* State machines */
|
|
||||||
void SDP_task(); // SDP state machine
|
|
||||||
void RFCOMM_task(); // RFCOMM state machine
|
|
||||||
|
|
||||||
/* SDP Commands */
|
|
||||||
void SDP_Command(uint8_t* data, uint8_t nbytes);
|
|
||||||
void serviceNotSupported(uint8_t transactionIDHigh, uint8_t transactionIDLow);
|
|
||||||
void serialPortResponse1(uint8_t transactionIDHigh, uint8_t transactionIDLow);
|
|
||||||
void serialPortResponse2(uint8_t transactionIDHigh, uint8_t transactionIDLow);
|
|
||||||
void l2capResponse1(uint8_t transactionIDHigh, uint8_t transactionIDLow);
|
|
||||||
void l2capResponse2(uint8_t transactionIDHigh, uint8_t transactionIDLow);
|
|
||||||
|
|
||||||
/* RFCOMM Commands */
|
|
||||||
void RFCOMM_Command(uint8_t* data, uint8_t nbytes);
|
|
||||||
void sendRfcomm(uint8_t channel, uint8_t direction, uint8_t CR, uint8_t channelType, uint8_t pfBit, uint8_t* data, uint8_t length);
|
|
||||||
void sendRfcommCredit(uint8_t channel, uint8_t direction, uint8_t CR, uint8_t channelType, uint8_t pfBit, uint8_t credit);
|
|
||||||
uint8_t calcFcs(uint8_t *data);
|
|
||||||
uint8_t __crc(uint8_t* data);
|
|
||||||
};
|
|
||||||
#endif
|
|
642
Usb.cpp
642
Usb.cpp
|
@ -1,642 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
/* USB functions */
|
|
||||||
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static uint8_t usb_error = 0;
|
|
||||||
static uint8_t usb_task_state;
|
|
||||||
|
|
||||||
/* constructor */
|
|
||||||
USB::USB () : bmHubPre(0)
|
|
||||||
{
|
|
||||||
usb_task_state = USB_DETACHED_SUBSTATE_INITIALIZE; //set up state machine
|
|
||||||
init();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Initialize data structures */
|
|
||||||
void USB::init()
|
|
||||||
{
|
|
||||||
devConfigIndex = 0;
|
|
||||||
bmHubPre = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t USB::getUsbTaskState( void )
|
|
||||||
{
|
|
||||||
return( usb_task_state );
|
|
||||||
}
|
|
||||||
|
|
||||||
void USB::setUsbTaskState( uint8_t state )
|
|
||||||
{
|
|
||||||
usb_task_state = state;
|
|
||||||
}
|
|
||||||
|
|
||||||
EpInfo* USB::getEpInfoEntry( uint8_t addr, uint8_t ep )
|
|
||||||
{
|
|
||||||
UsbDevice *p = addrPool.GetUsbDevicePtr(addr);
|
|
||||||
|
|
||||||
if (!p || !p->epinfo)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
EpInfo *pep = p->epinfo;
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<p->epcount; i++)
|
|
||||||
{
|
|
||||||
if ((pep)->epAddr == ep)
|
|
||||||
return pep;
|
|
||||||
|
|
||||||
pep ++;
|
|
||||||
}
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* set device table entry */
|
|
||||||
/* each device is different and has different number of endpoints. This function plugs endpoint record structure, defined in application, to devtable */
|
|
||||||
uint8_t USB::setEpInfoEntry( uint8_t addr, uint8_t epcount, EpInfo* eprecord_ptr )
|
|
||||||
{
|
|
||||||
if (!eprecord_ptr)
|
|
||||||
return USB_ERROR_INVALID_ARGUMENT;
|
|
||||||
|
|
||||||
UsbDevice *p = addrPool.GetUsbDevicePtr(addr);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
p->address = addr;
|
|
||||||
p->epinfo = eprecord_ptr;
|
|
||||||
p->epcount = epcount;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t USB::SetAddress(uint8_t addr, uint8_t ep, EpInfo **ppep, uint16_t &nak_limit)
|
|
||||||
{
|
|
||||||
UsbDevice *p = addrPool.GetUsbDevicePtr(addr);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
if (!p->epinfo)
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
|
|
||||||
*ppep = getEpInfoEntry(addr, ep);
|
|
||||||
|
|
||||||
if (!*ppep)
|
|
||||||
return USB_ERROR_EP_NOT_FOUND_IN_TBL;
|
|
||||||
|
|
||||||
nak_limit = (0x0001UL << ( ( (*ppep)->bmNakPower > USB_NAK_MAX_POWER ) ? USB_NAK_MAX_POWER : (*ppep)->bmNakPower) );
|
|
||||||
nak_limit--;
|
|
||||||
|
|
||||||
/*
|
|
||||||
USBTRACE2("\r\nAddress: ", addr);
|
|
||||||
USBTRACE2(" EP: ", ep);
|
|
||||||
USBTRACE2(" NAK Power: ",(*ppep)->bmNakPower);
|
|
||||||
USBTRACE2(" NAK Limit: ", nak_limit);
|
|
||||||
USBTRACE("\r\n");
|
|
||||||
*/
|
|
||||||
regWr( rPERADDR, addr ); //set peripheral address
|
|
||||||
|
|
||||||
uint8_t mode = regRd( rMODE );
|
|
||||||
|
|
||||||
// Set bmLOWSPEED and bmHUBPRE in case of low-speed device, reset them otherwise
|
|
||||||
regWr( rMODE, (p->lowspeed) ? mode | bmLOWSPEED | bmHubPre : mode & ~(bmHUBPRE | bmLOWSPEED));
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Control transfer. Sets address, endpoint, fills control packet with necessary data, dispatches control packet, and initiates bulk IN transfer, */
|
|
||||||
/* depending on request. Actual requests are defined as inlines */
|
|
||||||
/* return codes: */
|
|
||||||
/* 00 = success */
|
|
||||||
/* 01-0f = non-zero HRSLT */
|
|
||||||
uint8_t USB::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)
|
|
||||||
{
|
|
||||||
boolean direction = false; //request direction, IN or OUT
|
|
||||||
uint8_t rcode;
|
|
||||||
SETUP_PKT setup_pkt;
|
|
||||||
|
|
||||||
EpInfo *pep = NULL;
|
|
||||||
uint16_t nak_limit;
|
|
||||||
|
|
||||||
rcode = SetAddress(addr, ep, &pep, nak_limit);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
return rcode;
|
|
||||||
|
|
||||||
direction = (( bmReqType & 0x80 ) > 0);
|
|
||||||
|
|
||||||
/* fill in setup packet */
|
|
||||||
setup_pkt.ReqType_u.bmRequestType = bmReqType;
|
|
||||||
setup_pkt.bRequest = bRequest;
|
|
||||||
setup_pkt.wVal_u.wValueLo = wValLo;
|
|
||||||
setup_pkt.wVal_u.wValueHi = wValHi;
|
|
||||||
setup_pkt.wIndex = wInd;
|
|
||||||
setup_pkt.wLength = total;
|
|
||||||
|
|
||||||
bytesWr( rSUDFIFO, 8, (uint8_t*)&setup_pkt ); //transfer to setup packet FIFO
|
|
||||||
|
|
||||||
rcode = dispatchPkt( tokSETUP, ep, nak_limit ); //dispatch packet
|
|
||||||
|
|
||||||
if( rcode ) //return HRSLT if not zero
|
|
||||||
return( rcode );
|
|
||||||
|
|
||||||
if( dataptr != NULL ) //data stage, if present
|
|
||||||
{
|
|
||||||
if( direction ) //IN transfer
|
|
||||||
{
|
|
||||||
uint16_t left = total;
|
|
||||||
|
|
||||||
pep->bmRcvToggle = 1; //bmRCVTOG1;
|
|
||||||
|
|
||||||
while (left)
|
|
||||||
{
|
|
||||||
// Bytes read into buffer
|
|
||||||
uint16_t read = nbytes;
|
|
||||||
//uint16_t read = (left<nbytes) ? left : nbytes;
|
|
||||||
|
|
||||||
rcode = InTransfer( pep, nak_limit, &read, dataptr );
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
return rcode;
|
|
||||||
|
|
||||||
// Invoke callback function if inTransfer completed successfuly and callback function pointer is specified
|
|
||||||
if (!rcode && p)
|
|
||||||
((USBReadParser*)p)->Parse( read, dataptr, total - left );
|
|
||||||
|
|
||||||
left -= read;
|
|
||||||
|
|
||||||
if (read < nbytes)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else //OUT transfer
|
|
||||||
{
|
|
||||||
pep->bmSndToggle = 1; //bmSNDTOG1;
|
|
||||||
rcode = OutTransfer( pep, nak_limit, nbytes, dataptr );
|
|
||||||
}
|
|
||||||
if( rcode ) //return error
|
|
||||||
return( rcode );
|
|
||||||
}
|
|
||||||
// Status stage
|
|
||||||
return dispatchPkt( (direction) ? tokOUTHS : tokINHS, ep, nak_limit ); //GET if direction
|
|
||||||
}
|
|
||||||
|
|
||||||
/* IN transfer to arbitrary endpoint. Assumes PERADDR is set. Handles multiple packets if necessary. Transfers 'nbytes' bytes. */
|
|
||||||
/* Keep sending INs and writes data to memory area pointed by 'data' */
|
|
||||||
/* rcode 0 if no errors. rcode 01-0f is relayed from dispatchPkt(). Rcode f0 means RCVDAVIRQ error,
|
|
||||||
fe USB xfer timeout */
|
|
||||||
uint8_t USB::inTransfer( uint8_t addr, uint8_t ep, uint16_t *nbytesptr, uint8_t* data)
|
|
||||||
{
|
|
||||||
EpInfo *pep = NULL;
|
|
||||||
uint16_t nak_limit = 0;
|
|
||||||
|
|
||||||
uint8_t rcode = SetAddress(addr, ep, &pep, nak_limit);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
return rcode;
|
|
||||||
|
|
||||||
return InTransfer(pep, nak_limit, nbytesptr, data);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t USB::InTransfer(EpInfo *pep, uint16_t nak_limit, uint16_t *nbytesptr, uint8_t* data)
|
|
||||||
{
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
uint8_t pktsize;
|
|
||||||
|
|
||||||
uint16_t nbytes = *nbytesptr;
|
|
||||||
uint8_t maxpktsize = pep->maxPktSize;
|
|
||||||
|
|
||||||
*nbytesptr = 0;
|
|
||||||
regWr( rHCTL, (pep->bmRcvToggle) ? bmRCVTOG1 : bmRCVTOG0 ); //set toggle value
|
|
||||||
|
|
||||||
while( 1 ) // use a 'return' to exit this loop
|
|
||||||
{
|
|
||||||
rcode = dispatchPkt( tokIN, pep->epAddr, nak_limit ); //IN packet to EP-'endpoint'. Function takes care of NAKS.
|
|
||||||
|
|
||||||
if( rcode )
|
|
||||||
return( rcode ); //should be 0, indicating ACK. Else return error code.
|
|
||||||
|
|
||||||
/* check for RCVDAVIRQ and generate error if not present */
|
|
||||||
/* the only case when absense of RCVDAVIRQ makes sense is when toggle error occured. Need to add handling for that */
|
|
||||||
if(( regRd( rHIRQ ) & bmRCVDAVIRQ ) == 0 )
|
|
||||||
return ( 0xf0 ); //receive error
|
|
||||||
|
|
||||||
pktsize = regRd( rRCVBC ); //number of received bytes
|
|
||||||
|
|
||||||
assert(pktsize <= nbytes);
|
|
||||||
|
|
||||||
int16_t mem_left = (int16_t)nbytes - *((int16_t*)nbytesptr);
|
|
||||||
|
|
||||||
if (mem_left < 0)
|
|
||||||
mem_left = 0;
|
|
||||||
|
|
||||||
data = bytesRd( rRCVFIFO, ((pktsize > mem_left) ? mem_left : pktsize), data );
|
|
||||||
|
|
||||||
regWr( rHIRQ, bmRCVDAVIRQ ); // Clear the IRQ & free the buffer
|
|
||||||
*nbytesptr += pktsize; // add this packet's byte count to total transfer length
|
|
||||||
|
|
||||||
/* The transfer is complete under two conditions: */
|
|
||||||
/* 1. The device sent a short packet (L.T. maxPacketSize) */
|
|
||||||
/* 2. 'nbytes' have been transferred. */
|
|
||||||
if (( pktsize < maxpktsize ) || (*nbytesptr >= nbytes )) // have we transferred 'nbytes' bytes?
|
|
||||||
{
|
|
||||||
// Save toggle value
|
|
||||||
pep->bmRcvToggle = (( regRd( rHRSL ) & bmRCVTOGRD )) ? 1 : 0;
|
|
||||||
|
|
||||||
return( 0 );
|
|
||||||
} // if
|
|
||||||
} //while( 1 )
|
|
||||||
}
|
|
||||||
|
|
||||||
/* OUT transfer to arbitrary endpoint. Handles multiple packets if necessary. Transfers 'nbytes' bytes. */
|
|
||||||
/* Handles NAK bug per Maxim Application Note 4000 for single buffer transfer */
|
|
||||||
/* rcode 0 if no errors. rcode 01-0f is relayed from HRSL */
|
|
||||||
uint8_t USB::outTransfer( uint8_t addr, uint8_t ep, uint16_t nbytes, uint8_t* data )
|
|
||||||
{
|
|
||||||
EpInfo *pep = NULL;
|
|
||||||
uint16_t nak_limit;
|
|
||||||
|
|
||||||
uint8_t rcode = SetAddress(addr, ep, &pep, nak_limit);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
return rcode;
|
|
||||||
|
|
||||||
return OutTransfer(pep, nak_limit, nbytes, data);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t USB::OutTransfer(EpInfo *pep, uint16_t nak_limit, uint16_t nbytes, uint8_t *data)
|
|
||||||
{
|
|
||||||
uint8_t rcode, retry_count;
|
|
||||||
uint8_t *data_p = data; //local copy of the data pointer
|
|
||||||
uint16_t bytes_tosend, nak_count;
|
|
||||||
uint16_t bytes_left = nbytes;
|
|
||||||
|
|
||||||
uint8_t maxpktsize = pep->maxPktSize;
|
|
||||||
|
|
||||||
if (maxpktsize < 1 || maxpktsize > 64)
|
|
||||||
return USB_ERROR_INVALID_MAX_PKT_SIZE;
|
|
||||||
|
|
||||||
unsigned long timeout = millis() + USB_XFER_TIMEOUT;
|
|
||||||
|
|
||||||
regWr( rHCTL, (pep->bmSndToggle) ? bmSNDTOG1 : bmSNDTOG0 ); //set toggle value
|
|
||||||
|
|
||||||
while( bytes_left )
|
|
||||||
{
|
|
||||||
retry_count = 0;
|
|
||||||
nak_count = 0;
|
|
||||||
bytes_tosend = ( bytes_left >= maxpktsize ) ? maxpktsize : bytes_left;
|
|
||||||
bytesWr( rSNDFIFO, bytes_tosend, data_p ); //filling output FIFO
|
|
||||||
regWr( rSNDBC, bytes_tosend ); //set number of bytes
|
|
||||||
regWr( rHXFR, ( tokOUT | pep->epAddr )); //dispatch packet
|
|
||||||
while(!(regRd( rHIRQ ) & bmHXFRDNIRQ )); //wait for the completion IRQ
|
|
||||||
regWr( rHIRQ, bmHXFRDNIRQ ); //clear IRQ
|
|
||||||
rcode = ( regRd( rHRSL ) & 0x0f );
|
|
||||||
|
|
||||||
while( rcode && ( timeout > millis()))
|
|
||||||
{
|
|
||||||
switch( rcode )
|
|
||||||
{
|
|
||||||
case hrNAK:
|
|
||||||
nak_count ++;
|
|
||||||
if( nak_limit && ( nak_count == nak_limit ))
|
|
||||||
return( rcode );
|
|
||||||
break;
|
|
||||||
case hrTIMEOUT:
|
|
||||||
retry_count ++;
|
|
||||||
if( retry_count == USB_RETRY_LIMIT )
|
|
||||||
return( rcode );
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return( rcode );
|
|
||||||
}//switch( rcode
|
|
||||||
|
|
||||||
/* process NAK according to Host out NAK bug */
|
|
||||||
regWr( rSNDBC, 0 );
|
|
||||||
regWr( rSNDFIFO, *data_p );
|
|
||||||
regWr( rSNDBC, bytes_tosend );
|
|
||||||
regWr( rHXFR, ( tokOUT | pep->epAddr )); //dispatch packet
|
|
||||||
while(!(regRd( rHIRQ ) & bmHXFRDNIRQ )); //wait for the completion IRQ
|
|
||||||
regWr( rHIRQ, bmHXFRDNIRQ ); //clear IRQ
|
|
||||||
rcode = ( regRd( rHRSL ) & 0x0f );
|
|
||||||
}//while( rcode && ....
|
|
||||||
bytes_left -= bytes_tosend;
|
|
||||||
data_p += bytes_tosend;
|
|
||||||
}//while( bytes_left...
|
|
||||||
pep->bmSndToggle = ( regRd( rHRSL ) & bmSNDTOGRD ) ? 1 : 0; //bmSNDTOG1 : bmSNDTOG0; //update toggle
|
|
||||||
return( rcode ); //should be 0 in all cases
|
|
||||||
}
|
|
||||||
/* dispatch usb packet. Assumes peripheral address is set and relevant buffer is loaded/empty */
|
|
||||||
/* If NAK, tries to re-send up to nak_limit times */
|
|
||||||
/* If nak_limit == 0, do not count NAKs, exit after timeout */
|
|
||||||
/* If bus timeout, re-sends up to USB_RETRY_LIMIT times */
|
|
||||||
/* return codes 0x00-0x0f are HRSLT( 0x00 being success ), 0xff means timeout */
|
|
||||||
uint8_t USB::dispatchPkt( uint8_t token, uint8_t ep, uint16_t nak_limit )
|
|
||||||
{
|
|
||||||
unsigned long timeout = millis() + USB_XFER_TIMEOUT;
|
|
||||||
uint8_t tmpdata;
|
|
||||||
uint8_t rcode;
|
|
||||||
uint8_t retry_count = 0;
|
|
||||||
uint16_t nak_count = 0;
|
|
||||||
|
|
||||||
while( timeout > millis() )
|
|
||||||
{
|
|
||||||
regWr( rHXFR, ( token|ep )); //launch the transfer
|
|
||||||
rcode = USB_ERROR_TRANSFER_TIMEOUT;
|
|
||||||
|
|
||||||
while( millis() < timeout ) //wait for transfer completion
|
|
||||||
{
|
|
||||||
tmpdata = regRd( rHIRQ );
|
|
||||||
|
|
||||||
if( tmpdata & bmHXFRDNIRQ )
|
|
||||||
{
|
|
||||||
regWr( rHIRQ, bmHXFRDNIRQ ); //clear the interrupt
|
|
||||||
rcode = 0x00;
|
|
||||||
break;
|
|
||||||
}//if( tmpdata & bmHXFRDNIRQ
|
|
||||||
|
|
||||||
}//while ( millis() < timeout
|
|
||||||
|
|
||||||
if( rcode != 0x00 ) //exit if timeout
|
|
||||||
return( rcode );
|
|
||||||
|
|
||||||
rcode = ( regRd( rHRSL ) & 0x0f ); //analyze transfer result
|
|
||||||
|
|
||||||
switch( rcode )
|
|
||||||
{
|
|
||||||
case hrNAK:
|
|
||||||
nak_count ++;
|
|
||||||
if( nak_limit && ( nak_count == nak_limit ))
|
|
||||||
return( rcode );
|
|
||||||
//delay(1);
|
|
||||||
break;
|
|
||||||
case hrTIMEOUT:
|
|
||||||
retry_count ++;
|
|
||||||
if( retry_count == USB_RETRY_LIMIT )
|
|
||||||
return( rcode );
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return( rcode );
|
|
||||||
}//switch( rcode
|
|
||||||
|
|
||||||
}//while( timeout > millis()
|
|
||||||
return( rcode );
|
|
||||||
}
|
|
||||||
|
|
||||||
/* USB main task. Performs enumeration/cleanup */
|
|
||||||
void USB::Task( void ) //USB state machine
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
uint8_t tmpdata;
|
|
||||||
static unsigned long delay = 0;
|
|
||||||
USB_DEVICE_DESCRIPTOR buf;
|
|
||||||
bool lowspeed = false;
|
|
||||||
|
|
||||||
MAX3421E::Task();
|
|
||||||
|
|
||||||
tmpdata = getVbusState();
|
|
||||||
|
|
||||||
/* modify USB task state if Vbus changed */
|
|
||||||
switch( tmpdata )
|
|
||||||
{
|
|
||||||
case SE1: //illegal state
|
|
||||||
usb_task_state = USB_DETACHED_SUBSTATE_ILLEGAL;
|
|
||||||
lowspeed = false;
|
|
||||||
break;
|
|
||||||
case SE0: //disconnected
|
|
||||||
if(( usb_task_state & USB_STATE_MASK ) != USB_STATE_DETACHED )
|
|
||||||
usb_task_state = USB_DETACHED_SUBSTATE_INITIALIZE;
|
|
||||||
lowspeed = false;
|
|
||||||
break;
|
|
||||||
case LSHOST:
|
|
||||||
lowspeed = true;
|
|
||||||
case FSHOST: //attached
|
|
||||||
if(( usb_task_state & USB_STATE_MASK ) == USB_STATE_DETACHED )
|
|
||||||
{
|
|
||||||
delay = millis() + USB_SETTLE_DELAY;
|
|
||||||
usb_task_state = USB_ATTACHED_SUBSTATE_SETTLE;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}// switch( tmpdata
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<USB_NUMDEVICES; i++)
|
|
||||||
if (devConfig[i])
|
|
||||||
rcode = devConfig[i]->Poll();
|
|
||||||
|
|
||||||
switch( usb_task_state ) {
|
|
||||||
case USB_DETACHED_SUBSTATE_INITIALIZE:
|
|
||||||
init();
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<USB_NUMDEVICES; i++)
|
|
||||||
if (devConfig[i])
|
|
||||||
rcode = devConfig[i]->Release();
|
|
||||||
|
|
||||||
usb_task_state = USB_DETACHED_SUBSTATE_WAIT_FOR_DEVICE;
|
|
||||||
break;
|
|
||||||
case USB_DETACHED_SUBSTATE_WAIT_FOR_DEVICE: //just sit here
|
|
||||||
break;
|
|
||||||
case USB_DETACHED_SUBSTATE_ILLEGAL: //just sit here
|
|
||||||
break;
|
|
||||||
case USB_ATTACHED_SUBSTATE_SETTLE: //setlle time for just attached device
|
|
||||||
if( delay < millis() )
|
|
||||||
usb_task_state = USB_ATTACHED_SUBSTATE_RESET_DEVICE;
|
|
||||||
break;
|
|
||||||
case USB_ATTACHED_SUBSTATE_RESET_DEVICE:
|
|
||||||
regWr( rHCTL, bmBUSRST ); //issue bus reset
|
|
||||||
usb_task_state = USB_ATTACHED_SUBSTATE_WAIT_RESET_COMPLETE;
|
|
||||||
break;
|
|
||||||
case USB_ATTACHED_SUBSTATE_WAIT_RESET_COMPLETE:
|
|
||||||
if(( regRd( rHCTL ) & bmBUSRST ) == 0 )
|
|
||||||
{
|
|
||||||
tmpdata = regRd( rMODE ) | bmSOFKAENAB; //start SOF generation
|
|
||||||
regWr( rMODE, tmpdata );
|
|
||||||
usb_task_state = USB_ATTACHED_SUBSTATE_WAIT_SOF;
|
|
||||||
delay = millis() + 20; //20ms wait after reset per USB spec
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case USB_ATTACHED_SUBSTATE_WAIT_SOF: //todo: change check order
|
|
||||||
if( regRd( rHIRQ ) & bmFRAMEIRQ ) //when first SOF received we can continue
|
|
||||||
{
|
|
||||||
if( delay < millis() ) //20ms passed
|
|
||||||
usb_task_state = USB_STATE_CONFIGURING;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case USB_STATE_CONFIGURING:
|
|
||||||
rcode = Configuring(0, 0, lowspeed);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
if (rcode != USB_DEV_CONFIG_ERROR_DEVICE_INIT_INCOMPLETE)
|
|
||||||
{
|
|
||||||
usb_error = rcode;
|
|
||||||
usb_task_state = USB_STATE_ERROR;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
usb_task_state = USB_STATE_RUNNING;
|
|
||||||
break;
|
|
||||||
case USB_STATE_RUNNING:
|
|
||||||
break;
|
|
||||||
case USB_STATE_ERROR:
|
|
||||||
break;
|
|
||||||
} // switch( usb_task_state )
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t USB::DefaultAddressing(uint8_t parent, uint8_t port, bool lowspeed)
|
|
||||||
{
|
|
||||||
uint8_t buf[12];
|
|
||||||
uint8_t rcode;
|
|
||||||
UsbDevice *p0 = NULL, *p = NULL;
|
|
||||||
|
|
||||||
// Get pointer to pseudo device with address 0 assigned
|
|
||||||
p0 = addrPool.GetUsbDevicePtr(0);
|
|
||||||
|
|
||||||
if (!p0)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
if (!p0->epinfo)
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
|
|
||||||
p0->lowspeed = (lowspeed) ? true : false;
|
|
||||||
|
|
||||||
// Allocate new address according to device class
|
|
||||||
uint8_t bAddress = addrPool.AllocAddress(parent, false, port);
|
|
||||||
|
|
||||||
if (!bAddress)
|
|
||||||
return USB_ERROR_OUT_OF_ADDRESS_SPACE_IN_POOL;
|
|
||||||
|
|
||||||
p = addrPool.GetUsbDevicePtr(bAddress);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Assign new address to the device
|
|
||||||
rcode = setAddr( 0, 0, bAddress );
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
addrPool.FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t USB::Configuring(uint8_t parent, uint8_t port, bool lowspeed)
|
|
||||||
{
|
|
||||||
static uint8_t dev_index = 0;
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
|
|
||||||
for (; devConfigIndex<USB_NUMDEVICES; devConfigIndex++)
|
|
||||||
{
|
|
||||||
if (!devConfig[devConfigIndex])
|
|
||||||
continue;
|
|
||||||
|
|
||||||
rcode = devConfig[devConfigIndex]->Init(parent, port, lowspeed);
|
|
||||||
|
|
||||||
if (!rcode)
|
|
||||||
{
|
|
||||||
devConfigIndex = 0;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
if (!(rcode == USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED || rcode == USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE))
|
|
||||||
{
|
|
||||||
// in case of an error dev_index should be reset to 0
|
|
||||||
// in order to start from the very beginning the
|
|
||||||
// next time the program gets here
|
|
||||||
if (rcode != USB_DEV_CONFIG_ERROR_DEVICE_INIT_INCOMPLETE)
|
|
||||||
devConfigIndex = 0;
|
|
||||||
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// if we get here that means that the device class is not supported by any of registered classes
|
|
||||||
devConfigIndex = 0;
|
|
||||||
|
|
||||||
rcode = DefaultAddressing(parent, port, lowspeed);
|
|
||||||
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t USB::ReleaseDevice(uint8_t addr)
|
|
||||||
{
|
|
||||||
if (!addr)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<USB_NUMDEVICES; i++)
|
|
||||||
if (devConfig[i]->GetAddress() == addr)
|
|
||||||
return devConfig[i]->Release();
|
|
||||||
}
|
|
||||||
|
|
||||||
#if 1 //!defined(USB_METHODS_INLINE)
|
|
||||||
//get device descriptor
|
|
||||||
uint8_t USB::getDevDescr( uint8_t addr, uint8_t ep, uint16_t nbytes, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( ctrlReq( addr, ep, bmREQ_GET_DESCR, USB_REQUEST_GET_DESCRIPTOR, 0x00, USB_DESCRIPTOR_DEVICE, 0x0000, nbytes, nbytes, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
//get configuration descriptor
|
|
||||||
uint8_t USB::getConfDescr( uint8_t addr, uint8_t ep, uint16_t nbytes, uint8_t conf, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( ctrlReq( addr, ep, bmREQ_GET_DESCR, USB_REQUEST_GET_DESCRIPTOR, conf, USB_DESCRIPTOR_CONFIGURATION, 0x0000, nbytes, nbytes, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t USB::getConfDescr( uint8_t addr, uint8_t ep, uint8_t conf, USBReadParser *p )
|
|
||||||
{
|
|
||||||
const uint8_t bufSize = 64;
|
|
||||||
uint8_t buf[bufSize];
|
|
||||||
|
|
||||||
uint8_t ret = getConfDescr( addr, ep, 8, conf, buf );
|
|
||||||
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
uint16_t total = ((USB_CONFIGURATION_DESCRIPTOR*)buf)->wTotalLength;
|
|
||||||
delay(100);
|
|
||||||
//USBTRACE2("\r\ntotal conf.size:", total);
|
|
||||||
|
|
||||||
return( ctrlReq( addr, ep, bmREQ_GET_DESCR, USB_REQUEST_GET_DESCRIPTOR, conf, USB_DESCRIPTOR_CONFIGURATION, 0x0000, total, bufSize, buf, p ));
|
|
||||||
}
|
|
||||||
|
|
||||||
//get string descriptor
|
|
||||||
uint8_t USB::getStrDescr( uint8_t addr, uint8_t ep, uint16_t ns, uint8_t index, uint16_t langid, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( ctrlReq( addr, ep, bmREQ_GET_DESCR, USB_REQUEST_GET_DESCRIPTOR, index, USB_DESCRIPTOR_STRING, langid, ns, ns, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
//set address
|
|
||||||
uint8_t USB::setAddr( uint8_t oldaddr, uint8_t ep, uint8_t newaddr )
|
|
||||||
{
|
|
||||||
return( ctrlReq( oldaddr, ep, bmREQ_SET, USB_REQUEST_SET_ADDRESS, newaddr, 0x00, 0x0000, 0x0000, 0x0000, NULL, NULL ));
|
|
||||||
}
|
|
||||||
//set configuration
|
|
||||||
uint8_t USB::setConf( uint8_t addr, uint8_t ep, uint8_t conf_value )
|
|
||||||
{
|
|
||||||
return( ctrlReq( addr, ep, bmREQ_SET, USB_REQUEST_SET_CONFIGURATION, conf_value, 0x00, 0x0000, 0x0000, 0x0000, NULL, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // defined(USB_METHODS_INLINE)
|
|
||||||
|
|
283
Usb.h
283
Usb.h
|
@ -1,283 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
/* USB functions */
|
|
||||||
#ifndef _usb_h_
|
|
||||||
#define _usb_h_
|
|
||||||
|
|
||||||
|
|
||||||
//#define BOARD_BLACK_WIDDOW
|
|
||||||
|
|
||||||
|
|
||||||
#define USB_METHODS_INLINE
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
#include <assert.h>
|
|
||||||
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
#include "address.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
|
|
||||||
|
|
||||||
/* shield pins. First parameter - SS pin, second parameter - INT pin */
|
|
||||||
|
|
||||||
#if defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB1286__)
|
|
||||||
#define BOARD_TEENSY_PLUS_PLUS
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef BOARD_BLACK_WIDDOW
|
|
||||||
typedef MAX3421e<P6, P3> MAX3421E; // Black Widow
|
|
||||||
#elif defined(BOARD_TEENSY_PLUS_PLUS)
|
|
||||||
typedef MAX3421e<P9, P8> MAX3421E; // Teensy++ 2.0 & 1.0
|
|
||||||
#elif defined(BOARD_MEGA_ADK)
|
|
||||||
typedef MAX3421e<P53, P54> MAX3421E; // Arduino Mega ADK
|
|
||||||
#else
|
|
||||||
typedef MAX3421e<P10, P9> MAX3421E; // Official Arduinos (UNO, Duemilanove, Mega, 2560
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//Debug macros. In 1.0 it is possible to move strings to PROGMEM by defining USBTRACE (Serial.print(F(s)))
|
|
||||||
#define USBTRACE(s) (Serial.print((s)))
|
|
||||||
#define USBTRACE2(s,r) (Serial.print((s)), Serial.println((r),HEX))
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Common setup data constant combinations */
|
|
||||||
#define bmREQ_GET_DESCR USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_STANDARD|USB_SETUP_RECIPIENT_DEVICE //get descriptor request type
|
|
||||||
#define bmREQ_SET USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_STANDARD|USB_SETUP_RECIPIENT_DEVICE //set request type for all but 'set feature' and 'set interface'
|
|
||||||
#define bmREQ_CL_GET_INTF USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE //get interface request type
|
|
||||||
|
|
||||||
// D7 data transfer direction (0 - host-to-device, 1 - device-to-host)
|
|
||||||
// D6-5 Type (0- standard, 1 - class, 2 - vendor, 3 - reserved)
|
|
||||||
// D4-0 Recipient (0 - device, 1 - interface, 2 - endpoint, 3 - other, 4..31 - reserved)
|
|
||||||
|
|
||||||
// USB Device Classes
|
|
||||||
#define USB_CLASS_USE_CLASS_INFO 0x00 // Use Class Info in the Interface Descriptors
|
|
||||||
#define USB_CLASS_AUDIO 0x01 // Audio
|
|
||||||
#define USB_CLASS_COM_AND_CDC_CTRL 0x02 // Communications and CDC Control
|
|
||||||
#define USB_CLASS_HID 0x03 // HID
|
|
||||||
#define USB_CLASS_PHYSICAL 0x05 // Physical
|
|
||||||
#define USB_CLASS_IMAGE 0x06 // Image
|
|
||||||
#define USB_CLASS_PRINTER 0x07 // Printer
|
|
||||||
#define USB_CLASS_MASS_STORAGE 0x08 // Mass Storage
|
|
||||||
#define USB_CLASS_HUB 0x09 // Hub
|
|
||||||
#define USB_CLASS_CDC_DATA 0x0a // CDC-Data
|
|
||||||
#define USB_CLASS_SMART_CARD 0x0b // Smart-Card
|
|
||||||
#define USB_CLASS_CONTENT_SECURITY 0x0d // Content Security
|
|
||||||
#define USB_CLASS_VIDEO 0x0e // Video
|
|
||||||
#define USB_CLASS_PERSONAL_HEALTH 0x0f // Personal Healthcare
|
|
||||||
#define USB_CLASS_DIAGNOSTIC_DEVICE 0xdc // Diagnostic Device
|
|
||||||
#define USB_CLASS_WIRELESS_CTRL 0xe0 // Wireless Controller
|
|
||||||
#define USB_CLASS_MISC 0xef // Miscellaneous
|
|
||||||
#define USB_CLASS_APP_SPECIFIC 0xfe // Application Specific
|
|
||||||
#define USB_CLASS_VENDOR_SPECIFIC 0xff // Vendor Specific
|
|
||||||
|
|
||||||
// Additional Error Codes
|
|
||||||
#define USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED 0xD1
|
|
||||||
#define USB_DEV_CONFIG_ERROR_DEVICE_INIT_INCOMPLETE 0xD2
|
|
||||||
#define USB_ERROR_UNABLE_TO_REGISTER_DEVICE_CLASS 0xD3
|
|
||||||
#define USB_ERROR_OUT_OF_ADDRESS_SPACE_IN_POOL 0xD4
|
|
||||||
#define USB_ERROR_HUB_ADDRESS_OVERFLOW 0xD5
|
|
||||||
#define USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL 0xD6
|
|
||||||
#define USB_ERROR_EPINFO_IS_NULL 0xD7
|
|
||||||
#define USB_ERROR_INVALID_ARGUMENT 0xD8
|
|
||||||
#define USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE 0xD9
|
|
||||||
#define USB_ERROR_INVALID_MAX_PKT_SIZE 0xDA
|
|
||||||
#define USB_ERROR_EP_NOT_FOUND_IN_TBL 0xDB
|
|
||||||
#define USB_ERROR_TRANSFER_TIMEOUT 0xFF
|
|
||||||
|
|
||||||
class USBDeviceConfig
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed) = 0;
|
|
||||||
virtual uint8_t Release() = 0;
|
|
||||||
virtual uint8_t Poll() = 0;
|
|
||||||
virtual uint8_t GetAddress() = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
#define USB_XFER_TIMEOUT 5000 //USB transfer timeout in milliseconds, per section 9.2.6.1 of USB 2.0 spec
|
|
||||||
//#define USB_NAK_LIMIT 32000 //NAK limit for a transfer. 0 means NAKs are not counted
|
|
||||||
#define USB_RETRY_LIMIT 3 //retry limit for a transfer
|
|
||||||
#define USB_SETTLE_DELAY 200 //settle delay in milliseconds
|
|
||||||
|
|
||||||
#define USB_NUMDEVICES 16 //number of USB devices
|
|
||||||
//#define HUB_MAX_HUBS 7 // maximum number of hubs that can be attached to the host controller
|
|
||||||
#define HUB_PORT_RESET_DELAY 20 // hub port reset delay 10 ms recomended, can be up to 20 ms
|
|
||||||
|
|
||||||
/* USB state machine states */
|
|
||||||
#define USB_STATE_MASK 0xf0
|
|
||||||
|
|
||||||
#define USB_STATE_DETACHED 0x10
|
|
||||||
#define USB_DETACHED_SUBSTATE_INITIALIZE 0x11
|
|
||||||
#define USB_DETACHED_SUBSTATE_WAIT_FOR_DEVICE 0x12
|
|
||||||
#define USB_DETACHED_SUBSTATE_ILLEGAL 0x13
|
|
||||||
#define USB_ATTACHED_SUBSTATE_SETTLE 0x20
|
|
||||||
#define USB_ATTACHED_SUBSTATE_RESET_DEVICE 0x30
|
|
||||||
#define USB_ATTACHED_SUBSTATE_WAIT_RESET_COMPLETE 0x40
|
|
||||||
#define USB_ATTACHED_SUBSTATE_WAIT_SOF 0x50
|
|
||||||
#define USB_ATTACHED_SUBSTATE_GET_DEVICE_DESCRIPTOR_SIZE 0x60
|
|
||||||
#define USB_STATE_ADDRESSING 0x70
|
|
||||||
#define USB_STATE_CONFIGURING 0x80
|
|
||||||
#define USB_STATE_RUNNING 0x90
|
|
||||||
#define USB_STATE_ERROR 0xa0
|
|
||||||
|
|
||||||
/* USB Setup Packet Structure */
|
|
||||||
typedef struct {
|
|
||||||
union { // offset description
|
|
||||||
uint8_t bmRequestType; // 0 Bit-map of request type
|
|
||||||
struct {
|
|
||||||
uint8_t recipient: 5; // Recipient of the request
|
|
||||||
uint8_t type: 2; // Type of request
|
|
||||||
uint8_t direction: 1; // Direction of data X-fer
|
|
||||||
};
|
|
||||||
}ReqType_u;
|
|
||||||
uint8_t bRequest; // 1 Request
|
|
||||||
union {
|
|
||||||
uint16_t wValue; // 2 Depends on bRequest
|
|
||||||
struct {
|
|
||||||
uint8_t wValueLo;
|
|
||||||
uint8_t wValueHi;
|
|
||||||
};
|
|
||||||
}wVal_u;
|
|
||||||
uint16_t wIndex; // 4 Depends on bRequest
|
|
||||||
uint16_t wLength; // 6 Depends on bRequest
|
|
||||||
} SETUP_PKT, *PSETUP_PKT;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Base class for incomming data parser
|
|
||||||
class USBReadParser
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual void Parse(const uint16_t len, const uint8_t *pbuf, const uint16_t &offset) = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
class USB : public MAX3421E
|
|
||||||
{
|
|
||||||
AddressPoolImpl<USB_NUMDEVICES> addrPool;
|
|
||||||
USBDeviceConfig* devConfig[USB_NUMDEVICES];
|
|
||||||
uint8_t devConfigIndex;
|
|
||||||
uint8_t bmHubPre;
|
|
||||||
|
|
||||||
public:
|
|
||||||
USB( void );
|
|
||||||
|
|
||||||
void SetHubPreMask() { bmHubPre |= bmHUBPRE; };
|
|
||||||
void ResetHubPreMask() { bmHubPre &= (~bmHUBPRE); };
|
|
||||||
|
|
||||||
AddressPool& GetAddressPool()
|
|
||||||
{
|
|
||||||
return (AddressPool&)addrPool;
|
|
||||||
};
|
|
||||||
uint8_t RegisterDeviceClass(USBDeviceConfig *pdev)
|
|
||||||
{
|
|
||||||
for (uint8_t i=0; i<USB_NUMDEVICES; i++)
|
|
||||||
{
|
|
||||||
if (!devConfig[i])
|
|
||||||
{
|
|
||||||
devConfig[i] = pdev;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return USB_ERROR_UNABLE_TO_REGISTER_DEVICE_CLASS;
|
|
||||||
};
|
|
||||||
void ForEachUsbDevice(UsbDeviceHandleFunc pfunc)
|
|
||||||
{
|
|
||||||
addrPool.ForEachUsbDevice(pfunc);
|
|
||||||
};
|
|
||||||
uint8_t getUsbTaskState( void );
|
|
||||||
void setUsbTaskState( uint8_t state );
|
|
||||||
|
|
||||||
EpInfo* getEpInfoEntry( uint8_t addr, uint8_t ep );
|
|
||||||
uint8_t setEpInfoEntry( uint8_t addr, uint8_t epcount, EpInfo* eprecord_ptr );
|
|
||||||
|
|
||||||
//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 nbytes, uint8_t* dataptr);
|
|
||||||
|
|
||||||
/* Control requests */
|
|
||||||
uint8_t getDevDescr( uint8_t addr, uint8_t ep, uint16_t nbytes, uint8_t* dataptr );
|
|
||||||
uint8_t getConfDescr( uint8_t addr, uint8_t ep, uint16_t nbytes, uint8_t conf, uint8_t* dataptr );
|
|
||||||
|
|
||||||
uint8_t getConfDescr( uint8_t addr, uint8_t ep, uint8_t conf, USBReadParser *p );
|
|
||||||
|
|
||||||
uint8_t getStrDescr( uint8_t addr, uint8_t ep, uint16_t nbytes, uint8_t index, uint16_t langid, uint8_t* dataptr );
|
|
||||||
uint8_t setAddr( uint8_t oldaddr, uint8_t ep, uint8_t newaddr );
|
|
||||||
uint8_t setConf( uint8_t addr, uint8_t ep, uint8_t conf_value );
|
|
||||||
/**/
|
|
||||||
uint8_t ctrlData( uint8_t addr, uint8_t ep, uint16_t nbytes, uint8_t* dataptr, boolean direction );
|
|
||||||
uint8_t ctrlStatus( uint8_t ep, boolean direction, uint16_t nak_limit );
|
|
||||||
uint8_t inTransfer( uint8_t addr, uint8_t ep, uint16_t *nbytesptr, uint8_t* data );
|
|
||||||
uint8_t outTransfer( uint8_t addr, uint8_t ep, uint16_t nbytes, uint8_t* data );
|
|
||||||
uint8_t dispatchPkt( uint8_t token, uint8_t ep, uint16_t nak_limit );
|
|
||||||
|
|
||||||
void Task( void );
|
|
||||||
|
|
||||||
uint8_t DefaultAddressing(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
uint8_t Configuring(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
uint8_t ReleaseDevice(uint8_t addr);
|
|
||||||
|
|
||||||
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);
|
|
||||||
|
|
||||||
private:
|
|
||||||
void init();
|
|
||||||
uint8_t SetAddress(uint8_t addr, uint8_t ep, EpInfo **ppep, uint16_t &nak_limit);
|
|
||||||
uint8_t OutTransfer(EpInfo *pep, uint16_t nak_limit, uint16_t nbytes, uint8_t *data);
|
|
||||||
uint8_t InTransfer (EpInfo *pep, uint16_t nak_limit, uint16_t *nbytesptr, uint8_t *data);
|
|
||||||
};
|
|
||||||
|
|
||||||
#if 0 //defined(USB_METHODS_INLINE)
|
|
||||||
//get device descriptor
|
|
||||||
inline uint8_t USB::getDevDescr( uint8_t addr, uint8_t ep, uint16_t nbytes, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( ctrlReq( addr, ep, bmREQ_GET_DESCR, USB_REQUEST_GET_DESCRIPTOR, 0x00, USB_DESCRIPTOR_DEVICE, 0x0000, nbytes, dataptr ));
|
|
||||||
}
|
|
||||||
//get configuration descriptor
|
|
||||||
inline uint8_t USB::getConfDescr( uint8_t addr, uint8_t ep, uint16_t nbytes, uint8_t conf, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( ctrlReq( addr, ep, bmREQ_GET_DESCR, USB_REQUEST_GET_DESCRIPTOR, conf, USB_DESCRIPTOR_CONFIGURATION, 0x0000, nbytes, dataptr ));
|
|
||||||
}
|
|
||||||
//get string descriptor
|
|
||||||
inline uint8_t USB::getStrDescr( uint8_t addr, uint8_t ep, uint16_t nuint8_ts, uint8_t index, uint16_t langid, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( ctrlReq( addr, ep, bmREQ_GET_DESCR, USB_REQUEST_GET_DESCRIPTOR, index, USB_DESCRIPTOR_STRING, langid, nuint8_ts, dataptr ));
|
|
||||||
}
|
|
||||||
//set address
|
|
||||||
inline uint8_t USB::setAddr( uint8_t oldaddr, uint8_t ep, uint8_t newaddr )
|
|
||||||
{
|
|
||||||
return( ctrlReq( oldaddr, ep, bmREQ_SET, USB_REQUEST_SET_ADDRESS, newaddr, 0x00, 0x0000, 0x0000, NULL ));
|
|
||||||
}
|
|
||||||
//set configuration
|
|
||||||
inline uint8_t USB::setConf( uint8_t addr, uint8_t ep, uint8_t conf_value )
|
|
||||||
{
|
|
||||||
return( ctrlReq( addr, ep, bmREQ_SET, USB_REQUEST_SET_CONFIGURATION, conf_value, 0x00, 0x0000, 0x0000, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // defined(USB_METHODS_INLINE)
|
|
||||||
|
|
||||||
#endif //_usb_h_
|
|
295
Wii.h
295
Wii.h
|
@ -1,295 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
|
|
||||||
IR camera support added by:
|
|
||||||
Allan Glover
|
|
||||||
adglover9.81@gmail.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _wii_h_
|
|
||||||
#define _wii_h_
|
|
||||||
|
|
||||||
#include "BTD.h"
|
|
||||||
|
|
||||||
//#define WIICAMERA //uncomment to enable IR camera
|
|
||||||
|
|
||||||
/* Bluetooth L2CAP states for L2CAP_task() */
|
|
||||||
#define L2CAP_WAIT 0
|
|
||||||
|
|
||||||
// These states are used if the Wiimote is the host
|
|
||||||
#define L2CAP_CONTROL_SUCCESS 1
|
|
||||||
#define L2CAP_INTERRUPT_SETUP 2
|
|
||||||
|
|
||||||
// These states are used if the Arduino is the host
|
|
||||||
#define L2CAP_CONTROL_CONNECT_REQUEST 3
|
|
||||||
#define L2CAP_CONTROL_CONFIG_REQUEST 4
|
|
||||||
#define L2CAP_INTERRUPT_CONNECT_REQUEST 5
|
|
||||||
|
|
||||||
#define L2CAP_INTERRUPT_CONFIG_REQUEST 6
|
|
||||||
|
|
||||||
#define L2CAP_CHECK_MOTION_PLUS_STATE 7
|
|
||||||
#define L2CAP_CHECK_EXTENSION_STATE 8
|
|
||||||
#define L2CAP_INIT_MOTION_PLUS_STATE 9
|
|
||||||
#define L2CAP_LED_STATE 10
|
|
||||||
#define L2CAP_DONE 11
|
|
||||||
|
|
||||||
#define L2CAP_INTERRUPT_DISCONNECT 12
|
|
||||||
#define L2CAP_CONTROL_DISCONNECT 13
|
|
||||||
|
|
||||||
/* L2CAP event flags */
|
|
||||||
#define L2CAP_FLAG_CONTROL_CONNECTED 0x001
|
|
||||||
#define L2CAP_FLAG_INTERRUPT_CONNECTED 0x002
|
|
||||||
#define L2CAP_FLAG_CONFIG_CONTROL_SUCCESS 0x004
|
|
||||||
#define L2CAP_FLAG_CONFIG_INTERRUPT_SUCCESS 0x008
|
|
||||||
#define L2CAP_FLAG_DISCONNECT_CONTROL_RESPONSE 0x040
|
|
||||||
#define L2CAP_FLAG_DISCONNECT_INTERRUPT_RESPONSE 0x080
|
|
||||||
#define L2CAP_FLAG_CONNECTION_CONTROL_REQUEST 0x100
|
|
||||||
#define L2CAP_FLAG_CONNECTION_INTERRUPT_REQUEST 0x200
|
|
||||||
|
|
||||||
/* Macros for L2CAP event flag tests */
|
|
||||||
#define l2cap_connected_control_flag (l2cap_event_flag & L2CAP_FLAG_CONTROL_CONNECTED)
|
|
||||||
#define l2cap_connected_interrupt_flag (l2cap_event_flag & L2CAP_FLAG_INTERRUPT_CONNECTED)
|
|
||||||
#define l2cap_config_success_control_flag (l2cap_event_flag & L2CAP_FLAG_CONFIG_CONTROL_SUCCESS)
|
|
||||||
#define l2cap_config_success_interrupt_flag (l2cap_event_flag & L2CAP_FLAG_CONFIG_INTERRUPT_SUCCESS)
|
|
||||||
#define l2cap_disconnect_response_control_flag (l2cap_event_flag & L2CAP_FLAG_DISCONNECT_CONTROL_RESPONSE)
|
|
||||||
#define l2cap_disconnect_response_interrupt_flag (l2cap_event_flag & L2CAP_FLAG_DISCONNECT_INTERRUPT_RESPONSE)
|
|
||||||
#define l2cap_connection_request_control_flag (l2cap_event_flag & L2CAP_FLAG_CONNECTION_CONTROL_REQUEST)
|
|
||||||
#define l2cap_connection_request_interrupt_flag (l2cap_event_flag & L2CAP_FLAG_CONNECTION_INTERRUPT_REQUEST)
|
|
||||||
|
|
||||||
/* Wii event flags */
|
|
||||||
#define WII_FLAG_MOTION_PLUS_CONNECTED 0x400
|
|
||||||
#define WII_FLAG_NUNCHUCK_CONNECTED 0x800
|
|
||||||
|
|
||||||
#define motion_plus_connected_flag (l2cap_event_flag & WII_FLAG_MOTION_PLUS_CONNECTED)
|
|
||||||
#define nunchuck_connected_flag (l2cap_event_flag & WII_FLAG_NUNCHUCK_CONNECTED)
|
|
||||||
|
|
||||||
#define PAIR 1
|
|
||||||
|
|
||||||
enum LED {
|
|
||||||
LED1 = 0x10,
|
|
||||||
LED2 = 0x20,
|
|
||||||
LED3 = 0x40,
|
|
||||||
LED4 = 0x80,
|
|
||||||
|
|
||||||
LED5 = 0x90,
|
|
||||||
LED6 = 0xA0,
|
|
||||||
LED7 = 0xC0,
|
|
||||||
LED8 = 0xD0,
|
|
||||||
LED9 = 0xE0,
|
|
||||||
LED10 = 0xF0,
|
|
||||||
};
|
|
||||||
|
|
||||||
enum Button {
|
|
||||||
LEFT = 0x00001,
|
|
||||||
RIGHT = 0x00002,
|
|
||||||
DOWN = 0x00004,
|
|
||||||
UP = 0x00008,
|
|
||||||
PLUS = 0x00010,
|
|
||||||
|
|
||||||
TWO = 0x00100,
|
|
||||||
ONE = 0x00200,
|
|
||||||
B = 0x00400,
|
|
||||||
A = 0x00800,
|
|
||||||
MINUS = 0x01000,
|
|
||||||
HOME = 0x08000,
|
|
||||||
|
|
||||||
Z = 0x10000,
|
|
||||||
C = 0x20000,
|
|
||||||
};
|
|
||||||
enum AnalogHat {
|
|
||||||
HatX = 0,
|
|
||||||
HatY = 1,
|
|
||||||
};
|
|
||||||
|
|
||||||
class WII : public BluetoothService {
|
|
||||||
public:
|
|
||||||
WII(BTD *p, bool pair=false);
|
|
||||||
|
|
||||||
// BluetoothService implementation
|
|
||||||
virtual void ACLData(uint8_t* ACLData); // Used to pass acldata to the services
|
|
||||||
virtual void Run(); // Used to run part of the state maschine
|
|
||||||
virtual void Reset(); // Use this to reset the service
|
|
||||||
virtual void disconnect(); // Use this void to disconnect any of the controllers
|
|
||||||
|
|
||||||
/*
|
|
||||||
getButtonPress will return true as long as the button is held down
|
|
||||||
While getButtonClick will only return it once
|
|
||||||
So you instance if you need to increase a variable once you would use getButtonClick,
|
|
||||||
but if you need to drive a robot forward you would use getButtonPress
|
|
||||||
*/
|
|
||||||
bool getButtonPress(Button b); // This will read true as long as the button is held down
|
|
||||||
bool getButtonClick(Button b); // This will only be true when the button is clicked the first time
|
|
||||||
|
|
||||||
uint8_t getAnalogHat(AnalogHat a); // Used to read the joystick of the Nunchuck
|
|
||||||
|
|
||||||
double getPitch() { return pitch; }; // Fusioned angle using a complimentary filter if the Motion Plus is connected
|
|
||||||
double getRoll() { return roll; }; // Fusioned angle using a complimentary filter if the Motion Plus is connected
|
|
||||||
double getYaw() { return gyroYaw; }; // This is the yaw calculated by the gyro
|
|
||||||
|
|
||||||
void setAllOff(); // Turn both rumble and all LEDs off
|
|
||||||
void setRumbleOff();
|
|
||||||
void setRumbleOn();
|
|
||||||
void setRumbleToggle();
|
|
||||||
void setLedOff(LED a);
|
|
||||||
void setLedOn(LED a);
|
|
||||||
void setLedToggle(LED a);
|
|
||||||
void setLedStatus(); // This will set the LEDs, so the user can see which connections are active
|
|
||||||
|
|
||||||
bool wiimoteConnected; // Variable used to indicate if a Wiimote is connected
|
|
||||||
bool nunchuckConnected; // Variable used to indicate if a Nunchuck controller is connected
|
|
||||||
bool motionPlusConnected; // Variable used to indicate if a Nunchuck controller is connected
|
|
||||||
|
|
||||||
/* IMU Data, might be usefull if you need to do something more advanced than just calculating the angle */
|
|
||||||
|
|
||||||
double wiiMotePitch; // Pitch and roll calculated from the accelerometer inside the Wiimote
|
|
||||||
double wiiMoteRoll;
|
|
||||||
double nunchuckPitch; // Pitch and roll calculated from the accelerometer inside the Nunchuck
|
|
||||||
double nunchuckRoll;
|
|
||||||
|
|
||||||
int16_t accX; // Accelerometer values used to calculate pitch and roll
|
|
||||||
int16_t accY;
|
|
||||||
int16_t accZ;
|
|
||||||
|
|
||||||
/* Variables for the gyro inside the Motion Plus */
|
|
||||||
double gyroPitch; // This is the pitch calculated by the gyro - use this to tune pitchGyroScale
|
|
||||||
double gyroRoll; // This is the roll calculated by the gyro - use this to tune rollGyroScale
|
|
||||||
double gyroYaw; // This is the yaw calculated by the gyro - use this to tune yawGyroScale
|
|
||||||
|
|
||||||
double pitchGyroSpeed; // The speed in deg/s from the gyro
|
|
||||||
double rollGyroSpeed;
|
|
||||||
double yawGyroSpeed;
|
|
||||||
|
|
||||||
uint16_t pitchGyroScale; // You might need to fine-tune these values
|
|
||||||
uint16_t rollGyroScale;
|
|
||||||
uint16_t yawGyroScale;
|
|
||||||
|
|
||||||
int16_t gyroYawRaw; // Raw value read directly from the Motion Plus
|
|
||||||
int16_t gyroRollRaw;
|
|
||||||
int16_t gyroPitchRaw;
|
|
||||||
|
|
||||||
int16_t gyroYawZero; // These values are set when the controller is first initialized
|
|
||||||
int16_t gyroRollZero;
|
|
||||||
int16_t gyroPitchZero;
|
|
||||||
|
|
||||||
uint8_t getBatteryLevel() { return batteryLevel; };
|
|
||||||
uint8_t getWiiState() { return wiiState; };
|
|
||||||
|
|
||||||
#ifdef WIICAMERA
|
|
||||||
/* These are functions for the IR camera */
|
|
||||||
void IRinitialize(); // Initialises the camera as per the steps from http://wiibrew.org/wiki/Wiimote#IR_Camera
|
|
||||||
|
|
||||||
uint16_t getIRx1() { return IR_object_x1; }; // IR object 1 x position (0-1023)
|
|
||||||
uint16_t getIRy1() { return IR_object_y1; }; // IR object 1 y position (0-767)
|
|
||||||
uint8_t getIRs1() { return IR_object_s1; }; // IR object 1 size (0-15)
|
|
||||||
|
|
||||||
uint16_t getIRx2() { return IR_object_x2; };
|
|
||||||
uint16_t getIRy2() { return IR_object_y2; };
|
|
||||||
uint8_t getIRs2() { return IR_object_s2; };
|
|
||||||
|
|
||||||
uint16_t getIRx3() { return IR_object_x3; };
|
|
||||||
uint16_t getIRy3() { return IR_object_y3; };
|
|
||||||
uint8_t getIRs3() { return IR_object_s3; };
|
|
||||||
|
|
||||||
uint16_t getIRx4() { return IR_object_x4; };
|
|
||||||
uint16_t getIRy4() { return IR_object_y4; };
|
|
||||||
uint8_t getIRs4() { return IR_object_s4; };
|
|
||||||
|
|
||||||
bool isIRCameraEnabled() { return (wiiState & 0x08); };
|
|
||||||
#endif
|
|
||||||
|
|
||||||
private:
|
|
||||||
/* Mandatory members */
|
|
||||||
BTD *pBtd;
|
|
||||||
|
|
||||||
void L2CAP_task(); // L2CAP state machine
|
|
||||||
|
|
||||||
/* Variables filled from HCI event management */
|
|
||||||
uint16_t hci_handle;
|
|
||||||
bool activeConnection; // Used to indicate if it's already has established a connection
|
|
||||||
|
|
||||||
/* variables used by high level L2CAP task */
|
|
||||||
uint8_t l2cap_state;
|
|
||||||
uint16_t l2cap_event_flag;// l2cap flags of received bluetooth events
|
|
||||||
|
|
||||||
uint32_t ButtonState;
|
|
||||||
uint32_t OldButtonState;
|
|
||||||
uint32_t ButtonClickState;
|
|
||||||
uint8_t hatValues[2];
|
|
||||||
|
|
||||||
uint8_t HIDBuffer[3];// Used to store HID commands
|
|
||||||
|
|
||||||
uint16_t stateCounter;
|
|
||||||
bool unknownExtensionConnected;
|
|
||||||
bool extensionConnected;
|
|
||||||
|
|
||||||
/* L2CAP Channels */
|
|
||||||
uint8_t control_scid[2]; // L2CAP source CID for HID_Control
|
|
||||||
uint8_t control_dcid[2]; // 0x0060
|
|
||||||
uint8_t interrupt_scid[2]; // L2CAP source CID for HID_Interrupt
|
|
||||||
uint8_t interrupt_dcid[2]; // 0x0061
|
|
||||||
uint8_t identifier; // Identifier for connection
|
|
||||||
|
|
||||||
/* HID Commands */
|
|
||||||
void HID_Command(uint8_t* data, uint8_t nbytes);
|
|
||||||
void setReportMode(bool continuous, uint8_t mode);
|
|
||||||
void statusRequest();
|
|
||||||
|
|
||||||
void writeData(uint32_t offset, uint8_t size, uint8_t* data);
|
|
||||||
void initExtension1();
|
|
||||||
void initExtension2();
|
|
||||||
|
|
||||||
void readData(uint32_t offset, uint16_t size, bool EEPROM);
|
|
||||||
void readExtensionType();
|
|
||||||
void readCalData();
|
|
||||||
|
|
||||||
void checkMotionPresent(); // Used to see if a Motion Plus is connected to the Wiimote
|
|
||||||
void initMotionPlus();
|
|
||||||
void activateMotionPlus();
|
|
||||||
|
|
||||||
double pitch; // Fusioned angle using a complimentary filter if the Motion Plus is connected
|
|
||||||
double roll; // Fusioned angle using a complimentary filter if the Motion Plus is connected
|
|
||||||
|
|
||||||
bool activateNunchuck;
|
|
||||||
bool motionValuesReset; // This bool is true when the gyro values has been reset
|
|
||||||
unsigned long timer;
|
|
||||||
|
|
||||||
uint8_t wiiState; // Stores the value in l2capinbuf[12] - (0x01: Battery is nearly empty), (0x02: An Extension Controller is connected), (0x04: Speaker enabled), (0x08: IR enabled), (0x10: LED1, 0x20: LED2, 0x40: LED3, 0x80: LED4)
|
|
||||||
uint8_t batteryLevel;
|
|
||||||
|
|
||||||
#ifdef WIICAMERA
|
|
||||||
/* Private function and variables for the readings from teh IR Camera */
|
|
||||||
void enableIRCamera1(); // Sets bit 2 of output report 13
|
|
||||||
void enableIRCamera2(); // Sets bit 2 of output report 1A
|
|
||||||
void writeSensitivityBlock1();
|
|
||||||
void writeSensitivityBlock2();
|
|
||||||
void write0x08Value();
|
|
||||||
void setWiiModeNumber(uint8_t mode_number);
|
|
||||||
|
|
||||||
uint16_t IR_object_x1; // IR x position 10 bits
|
|
||||||
uint16_t IR_object_y1; // IR y position 10 bits
|
|
||||||
uint8_t IR_object_s1; // IR size value
|
|
||||||
uint16_t IR_object_x2;
|
|
||||||
uint16_t IR_object_y2;
|
|
||||||
uint8_t IR_object_s2;
|
|
||||||
uint16_t IR_object_x3; // IR x position 10 bits
|
|
||||||
uint16_t IR_object_y3; // IR y position 10 bits
|
|
||||||
uint8_t IR_object_s3; // IR size value
|
|
||||||
uint16_t IR_object_x4;
|
|
||||||
uint16_t IR_object_y4;
|
|
||||||
uint8_t IR_object_s4;
|
|
||||||
#endif
|
|
||||||
};
|
|
||||||
#endif
|
|
|
@ -1,15 +0,0 @@
|
||||||
Please see <http://wiibrew.org/wiki/Wiimote#IR_Camera> for the complete capabilities of the Wii camera. The IR camera code was written based on the above website and with support from Kristian Lauszus.
|
|
||||||
|
|
||||||
Must omit the "." in the name of the USB_Host_Shiled_2.0 library folder when inserting into the Arudino library folder.
|
|
||||||
|
|
||||||
This library is large, if you run into memory problems when uploading to the arduino, comment out the #define DEBUG in the BTD.cpp and Wii.cpp files.
|
|
||||||
|
|
||||||
To enable the IR camera code, uncomment #define WIICAMERA in Wii.h.
|
|
||||||
|
|
||||||
This library impliments the following settings:
|
|
||||||
|
|
||||||
* Report sensitivity mode: 00 00 00 00 00 00 90 00 41 40 00 Suggested by inio (high sensitivity)
|
|
||||||
* Data Format: Extended mode (0x03). Full mode is not working yet. The output reports 0x3e and 0x3f need tampering with
|
|
||||||
* In this mode the camera outputs x and y corridinates and a size dimension for the 4 brightest points.
|
|
||||||
|
|
||||||
Again, read through <http://wiibrew.org/wiki/Wiimote#IR_Camera> to get an understanding of the camera and its settings.
|
|
508
XBOXRECV.cpp
508
XBOXRECV.cpp
|
@ -1,508 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
|
|
||||||
getBatteryLevel and checkStatus functions made by timstamp.co.uk found using BusHound from Perisoft.net
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "XBOXRECV.h"
|
|
||||||
#define DEBUG // Uncomment to print data for debugging
|
|
||||||
//#define EXTRADEBUG // Uncomment to get even more debugging data
|
|
||||||
//#define PRINTREPORT // Uncomment to print the report send by the Xbox 360 Controller
|
|
||||||
|
|
||||||
XBOXRECV::XBOXRECV(USB *p):
|
|
||||||
pUsb(p), // pointer to USB class instance - mandatory
|
|
||||||
bAddress(0), // device address - mandatory
|
|
||||||
bPollEnable(false) { // don't start polling before dongle is connected
|
|
||||||
for(uint8_t i=0; i<XBOX_MAX_ENDPOINTS; i++) {
|
|
||||||
epInfo[i].epAddr = 0;
|
|
||||||
epInfo[i].maxPktSize = (i) ? 0 : 8;
|
|
||||||
epInfo[i].epAttribs = 0;
|
|
||||||
epInfo[i].bmNakPower = (i) ? USB_NAK_NOWAIT : USB_NAK_MAX_POWER;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (pUsb) // register in USB subsystem
|
|
||||||
pUsb->RegisterDeviceClass(this); //set devConfig[] entry
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t XBOXRECV::Init(uint8_t parent, uint8_t port, bool lowspeed) {
|
|
||||||
uint8_t buf[sizeof(USB_DEVICE_DESCRIPTOR)];
|
|
||||||
uint8_t rcode;
|
|
||||||
UsbDevice *p = NULL;
|
|
||||||
EpInfo *oldep_ptr = NULL;
|
|
||||||
uint16_t PID;
|
|
||||||
uint16_t VID;
|
|
||||||
|
|
||||||
// get memory address of USB device address pool
|
|
||||||
AddressPool &addrPool = pUsb->GetAddressPool();
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR("\r\nXBOXRECV Init"));
|
|
||||||
#endif
|
|
||||||
// check if address has already been assigned to an instance
|
|
||||||
if (bAddress) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nAddress in use"));
|
|
||||||
#endif
|
|
||||||
return USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get pointer to pseudo device with address 0 assigned
|
|
||||||
p = addrPool.GetUsbDevicePtr(0);
|
|
||||||
|
|
||||||
if (!p) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nAddress not found"));
|
|
||||||
#endif
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!p->epinfo) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nepinfo is null"));
|
|
||||||
#endif
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save old pointer to EP_RECORD of address 0
|
|
||||||
oldep_ptr = p->epinfo;
|
|
||||||
|
|
||||||
// Temporary assign new pointer to epInfo to p->epinfo in order to avoid toggle inconsistence
|
|
||||||
p->epinfo = epInfo;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Get device descriptor
|
|
||||||
rcode = pUsb->getDevDescr(0, 0, sizeof(USB_DEVICE_DESCRIPTOR), (uint8_t*)buf);// Get device descriptor - addr, ep, nbytes, data
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
if(rcode)
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
|
|
||||||
VID = ((USB_DEVICE_DESCRIPTOR*)buf)->idVendor;
|
|
||||||
PID = ((USB_DEVICE_DESCRIPTOR*)buf)->idProduct;
|
|
||||||
|
|
||||||
if(VID != XBOX_VID && VID != MADCATZ_VID) // We just check if it's a xbox receiver using the Vendor ID
|
|
||||||
goto FailUnknownDevice;
|
|
||||||
else if(PID != XBOX_WIRELESS_RECEIVER_PID && PID != XBOX_WIRELESS_RECEIVER_THIRD_PARTY_PID) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nYou'll need a wireless receiver for this libary to work"));
|
|
||||||
#endif
|
|
||||||
goto FailUnknownDevice;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Allocate new address according to device class
|
|
||||||
bAddress = addrPool.AllocAddress(parent, false, port);
|
|
||||||
|
|
||||||
if (!bAddress)
|
|
||||||
return USB_ERROR_OUT_OF_ADDRESS_SPACE_IN_POOL;
|
|
||||||
|
|
||||||
// Extract Max Packet Size from device descriptor
|
|
||||||
epInfo[0].maxPktSize = (uint8_t)((USB_DEVICE_DESCRIPTOR*)buf)->bMaxPacketSize0;
|
|
||||||
|
|
||||||
// Assign new address to the device
|
|
||||||
rcode = pUsb->setAddr( 0, 0, bAddress );
|
|
||||||
if (rcode) {
|
|
||||||
p->lowspeed = false;
|
|
||||||
addrPool.FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nsetAddr: "));
|
|
||||||
#endif
|
|
||||||
PrintHex<uint8_t>(rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR("\r\nAddr: "));
|
|
||||||
PrintHex<uint8_t>(bAddress);
|
|
||||||
#endif
|
|
||||||
p->lowspeed = false;
|
|
||||||
|
|
||||||
//get pointer to assigned address record
|
|
||||||
p = addrPool.GetUsbDevicePtr(bAddress);
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer - only EP0 is known
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 1, epInfo);
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
/* The application will work in reduced host mode, so we can save program and data
|
|
||||||
memory space. After verifying the VID we will use known values for the
|
|
||||||
configuration values for device, interface, endpoints and HID for the XBOX360 Wireless receiver */
|
|
||||||
|
|
||||||
/* Initialize data structures for endpoints of device */
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_1 ].epAddr = 0x01; // XBOX 360 report endpoint - poll interval 1ms
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_1 ].epAttribs = EP_INTERRUPT;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_1 ].bmNakPower = USB_NAK_NOWAIT; // Only poll once for interrupt endpoints
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_1 ].maxPktSize = EP_MAXPKTSIZE;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_1 ].bmSndToggle = bmSNDTOG0;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_1 ].bmRcvToggle = bmRCVTOG0;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_1 ].epAddr = 0x01; // XBOX 360 output endpoint - poll interval 8ms
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_1 ].epAttribs = EP_INTERRUPT;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_1 ].bmNakPower = USB_NAK_NOWAIT; // Only poll once for interrupt endpoints
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_1 ].maxPktSize = EP_MAXPKTSIZE;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_1 ].bmSndToggle = bmSNDTOG0;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_1 ].bmRcvToggle = bmRCVTOG0;
|
|
||||||
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_2 ].epAddr = 0x03; // XBOX 360 report endpoint - poll interval 1ms
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_2 ].epAttribs = EP_INTERRUPT;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_2 ].bmNakPower = USB_NAK_NOWAIT; // Only poll once for interrupt endpoints
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_2 ].maxPktSize = EP_MAXPKTSIZE;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_2 ].bmSndToggle = bmSNDTOG0;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_2 ].bmRcvToggle = bmRCVTOG0;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_2 ].epAddr = 0x03; // XBOX 360 output endpoint - poll interval 8ms
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_2 ].epAttribs = EP_INTERRUPT;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_2 ].bmNakPower = USB_NAK_NOWAIT; // Only poll once for interrupt endpoints
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_2 ].maxPktSize = EP_MAXPKTSIZE;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_2 ].bmSndToggle = bmSNDTOG0;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_2 ].bmRcvToggle = bmRCVTOG0;
|
|
||||||
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_3 ].epAddr = 0x05; // XBOX 360 report endpoint - poll interval 1ms
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_3 ].epAttribs = EP_INTERRUPT;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_3 ].bmNakPower = USB_NAK_NOWAIT; // Only poll once for interrupt endpoints
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_3 ].maxPktSize = EP_MAXPKTSIZE;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_3 ].bmSndToggle = bmSNDTOG0;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_3 ].bmRcvToggle = bmRCVTOG0;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_3 ].epAddr = 0x05; // XBOX 360 output endpoint - poll interval 8ms
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_3 ].epAttribs = EP_INTERRUPT;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_3 ].bmNakPower = USB_NAK_NOWAIT; // Only poll once for interrupt endpoints
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_3 ].maxPktSize = EP_MAXPKTSIZE;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_3 ].bmSndToggle = bmSNDTOG0;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_3 ].bmRcvToggle = bmRCVTOG0;
|
|
||||||
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_4 ].epAddr = 0x07; // XBOX 360 report endpoint - poll interval 1ms
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_4 ].epAttribs = EP_INTERRUPT;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_4 ].bmNakPower = USB_NAK_NOWAIT; // Only poll once for interrupt endpoints
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_4 ].maxPktSize = EP_MAXPKTSIZE;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_4 ].bmSndToggle = bmSNDTOG0;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE_4 ].bmRcvToggle = bmRCVTOG0;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_4 ].epAddr = 0x07; // XBOX 360 output endpoint - poll interval 8ms
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_4 ].epAttribs = EP_INTERRUPT;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_4 ].bmNakPower = USB_NAK_NOWAIT; // Only poll once for interrupt endpoints
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_4 ].maxPktSize = EP_MAXPKTSIZE;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_4 ].bmSndToggle = bmSNDTOG0;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE_4 ].bmRcvToggle = bmRCVTOG0;
|
|
||||||
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 9, epInfo);
|
|
||||||
if( rcode )
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
delay(200);//Give time for address change
|
|
||||||
|
|
||||||
rcode = pUsb->setConf(bAddress, epInfo[ XBOX_CONTROL_PIPE ].epAddr, 1);
|
|
||||||
if( rcode )
|
|
||||||
goto FailSetConf;
|
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nXbox Wireless Receiver Connected\r\n"));
|
|
||||||
#endif
|
|
||||||
XboxReceiverConnected = true;
|
|
||||||
bPollEnable = true;
|
|
||||||
return 0; // successful configuration
|
|
||||||
|
|
||||||
/* diagnostic messages */
|
|
||||||
FailGetDevDescr:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\ngetDevDescr:"));
|
|
||||||
#endif
|
|
||||||
goto Fail;
|
|
||||||
FailSetDevTblEntry:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nsetDevTblEn:"));
|
|
||||||
#endif
|
|
||||||
goto Fail;
|
|
||||||
FailSetConf:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nsetConf:"));
|
|
||||||
#endif
|
|
||||||
goto Fail;
|
|
||||||
FailUnknownDevice:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nUnknown Device Connected - VID: "));
|
|
||||||
PrintHex<uint16_t>(VID);
|
|
||||||
Notify(PSTR(" PID: "));
|
|
||||||
PrintHex<uint16_t>(PID);
|
|
||||||
#endif
|
|
||||||
rcode = USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED;
|
|
||||||
goto Fail;
|
|
||||||
Fail:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nXbox 360 Init Failed, error code: "));
|
|
||||||
Serial.print(rcode,HEX);
|
|
||||||
#endif
|
|
||||||
Release();
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Performs a cleanup after failed Init() attempt */
|
|
||||||
uint8_t XBOXRECV::Release() {
|
|
||||||
XboxReceiverConnected = false;
|
|
||||||
for(uint8_t i=0;i<4;i++)
|
|
||||||
Xbox360Connected[i] = 0x00;
|
|
||||||
pUsb->GetAddressPool().FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
bPollEnable = false;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
uint8_t XBOXRECV::Poll() {
|
|
||||||
if (!bPollEnable)
|
|
||||||
return 0;
|
|
||||||
if(!timer || ((millis() - timer) > 3000)) { // Run checkStatus every 3 seconds
|
|
||||||
timer = millis();
|
|
||||||
checkStatus();
|
|
||||||
}
|
|
||||||
uint8_t inputPipe;
|
|
||||||
uint16_t bufferSize;
|
|
||||||
for(uint8_t i=0;i<4;i++) {
|
|
||||||
switch (i) {
|
|
||||||
case 0: inputPipe = XBOX_INPUT_PIPE_1; break;
|
|
||||||
case 1: inputPipe = XBOX_INPUT_PIPE_2; break;
|
|
||||||
case 2: inputPipe = XBOX_INPUT_PIPE_3; break;
|
|
||||||
case 3: inputPipe = XBOX_INPUT_PIPE_4; break;
|
|
||||||
}
|
|
||||||
bufferSize = EP_MAXPKTSIZE; // This is the maximum number of bytes we want to receive
|
|
||||||
pUsb->inTransfer(bAddress, epInfo[ inputPipe ].epAddr, &bufferSize, readBuf);
|
|
||||||
if(bufferSize > 0) { // The number of received bytes
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR("Bytes Received: "));
|
|
||||||
Serial.print(bufferSize);
|
|
||||||
Notify(PSTR("\r\n"));
|
|
||||||
#endif
|
|
||||||
readReport(i);
|
|
||||||
#ifdef PRINTREPORT
|
|
||||||
printReport(i,bufferSize); // Uncomment "#define PRINTREPORT" to print the report send by the Xbox 360 Controller
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void XBOXRECV::readReport(uint8_t controller) {
|
|
||||||
if (readBuf == NULL)
|
|
||||||
return;
|
|
||||||
// This report is send when a controller is connected and disconnected
|
|
||||||
if(readBuf[0] == 0x08 && readBuf[1] != Xbox360Connected[controller]) {
|
|
||||||
Xbox360Connected[controller] = readBuf[1];
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("Controller "));
|
|
||||||
Serial.print(controller);
|
|
||||||
#endif
|
|
||||||
if(Xbox360Connected[controller]) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
char* str = 0;
|
|
||||||
switch(readBuf[1]) {
|
|
||||||
case 0x80: str = PSTR(" as controller\r\n"); break;
|
|
||||||
case 0x40: str = PSTR(" as headset\r\n"); break;
|
|
||||||
case 0xC0: str = PSTR(" as controller+headset\r\n"); break;
|
|
||||||
}
|
|
||||||
Notify(PSTR(": connected"));
|
|
||||||
Notify(str);
|
|
||||||
#endif
|
|
||||||
LED led;
|
|
||||||
switch (controller) {
|
|
||||||
case 0: led = LED1; break;
|
|
||||||
case 1: led = LED2; break;
|
|
||||||
case 2: led = LED3; break;
|
|
||||||
case 3: led = LED4; break;
|
|
||||||
}
|
|
||||||
setLedOn(controller,led);
|
|
||||||
}
|
|
||||||
#ifdef DEBUG
|
|
||||||
else
|
|
||||||
Notify(PSTR(": disconnected\r\n"));
|
|
||||||
#endif
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Controller status report
|
|
||||||
if(readBuf[1] == 0x00 && readBuf[3] & 0x13 && readBuf[4] >= 0x22) {
|
|
||||||
controllerStatus[controller] = ((uint16_t)readBuf[3] << 8) | readBuf[4];
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if(readBuf[1] != 0x01) // Check if it's the correct report - the receiver also sends different status reports
|
|
||||||
return;
|
|
||||||
|
|
||||||
// A controller must be connected if it's sending data
|
|
||||||
if(!Xbox360Connected[controller])
|
|
||||||
Xbox360Connected[controller] |= 0x80;
|
|
||||||
|
|
||||||
ButtonState[controller] = (uint32_t)(readBuf[9] | ((uint16_t)readBuf[8] << 8) | ((uint32_t)readBuf[7] << 16) | ((uint32_t)readBuf[6] << 24));
|
|
||||||
|
|
||||||
hatValue[controller][LeftHatX] = (int16_t)(((uint16_t)readBuf[11] << 8) | readBuf[10]);
|
|
||||||
hatValue[controller][LeftHatY] = (int16_t)(((uint16_t)readBuf[13] << 8) | readBuf[12]);
|
|
||||||
hatValue[controller][RightHatX] = (int16_t)(((uint16_t)readBuf[15] << 8) | readBuf[14]);
|
|
||||||
hatValue[controller][RightHatY] = (int16_t)(((uint16_t)readBuf[17] << 8) | readBuf[16]);
|
|
||||||
|
|
||||||
//Notify(PSTR("\r\nButtonState: "));
|
|
||||||
//PrintHex<uint32_t>(ButtonState[controller]);
|
|
||||||
|
|
||||||
if(ButtonState[controller] != OldButtonState[controller]) {
|
|
||||||
buttonStateChanged[controller] = true;
|
|
||||||
ButtonClickState[controller] = (ButtonState[controller] >> 16) & ((~OldButtonState[controller]) >> 16); // Update click state variable, but don't include the two trigger buttons L2 and R2
|
|
||||||
if(((uint8_t)OldButtonState[controller]) == 0 && ((uint8_t)ButtonState[controller]) != 0) // The L2 and R2 buttons are special as they are analog buttons
|
|
||||||
R2Clicked[controller] = true;
|
|
||||||
if((uint8_t)(OldButtonState[controller] >> 8) == 0 && (uint8_t)(ButtonState[controller] >> 8) != 0)
|
|
||||||
L2Clicked[controller] = true;
|
|
||||||
OldButtonState[controller] = ButtonState[controller];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void XBOXRECV::printReport(uint8_t controller, uint8_t nBytes) { //Uncomment "#define PRINTREPORT" to print the report send by the Xbox 360 Controller
|
|
||||||
#ifdef PRINTREPORT
|
|
||||||
if (readBuf == NULL)
|
|
||||||
return;
|
|
||||||
Notify(PSTR("Controller "));
|
|
||||||
Serial.print(controller);
|
|
||||||
Notify(PSTR(": "));
|
|
||||||
for(uint8_t i = 0; i < nBytes;i++) {
|
|
||||||
PrintHex<uint8_t>(readBuf[i]);
|
|
||||||
Serial.print(" ");
|
|
||||||
}
|
|
||||||
Serial.println();
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
uint8_t XBOXRECV::getButtonPress(uint8_t controller, Button b) {
|
|
||||||
if(b == L2) // These are analog buttons
|
|
||||||
return (uint8_t)(ButtonState[controller] >> 8);
|
|
||||||
else if(b == R2)
|
|
||||||
return (uint8_t)ButtonState[controller];
|
|
||||||
return (ButtonState[controller] & ((uint32_t)b << 16));
|
|
||||||
}
|
|
||||||
bool XBOXRECV::getButtonClick(uint8_t controller, Button b) {
|
|
||||||
if(b == L2) {
|
|
||||||
if(L2Clicked[controller]) {
|
|
||||||
L2Clicked[controller] = false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
else if(b== R2) {
|
|
||||||
if(R2Clicked[controller]) {
|
|
||||||
R2Clicked[controller] = false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
bool click = (ButtonClickState[controller] & (uint16_t)b);
|
|
||||||
ButtonClickState[controller] &= ~((uint16_t)b); // clear "click" event
|
|
||||||
return click;
|
|
||||||
}
|
|
||||||
int16_t XBOXRECV::getAnalogHat(uint8_t controller, AnalogHat a) {
|
|
||||||
return hatValue[controller][a];
|
|
||||||
}
|
|
||||||
bool XBOXRECV::buttonChanged(uint8_t controller) {
|
|
||||||
bool state = buttonStateChanged[controller];
|
|
||||||
buttonStateChanged[controller] = false;
|
|
||||||
return state;
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
ControllerStatus Breakdown
|
|
||||||
ControllerStatus[controller] & 0x0001 // 0
|
|
||||||
ControllerStatus[controller] & 0x0002 // normal batteries, no rechargeable battery pack
|
|
||||||
ControllerStatus[controller] & 0x0004 // controller starting up / settling
|
|
||||||
ControllerStatus[controller] & 0x0008 // headset adapter plugged in, but no headphones connected (mute?)
|
|
||||||
ControllerStatus[controller] & 0x0010 // 0
|
|
||||||
ControllerStatus[controller] & 0x0020 // 1
|
|
||||||
ControllerStatus[controller] & 0x0040 // battery level (high bit)
|
|
||||||
ControllerStatus[controller] & 0x0080 // battery level (low bit)
|
|
||||||
ControllerStatus[controller] & 0x0100 // 1
|
|
||||||
ControllerStatus[controller] & 0x0200 // 1
|
|
||||||
ControllerStatus[controller] & 0x0400 // headset adapter plugged in
|
|
||||||
ControllerStatus[controller] & 0x0800 // 0
|
|
||||||
ControllerStatus[controller] & 0x1000 // 1
|
|
||||||
ControllerStatus[controller] & 0x2000 // 0
|
|
||||||
ControllerStatus[controller] & 0x4000 // 0
|
|
||||||
ControllerStatus[controller] & 0x8000 // 0
|
|
||||||
*/
|
|
||||||
uint8_t XBOXRECV::getBatteryLevel(uint8_t controller) {
|
|
||||||
uint8_t batteryLevel = ((controllerStatus[controller] & 0x00C0) >> 6) * 33;
|
|
||||||
if(batteryLevel == 99)
|
|
||||||
batteryLevel = 100;
|
|
||||||
return batteryLevel;
|
|
||||||
}
|
|
||||||
|
|
||||||
void XBOXRECV::XboxCommand(uint8_t controller, uint8_t* data, uint16_t nbytes) {
|
|
||||||
uint8_t rcode;
|
|
||||||
uint8_t outputPipe;
|
|
||||||
switch (controller) {
|
|
||||||
case 0: outputPipe = XBOX_OUTPUT_PIPE_1; break;
|
|
||||||
case 1: outputPipe = XBOX_OUTPUT_PIPE_2; break;
|
|
||||||
case 2: outputPipe = XBOX_OUTPUT_PIPE_3; break;
|
|
||||||
case 3: outputPipe = XBOX_OUTPUT_PIPE_4; break;
|
|
||||||
}
|
|
||||||
rcode = pUsb->outTransfer(bAddress, epInfo[ outputPipe ].epAddr, nbytes, data);
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
if(rcode)
|
|
||||||
Notify(PSTR("Error sending Xbox message\r\n"));
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
void XBOXRECV::setLedRaw(uint8_t controller, uint8_t value) {
|
|
||||||
writeBuf[0] = 0x00;
|
|
||||||
writeBuf[1] = 0x00;
|
|
||||||
writeBuf[2] = 0x08;
|
|
||||||
writeBuf[3] = value | 0x40;
|
|
||||||
|
|
||||||
XboxCommand(controller, writeBuf, 4);
|
|
||||||
}
|
|
||||||
void XBOXRECV::setLedOn(uint8_t controller, LED led) {
|
|
||||||
if(led != ALL) // All LEDs can't be on a the same time
|
|
||||||
setLedRaw(controller,((uint8_t)led)+4);
|
|
||||||
}
|
|
||||||
void XBOXRECV::setLedBlink(uint8_t controller, LED led) {
|
|
||||||
setLedRaw(controller,(uint8_t)led);
|
|
||||||
}
|
|
||||||
void XBOXRECV::setLedMode(uint8_t controller, LEDMode ledMode) { // This function is used to do some speciel LED stuff the controller supports
|
|
||||||
setLedRaw(controller,(uint8_t)ledMode);
|
|
||||||
}
|
|
||||||
/* PC runs this at interval of approx 2 seconds
|
|
||||||
Thanks to BusHound from Perisoft.net for the Windows USB Analysis output
|
|
||||||
Found by timstamp.co.uk
|
|
||||||
*/
|
|
||||||
void XBOXRECV::checkStatus() {
|
|
||||||
if(!bPollEnable)
|
|
||||||
return;
|
|
||||||
// Get controller info
|
|
||||||
writeBuf[0] = 0x08;
|
|
||||||
writeBuf[1] = 0x00;
|
|
||||||
writeBuf[2] = 0x0f;
|
|
||||||
writeBuf[3] = 0xc0;
|
|
||||||
for(uint8_t i=0; i<4; i++) {
|
|
||||||
XboxCommand(i, writeBuf, 4);
|
|
||||||
}
|
|
||||||
// Get battery status
|
|
||||||
writeBuf[0] = 0x00;
|
|
||||||
writeBuf[1] = 0x00;
|
|
||||||
writeBuf[2] = 0x00;
|
|
||||||
writeBuf[3] = 0x40;
|
|
||||||
for(uint8_t i=0; i<4; i++) {
|
|
||||||
if(Xbox360Connected[i])
|
|
||||||
XboxCommand(i, writeBuf, 4);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void XBOXRECV::setRumbleOn(uint8_t controller, uint8_t lValue, uint8_t rValue) {
|
|
||||||
writeBuf[0] = 0x00;
|
|
||||||
writeBuf[1] = 0x01;
|
|
||||||
writeBuf[2] = 0x0f;
|
|
||||||
writeBuf[3] = 0xc0;
|
|
||||||
writeBuf[4] = 0x00;
|
|
||||||
writeBuf[5] = lValue; // big weight
|
|
||||||
writeBuf[6] = rValue; // small weight
|
|
||||||
|
|
||||||
XboxCommand(controller, writeBuf, 7);
|
|
||||||
}
|
|
172
XBOXRECV.h
172
XBOXRECV.h
|
@ -1,172 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
|
|
||||||
getBatteryLevel and checkStatus functions made by timstamp.co.uk found using BusHound from Perisoft.net
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _xboxrecv_h_
|
|
||||||
#define _xboxrecv_h_
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >= 100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include "WProgram.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
/* Data Xbox 360 taken from descriptors */
|
|
||||||
#define EP_MAXPKTSIZE 32 // max size for data via USB
|
|
||||||
|
|
||||||
/* Endpoint types */
|
|
||||||
#define EP_INTERRUPT 0x03
|
|
||||||
|
|
||||||
/* Names we give to the 9 Xbox360 pipes */
|
|
||||||
#define XBOX_CONTROL_PIPE 0
|
|
||||||
#define XBOX_INPUT_PIPE_1 1
|
|
||||||
#define XBOX_OUTPUT_PIPE_1 2
|
|
||||||
#define XBOX_INPUT_PIPE_2 3
|
|
||||||
#define XBOX_OUTPUT_PIPE_2 4
|
|
||||||
#define XBOX_INPUT_PIPE_3 5
|
|
||||||
#define XBOX_OUTPUT_PIPE_3 6
|
|
||||||
#define XBOX_INPUT_PIPE_4 7
|
|
||||||
#define XBOX_OUTPUT_PIPE_4 8
|
|
||||||
|
|
||||||
// PID and VID of the different devices
|
|
||||||
#define XBOX_VID 0x045E // Microsoft Corporation
|
|
||||||
#define XBOX_WIRELESS_RECEIVER_PID 0x0719 // Microsoft Wireless Gaming Receiver
|
|
||||||
#define XBOX_WIRELESS_RECEIVER_THIRD_PARTY_PID 0x0291 // Third party Wireless Gaming Receiver
|
|
||||||
|
|
||||||
#define MADCATZ_VID 0x1BAD // For unofficial Mad Catz controllers
|
|
||||||
|
|
||||||
#define XBOX_MAX_ENDPOINTS 9
|
|
||||||
|
|
||||||
enum LED {
|
|
||||||
ALL = 0x01, // Used to blink all LEDs
|
|
||||||
LED1 = 0x02,
|
|
||||||
LED2 = 0x03,
|
|
||||||
LED3 = 0x04,
|
|
||||||
LED4 = 0x05,
|
|
||||||
};
|
|
||||||
enum LEDMode {
|
|
||||||
ROTATING = 0x0A,
|
|
||||||
FASTBLINK = 0x0B,
|
|
||||||
SLOWBLINK = 0x0C,
|
|
||||||
ALTERNATING = 0x0D,
|
|
||||||
};
|
|
||||||
|
|
||||||
enum Button {
|
|
||||||
L1 = 0x0001,
|
|
||||||
R1 = 0x0002,
|
|
||||||
XBOX = 0x0004,
|
|
||||||
SYNC = 0x0008,
|
|
||||||
|
|
||||||
A = 0x0010,
|
|
||||||
B = 0x0020,
|
|
||||||
X = 0x0040,
|
|
||||||
Y = 0x0080,
|
|
||||||
|
|
||||||
UP = 0x0100,
|
|
||||||
DOWN = 0x0200,
|
|
||||||
LEFT = 0x0400,
|
|
||||||
RIGHT = 0x0800,
|
|
||||||
|
|
||||||
START = 0x1000,
|
|
||||||
BACK = 0x2000,
|
|
||||||
L3 = 0x4000,
|
|
||||||
R3 = 0x8000,
|
|
||||||
|
|
||||||
// These buttons are analog buttons
|
|
||||||
L2,
|
|
||||||
R2,
|
|
||||||
};
|
|
||||||
enum AnalogHat {
|
|
||||||
LeftHatX = 0,
|
|
||||||
LeftHatY = 1,
|
|
||||||
RightHatX = 2,
|
|
||||||
RightHatY = 3,
|
|
||||||
};
|
|
||||||
|
|
||||||
class XBOXRECV : public USBDeviceConfig {
|
|
||||||
public:
|
|
||||||
XBOXRECV(USB *pUsb);
|
|
||||||
|
|
||||||
// USBDeviceConfig implementation
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
virtual uint8_t Release();
|
|
||||||
virtual uint8_t Poll();
|
|
||||||
virtual uint8_t GetAddress() { return bAddress; };
|
|
||||||
virtual bool isReady() { return bPollEnable; };
|
|
||||||
|
|
||||||
/*
|
|
||||||
Xbox Controller Readings.
|
|
||||||
getButtonPress will return true as long as the button is held down
|
|
||||||
While getButtonClick will only return it once
|
|
||||||
So for instance if you need to increase a variable once you would use getButtonClick,
|
|
||||||
but if you need to drive a robot forward you would use getButtonPress
|
|
||||||
*/
|
|
||||||
uint8_t getButtonPress(uint8_t controller, Button b);
|
|
||||||
bool getButtonClick(uint8_t controller, Button b);
|
|
||||||
int16_t getAnalogHat(uint8_t controller, AnalogHat a);
|
|
||||||
|
|
||||||
/* Xbox Controller Command */
|
|
||||||
void setAllOff(uint8_t controller) { setRumbleOn(controller,0,0); setLedOff(controller); };
|
|
||||||
void setRumbleOff(uint8_t controller) { setRumbleOn(controller,0,0); };
|
|
||||||
void setRumbleOn(uint8_t controller, uint8_t lValue, uint8_t rValue);
|
|
||||||
void setLedRaw(uint8_t controller, uint8_t value);
|
|
||||||
void setLedOff(uint8_t controller) { setLedRaw(controller,0); };
|
|
||||||
void setLedOn(uint8_t controller, LED l);
|
|
||||||
void setLedBlink(uint8_t controller, LED l);
|
|
||||||
void setLedMode(uint8_t controller, LEDMode lm);
|
|
||||||
uint8_t getBatteryLevel(uint8_t controller); // Returns the battery level in percentage in 33% steps
|
|
||||||
bool buttonChanged(uint8_t controller);
|
|
||||||
|
|
||||||
bool XboxReceiverConnected; // True if a wireless receiver is connected
|
|
||||||
uint8_t Xbox360Connected[4]; // Variable used to indicate if the XBOX 360 controller is successfully connected
|
|
||||||
|
|
||||||
protected:
|
|
||||||
/* Mandatory members */
|
|
||||||
USB *pUsb;
|
|
||||||
uint8_t bAddress; // device address
|
|
||||||
EpInfo epInfo[XBOX_MAX_ENDPOINTS]; //endpoint info structure
|
|
||||||
|
|
||||||
private:
|
|
||||||
bool bPollEnable;
|
|
||||||
|
|
||||||
/* Variables to store the buttons */
|
|
||||||
uint32_t ButtonState[4];
|
|
||||||
uint32_t OldButtonState[4];
|
|
||||||
uint16_t ButtonClickState[4];
|
|
||||||
int16_t hatValue[4][4];
|
|
||||||
uint16_t controllerStatus[4];
|
|
||||||
bool buttonStateChanged[4]; // True if a button has changed
|
|
||||||
|
|
||||||
bool L2Clicked[4]; // These buttons are analog, so we use we use these bools to check if they where clicked or not
|
|
||||||
bool R2Clicked[4];
|
|
||||||
|
|
||||||
unsigned long timer; // Timing for checkStatus() signals
|
|
||||||
|
|
||||||
uint8_t readBuf[EP_MAXPKTSIZE]; // General purpose buffer for input data
|
|
||||||
uint8_t writeBuf[EP_MAXPKTSIZE]; // General purpose buffer for output data
|
|
||||||
|
|
||||||
void readReport(uint8_t controller); // read incoming data
|
|
||||||
void printReport(uint8_t controller, uint8_t nBytes); // print incoming date - Uncomment for debugging
|
|
||||||
|
|
||||||
/* Private commands */
|
|
||||||
void XboxCommand(uint8_t controller, uint8_t* data, uint16_t nbytes);
|
|
||||||
void checkStatus();
|
|
||||||
};
|
|
||||||
#endif
|
|
349
XBOXUSB.cpp
349
XBOXUSB.cpp
|
@ -1,349 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "XBOXUSB.h"
|
|
||||||
#define DEBUG // Uncomment to print data for debugging
|
|
||||||
//#define EXTRADEBUG // Uncomment to get even more debugging data
|
|
||||||
//#define PRINTREPORT // Uncomment to print the report send by the Xbox 360 Controller
|
|
||||||
|
|
||||||
XBOXUSB::XBOXUSB(USB *p):
|
|
||||||
pUsb(p), // pointer to USB class instance - mandatory
|
|
||||||
bAddress(0), // device address - mandatory
|
|
||||||
bPollEnable(false) { // don't start polling before dongle is connected
|
|
||||||
for(uint8_t i=0; i<XBOX_MAX_ENDPOINTS; i++) {
|
|
||||||
epInfo[i].epAddr = 0;
|
|
||||||
epInfo[i].maxPktSize = (i) ? 0 : 8;
|
|
||||||
epInfo[i].epAttribs = 0;
|
|
||||||
epInfo[i].bmNakPower = (i) ? USB_NAK_NOWAIT : USB_NAK_MAX_POWER;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (pUsb) // register in USB subsystem
|
|
||||||
pUsb->RegisterDeviceClass(this); //set devConfig[] entry
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t XBOXUSB::Init(uint8_t parent, uint8_t port, bool lowspeed) {
|
|
||||||
uint8_t buf[sizeof(USB_DEVICE_DESCRIPTOR)];
|
|
||||||
uint8_t rcode;
|
|
||||||
UsbDevice *p = NULL;
|
|
||||||
EpInfo *oldep_ptr = NULL;
|
|
||||||
uint16_t PID;
|
|
||||||
uint16_t VID;
|
|
||||||
|
|
||||||
// get memory address of USB device address pool
|
|
||||||
AddressPool &addrPool = pUsb->GetAddressPool();
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR("\r\nXBOXUSB Init"));
|
|
||||||
#endif
|
|
||||||
// check if address has already been assigned to an instance
|
|
||||||
if (bAddress) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nAddress in use"));
|
|
||||||
#endif
|
|
||||||
return USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get pointer to pseudo device with address 0 assigned
|
|
||||||
p = addrPool.GetUsbDevicePtr(0);
|
|
||||||
|
|
||||||
if (!p) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nAddress not found"));
|
|
||||||
#endif
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!p->epinfo) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nepinfo is null"));
|
|
||||||
#endif
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save old pointer to EP_RECORD of address 0
|
|
||||||
oldep_ptr = p->epinfo;
|
|
||||||
|
|
||||||
// Temporary assign new pointer to epInfo to p->epinfo in order to avoid toggle inconsistence
|
|
||||||
p->epinfo = epInfo;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Get device descriptor
|
|
||||||
rcode = pUsb->getDevDescr(0, 0, sizeof(USB_DEVICE_DESCRIPTOR), (uint8_t*)buf);// Get device descriptor - addr, ep, nbytes, data
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
if(rcode)
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
|
|
||||||
VID = ((USB_DEVICE_DESCRIPTOR*)buf)->idVendor;
|
|
||||||
PID = ((USB_DEVICE_DESCRIPTOR*)buf)->idProduct;
|
|
||||||
|
|
||||||
if(VID != XBOX_VID && VID != MADCATZ_VID) // We just check if it's a xbox controller using the Vendor ID
|
|
||||||
goto FailUnknownDevice;
|
|
||||||
if(PID == XBOX_WIRELESS_PID) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nYou have plugged in a wireless Xbox 360 controller - it doesn't support USB communication"));
|
|
||||||
#endif
|
|
||||||
goto FailUnknownDevice;
|
|
||||||
}
|
|
||||||
else if(PID == XBOX_WIRELESS_RECEIVER_PID || PID == XBOX_WIRELESS_RECEIVER_THIRD_PARTY_PID) {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nThis library only supports Xbox 360 controllers via USB"));
|
|
||||||
#endif
|
|
||||||
goto FailUnknownDevice;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Allocate new address according to device class
|
|
||||||
bAddress = addrPool.AllocAddress(parent, false, port);
|
|
||||||
|
|
||||||
if (!bAddress)
|
|
||||||
return USB_ERROR_OUT_OF_ADDRESS_SPACE_IN_POOL;
|
|
||||||
|
|
||||||
// Extract Max Packet Size from device descriptor
|
|
||||||
epInfo[0].maxPktSize = (uint8_t)((USB_DEVICE_DESCRIPTOR*)buf)->bMaxPacketSize0;
|
|
||||||
|
|
||||||
// Assign new address to the device
|
|
||||||
rcode = pUsb->setAddr( 0, 0, bAddress );
|
|
||||||
if (rcode) {
|
|
||||||
p->lowspeed = false;
|
|
||||||
addrPool.FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nsetAddr: "));
|
|
||||||
#endif
|
|
||||||
PrintHex<uint8_t>(rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
#ifdef EXTRADEBUG
|
|
||||||
Notify(PSTR("\r\nAddr: "));
|
|
||||||
PrintHex<uint8_t>(bAddress);
|
|
||||||
#endif
|
|
||||||
p->lowspeed = false;
|
|
||||||
|
|
||||||
//get pointer to assigned address record
|
|
||||||
p = addrPool.GetUsbDevicePtr(bAddress);
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer - only EP0 is known
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 1, epInfo);
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
/* The application will work in reduced host mode, so we can save program and data
|
|
||||||
memory space. After verifying the VID we will use known values for the
|
|
||||||
configuration values for device, interface, endpoints and HID for the XBOX360 Controllers */
|
|
||||||
|
|
||||||
/* Initialize data structures for endpoints of device */
|
|
||||||
epInfo[ XBOX_INPUT_PIPE ].epAddr = 0x01; // XBOX 360 report endpoint
|
|
||||||
epInfo[ XBOX_INPUT_PIPE ].epAttribs = EP_INTERRUPT;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE ].bmNakPower = USB_NAK_NOWAIT; // Only poll once for interrupt endpoints
|
|
||||||
epInfo[ XBOX_INPUT_PIPE ].maxPktSize = EP_MAXPKTSIZE;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE ].bmSndToggle = bmSNDTOG0;
|
|
||||||
epInfo[ XBOX_INPUT_PIPE ].bmRcvToggle = bmRCVTOG0;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE ].epAddr = 0x02; // XBOX 360 output endpoint
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE ].epAttribs = EP_INTERRUPT;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE ].bmNakPower = USB_NAK_NOWAIT; // Only poll once for interrupt endpoints
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE ].maxPktSize = EP_MAXPKTSIZE;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE ].bmSndToggle = bmSNDTOG0;
|
|
||||||
epInfo[ XBOX_OUTPUT_PIPE ].bmRcvToggle = bmRCVTOG0;
|
|
||||||
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 3, epInfo);
|
|
||||||
if( rcode )
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
delay(200);//Give time for address change
|
|
||||||
|
|
||||||
rcode = pUsb->setConf(bAddress, epInfo[ XBOX_CONTROL_PIPE ].epAddr, 1);
|
|
||||||
if( rcode )
|
|
||||||
goto FailSetConf;
|
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nXbox 360 Controller Connected"));
|
|
||||||
#endif
|
|
||||||
setLedMode(ROTATING);
|
|
||||||
Xbox360Connected = true;
|
|
||||||
|
|
||||||
bPollEnable = true;
|
|
||||||
Notify(PSTR("\r\n"));
|
|
||||||
return 0; // successful configuration
|
|
||||||
|
|
||||||
/* diagnostic messages */
|
|
||||||
FailGetDevDescr:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\ngetDevDescr:"));
|
|
||||||
#endif
|
|
||||||
goto Fail;
|
|
||||||
FailSetDevTblEntry:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nsetDevTblEn:"));
|
|
||||||
#endif
|
|
||||||
goto Fail;
|
|
||||||
FailSetConf:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nsetConf:"));
|
|
||||||
#endif
|
|
||||||
goto Fail;
|
|
||||||
FailUnknownDevice:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nUnknown Device Connected - VID: "));
|
|
||||||
PrintHex<uint16_t>(VID);
|
|
||||||
Notify(PSTR(" PID: "));
|
|
||||||
PrintHex<uint16_t>(PID);
|
|
||||||
#endif
|
|
||||||
rcode = USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED;
|
|
||||||
goto Fail;
|
|
||||||
Fail:
|
|
||||||
#ifdef DEBUG
|
|
||||||
Notify(PSTR("\r\nXbox 360 Init Failed, error code: "));
|
|
||||||
Serial.print(rcode,HEX);
|
|
||||||
#endif
|
|
||||||
Release();
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Performs a cleanup after failed Init() attempt */
|
|
||||||
uint8_t XBOXUSB::Release() {
|
|
||||||
Xbox360Connected = false;
|
|
||||||
pUsb->GetAddressPool().FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
bPollEnable = false;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
uint8_t XBOXUSB::Poll() {
|
|
||||||
if (!bPollEnable)
|
|
||||||
return 0;
|
|
||||||
uint16_t BUFFER_SIZE = EP_MAXPKTSIZE;
|
|
||||||
pUsb->inTransfer(bAddress, epInfo[ XBOX_INPUT_PIPE ].epAddr, &BUFFER_SIZE, readBuf); // input on endpoint 1
|
|
||||||
readReport();
|
|
||||||
#ifdef PRINTREPORT
|
|
||||||
printReport(); // Uncomment "#define PRINTREPORT" to print the report send by the Xbox 360 Controller
|
|
||||||
#endif
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void XBOXUSB::readReport() {
|
|
||||||
if (readBuf == NULL)
|
|
||||||
return;
|
|
||||||
if(readBuf[0] != 0x00 || readBuf[1] != 0x14) { // Check if it's the correct report - the controller also sends different status reports
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ButtonState = (uint32_t)(readBuf[2] | ((uint16_t)readBuf[3] << 8) | ((uint32_t)readBuf[4] << 16) | ((uint32_t)readBuf[5] << 24));
|
|
||||||
|
|
||||||
//Notify(PSTR("\r\nButtonState");
|
|
||||||
//PrintHex<uint32_t>(ButtonState);
|
|
||||||
|
|
||||||
if(ButtonState != OldButtonState) {
|
|
||||||
buttonChanged = true;
|
|
||||||
if(ButtonState != 0x00) {
|
|
||||||
buttonPressed = true;
|
|
||||||
buttonReleased = false;
|
|
||||||
} else {
|
|
||||||
buttonPressed = false;
|
|
||||||
buttonReleased = true;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
buttonChanged = false;
|
|
||||||
buttonPressed = false;
|
|
||||||
buttonReleased = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
OldButtonState = ButtonState;
|
|
||||||
}
|
|
||||||
|
|
||||||
void XBOXUSB::printReport() { //Uncomment "#define PRINTREPORT" to print the report send by the Xbox 360 Controller
|
|
||||||
#ifdef PRINTREPORT
|
|
||||||
if (readBuf == NULL)
|
|
||||||
return;
|
|
||||||
for(uint8_t i = 0; i < XBOX_REPORT_BUFFER_SIZE;i++) {
|
|
||||||
PrintHex<uint8_t>(readBuf[i]);
|
|
||||||
Serial.print(" ");
|
|
||||||
}
|
|
||||||
Serial.println("");
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t XBOXUSB::getButton(Button b) {
|
|
||||||
if (readBuf == NULL)
|
|
||||||
return false;
|
|
||||||
if(b == L2 || b == R2) { // These are analog buttons
|
|
||||||
return (uint8_t)(readBuf[(uint8_t)b]);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if ((readBuf[(uint16_t)b >> 8] & ((uint8_t)b & 0xff)) > 0)
|
|
||||||
return 1;
|
|
||||||
else
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
int16_t XBOXUSB::getAnalogHat(AnalogHat a) {
|
|
||||||
if (readBuf == NULL)
|
|
||||||
return 0;
|
|
||||||
return (int16_t)(readBuf[(uint8_t)a+1] << 8 | readBuf[(uint8_t)a]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Playstation Sixaxis Dualshock and Navigation Controller commands */
|
|
||||||
void XBOXUSB::XboxCommand(uint8_t* data, uint16_t nbytes) {
|
|
||||||
//bmRequest = Host to device (0x00) | Class (0x20) | Interface (0x01) = 0x21, bRequest = Set Report (0x09), Report ID (0x00), Report Type (Output 0x02), interface (0x00), datalength, datalength, data)
|
|
||||||
pUsb->ctrlReq(bAddress,epInfo[XBOX_CONTROL_PIPE].epAddr, bmREQ_HID_OUT, HID_REQUEST_SET_REPORT, 0x00, 0x02, 0x00, nbytes, nbytes, data, NULL);
|
|
||||||
}
|
|
||||||
void XBOXUSB::setLedOn(LED l) {
|
|
||||||
if(l == ALL) // All LEDs can't be on a the same time
|
|
||||||
return;
|
|
||||||
writeBuf[0] = 0x01;
|
|
||||||
writeBuf[1] = 0x03;
|
|
||||||
writeBuf[2] = (uint8_t)l;
|
|
||||||
writeBuf[2] += 4;
|
|
||||||
|
|
||||||
XboxCommand(writeBuf, 3);
|
|
||||||
}
|
|
||||||
void XBOXUSB::setLedOff() {
|
|
||||||
writeBuf[0] = 0x01;
|
|
||||||
writeBuf[1] = 0x03;
|
|
||||||
writeBuf[2] = 0x00;
|
|
||||||
|
|
||||||
XboxCommand(writeBuf, 3);
|
|
||||||
}
|
|
||||||
void XBOXUSB::setLedBlink(LED l) {
|
|
||||||
writeBuf[0] = 0x01;
|
|
||||||
writeBuf[1] = 0x03;
|
|
||||||
writeBuf[2] = (uint8_t)l;
|
|
||||||
|
|
||||||
XboxCommand(writeBuf, 3);
|
|
||||||
}
|
|
||||||
void XBOXUSB::setLedMode(LEDMode lm) { // This function is used to do some speciel LED stuff the controller supports
|
|
||||||
writeBuf[0] = 0x01;
|
|
||||||
writeBuf[1] = 0x03;
|
|
||||||
writeBuf[2] = (uint8_t)lm;
|
|
||||||
|
|
||||||
XboxCommand(writeBuf, 3);
|
|
||||||
}
|
|
||||||
void XBOXUSB::setRumbleOn(uint8_t lValue, uint8_t rValue) {
|
|
||||||
writeBuf[0] = 0x00;
|
|
||||||
writeBuf[1] = 0x08;
|
|
||||||
writeBuf[2] = 0x00;
|
|
||||||
writeBuf[3] = lValue; // big weight
|
|
||||||
writeBuf[4] = rValue; // small weight
|
|
||||||
writeBuf[5] = 0x00;
|
|
||||||
writeBuf[6] = 0x00;
|
|
||||||
writeBuf[7] = 0x00;
|
|
||||||
|
|
||||||
XboxCommand(writeBuf, 8);
|
|
||||||
}
|
|
152
XBOXUSB.h
152
XBOXUSB.h
|
@ -1,152 +0,0 @@
|
||||||
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Kristian Lauszus, TKJ Electronics
|
|
||||||
Web : http://www.tkjelectronics.com
|
|
||||||
e-mail : kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _xboxusb_h_
|
|
||||||
#define _xboxusb_h_
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >= 100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include "WProgram.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
/* Data Xbox 360 taken from descriptors */
|
|
||||||
#define EP_MAXPKTSIZE 32 // max size for data via USB
|
|
||||||
|
|
||||||
/* Endpoint types */
|
|
||||||
#define EP_INTERRUPT 0x03
|
|
||||||
|
|
||||||
/* Names we give to the 3 Xbox360 pipes */
|
|
||||||
#define XBOX_CONTROL_PIPE 0
|
|
||||||
#define XBOX_INPUT_PIPE 1
|
|
||||||
#define XBOX_OUTPUT_PIPE 2
|
|
||||||
|
|
||||||
// PID and VID of the different devices
|
|
||||||
#define XBOX_VID 0x045E // Microsoft Corporation
|
|
||||||
#define XBOX_WIRELESS_PID 0x028F // Wireless controller only support charging
|
|
||||||
#define XBOX_WIRELESS_RECEIVER_PID 0x0719 // Microsoft Wireless Gaming Receiver
|
|
||||||
#define XBOX_WIRELESS_RECEIVER_THIRD_PARTY_PID 0x0291 // Third party Wireless Gaming Receiver
|
|
||||||
|
|
||||||
#define MADCATZ_VID 0x1BAD // For unofficial Mad Catz controllers
|
|
||||||
|
|
||||||
#define XBOX_REPORT_BUFFER_SIZE 14 // Size of the input report buffer
|
|
||||||
|
|
||||||
// Used in control endpoint header for HID Commands
|
|
||||||
#define bmREQ_HID_OUT USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
|
|
||||||
#define HID_REQUEST_SET_REPORT 0x09
|
|
||||||
|
|
||||||
#define XBOX_MAX_ENDPOINTS 3
|
|
||||||
|
|
||||||
enum LED {
|
|
||||||
ALL = 0x01, // Used to blink all LEDs
|
|
||||||
LED1 = 0x02,
|
|
||||||
LED2 = 0x03,
|
|
||||||
LED3 = 0x04,
|
|
||||||
LED4 = 0x05,
|
|
||||||
};
|
|
||||||
enum LEDMode {
|
|
||||||
ROTATING = 0x0A,
|
|
||||||
FASTBLINK = 0x0B,
|
|
||||||
SLOWBLINK = 0x0C,
|
|
||||||
ALTERNATING = 0x0D,
|
|
||||||
};
|
|
||||||
|
|
||||||
enum Button {
|
|
||||||
// byte location | bit location
|
|
||||||
UP = (2 << 8) | 0x01,
|
|
||||||
DOWN = (2 << 8) | 0x02,
|
|
||||||
LEFT = (2 << 8) | 0x04,
|
|
||||||
RIGHT = (2 << 8) | 0x08,
|
|
||||||
|
|
||||||
START = (2 << 8) | 0x10,
|
|
||||||
BACK = (2 << 8) | 0x20,
|
|
||||||
L3 = (2 << 8) | 0x40,
|
|
||||||
R3 = (2 << 8) | 0x80,
|
|
||||||
|
|
||||||
L1 = (3 << 8) | 0x01,
|
|
||||||
R1 = (3 << 8) | 0x02,
|
|
||||||
XBOX = (3 << 8) | 0x04,
|
|
||||||
|
|
||||||
A = (3 << 8) | 0x10,
|
|
||||||
B = (3 << 8) | 0x20,
|
|
||||||
X = (3 << 8) | 0x40,
|
|
||||||
Y = (3 << 8) | 0x80,
|
|
||||||
|
|
||||||
// These buttons are analog
|
|
||||||
L2 = 4,
|
|
||||||
R2 = 5,
|
|
||||||
};
|
|
||||||
enum AnalogHat {
|
|
||||||
LeftHatX = 6,
|
|
||||||
LeftHatY = 8,
|
|
||||||
RightHatX = 10,
|
|
||||||
RightHatY = 12,
|
|
||||||
};
|
|
||||||
|
|
||||||
class XBOXUSB : public USBDeviceConfig {
|
|
||||||
public:
|
|
||||||
XBOXUSB(USB *pUsb);
|
|
||||||
|
|
||||||
// USBDeviceConfig implementation
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
virtual uint8_t Release();
|
|
||||||
virtual uint8_t Poll();
|
|
||||||
virtual uint8_t GetAddress() { return bAddress; };
|
|
||||||
virtual bool isReady() { return bPollEnable; };
|
|
||||||
|
|
||||||
/* XBOX Controller Readings */
|
|
||||||
uint8_t getButton(Button b);
|
|
||||||
int16_t getAnalogHat(AnalogHat a);
|
|
||||||
|
|
||||||
/* Commands for Dualshock 3 and Navigation controller */
|
|
||||||
void setAllOff() { setRumbleOn(0,0); setLedOff(); };
|
|
||||||
void setRumbleOff() { setRumbleOn(0,0); };
|
|
||||||
void setRumbleOn(uint8_t lValue, uint8_t rValue);
|
|
||||||
void setLedOff();
|
|
||||||
void setLedOn(LED l);
|
|
||||||
void setLedBlink(LED l);
|
|
||||||
void setLedMode(LEDMode lm);
|
|
||||||
|
|
||||||
bool Xbox360Connected;// Variable used to indicate if the XBOX 360 controller is successfully connected
|
|
||||||
bool buttonChanged;//Indicate if a button has been changed
|
|
||||||
bool buttonPressed;//Indicate if a button has been pressed
|
|
||||||
bool buttonReleased;//Indicate if a button has been released
|
|
||||||
|
|
||||||
protected:
|
|
||||||
/* mandatory members */
|
|
||||||
USB *pUsb;
|
|
||||||
uint8_t bAddress; // device address
|
|
||||||
EpInfo epInfo[XBOX_MAX_ENDPOINTS]; //endpoint info structure
|
|
||||||
|
|
||||||
private:
|
|
||||||
bool bPollEnable;
|
|
||||||
|
|
||||||
uint32_t ButtonState;
|
|
||||||
uint32_t OldButtonState;
|
|
||||||
|
|
||||||
uint8_t readBuf[EP_MAXPKTSIZE]; // General purpose buffer for input data
|
|
||||||
uint8_t writeBuf[EP_MAXPKTSIZE]; // General purpose buffer for output data
|
|
||||||
|
|
||||||
void readReport(); // read incoming data
|
|
||||||
void printReport(); // print incoming date - Uncomment for debugging
|
|
||||||
|
|
||||||
/* Private commands */
|
|
||||||
void XboxCommand(uint8_t* data, uint16_t nbytes);
|
|
||||||
};
|
|
||||||
#endif
|
|
288
address.h
288
address.h
|
@ -1,288 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__ADDRESS_H__)
|
|
||||||
#define __ADDRESS_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <stddef.h>
|
|
||||||
#include "max3421e.h"
|
|
||||||
|
|
||||||
|
|
||||||
/* NAK powers. To save space in endpoint data structure, amount of retries before giving up and returning 0x4 is stored in */
|
|
||||||
/* bmNakPower as a power of 2. The actual nak_limit is then calculated as nak_limit = ( 2^bmNakPower - 1) */
|
|
||||||
#define USB_NAK_MAX_POWER 16 //NAK binary order maximum value
|
|
||||||
#define USB_NAK_DEFAULT 14 //default 16K-1 NAKs before giving up
|
|
||||||
#define USB_NAK_NOWAIT 1 //Single NAK stops transfer
|
|
||||||
#define USB_NAK_NONAK 0 //Do not count NAKs, stop retrying after USB Timeout
|
|
||||||
|
|
||||||
struct EpInfo
|
|
||||||
{
|
|
||||||
uint8_t epAddr; // Endpoint address
|
|
||||||
uint8_t maxPktSize; // Maximum packet size
|
|
||||||
|
|
||||||
union
|
|
||||||
{
|
|
||||||
uint8_t epAttribs;
|
|
||||||
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
uint8_t bmSndToggle : 1; // Send toggle, when zero bmSNDTOG0, bmSNDTOG1 otherwise
|
|
||||||
uint8_t bmRcvToggle : 1; // Send toggle, when zero bmRCVTOG0, bmRCVTOG1 otherwise
|
|
||||||
uint8_t bmNakPower : 6; // Binary order for NAK_LIMIT value
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
// 7 6 5 4 3 2 1 0
|
|
||||||
// ---------------------------------
|
|
||||||
// | | H | P | P | P | A | A | A |
|
|
||||||
// ---------------------------------
|
|
||||||
//
|
|
||||||
// H - if 1 the address is a hub address
|
|
||||||
// P - parent hub address
|
|
||||||
// A - device address / port number in case of hub
|
|
||||||
//
|
|
||||||
struct UsbDeviceAddress
|
|
||||||
{
|
|
||||||
union
|
|
||||||
{
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
uint8_t bmAddress : 3; // device address/port number
|
|
||||||
uint8_t bmParent : 3; // parent hub address
|
|
||||||
uint8_t bmHub : 1; // hub flag
|
|
||||||
uint8_t bmReserved : 1; // reserved, must be zerro
|
|
||||||
};
|
|
||||||
uint8_t devAddress;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
#define bmUSB_DEV_ADDR_ADDRESS 0x07
|
|
||||||
#define bmUSB_DEV_ADDR_PARENT 0x38
|
|
||||||
#define bmUSB_DEV_ADDR_HUB 0x40
|
|
||||||
|
|
||||||
struct UsbDevice
|
|
||||||
{
|
|
||||||
EpInfo *epinfo; // endpoint info pointer
|
|
||||||
uint8_t address; // address
|
|
||||||
uint8_t epcount; // number of endpoints
|
|
||||||
bool lowspeed; // indicates if a device is the low speed one
|
|
||||||
// uint8_t devclass; // device class
|
|
||||||
};
|
|
||||||
|
|
||||||
class AddressPool
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual UsbDevice* GetUsbDevicePtr(uint8_t addr) = 0;
|
|
||||||
virtual uint8_t AllocAddress(uint8_t parent, bool is_hub = false, uint8_t port = 0) = 0;
|
|
||||||
virtual void FreeAddress(uint8_t addr) = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef void (*UsbDeviceHandleFunc)(UsbDevice *pdev);
|
|
||||||
|
|
||||||
#define ADDR_ERROR_INVALID_INDEX 0xFF
|
|
||||||
#define ADDR_ERROR_INVALID_ADDRESS 0xFF
|
|
||||||
|
|
||||||
template <const uint8_t MAX_DEVICES_ALLOWED>
|
|
||||||
class AddressPoolImpl : public AddressPool
|
|
||||||
{
|
|
||||||
EpInfo dev0ep; //Endpoint data structure used during enumeration for uninitialized device
|
|
||||||
|
|
||||||
uint8_t hubCounter; // hub counter is kept
|
|
||||||
// in order to avoid hub address duplication
|
|
||||||
|
|
||||||
UsbDevice thePool[MAX_DEVICES_ALLOWED];
|
|
||||||
|
|
||||||
// Initializes address pool entry
|
|
||||||
void InitEntry(uint8_t index)
|
|
||||||
{
|
|
||||||
thePool[index].address = 0;
|
|
||||||
thePool[index].epcount = 1;
|
|
||||||
thePool[index].lowspeed = 0;
|
|
||||||
thePool[index].epinfo = &dev0ep;
|
|
||||||
};
|
|
||||||
// Returns thePool index for a given address
|
|
||||||
uint8_t FindAddressIndex(uint8_t address = 0)
|
|
||||||
{
|
|
||||||
for (uint8_t i=1; i<MAX_DEVICES_ALLOWED; i++)
|
|
||||||
{
|
|
||||||
if (thePool[i].address == address)
|
|
||||||
return i;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
};
|
|
||||||
// Returns thePool child index for a given parent
|
|
||||||
uint8_t FindChildIndex(UsbDeviceAddress addr, uint8_t start = 1)
|
|
||||||
{
|
|
||||||
for (uint8_t i=(start<1 || start>=MAX_DEVICES_ALLOWED) ? 1 : start; i<MAX_DEVICES_ALLOWED; i++)
|
|
||||||
{
|
|
||||||
if (((UsbDeviceAddress*)&thePool[i].address)->bmParent == addr.bmAddress)
|
|
||||||
return i;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
};
|
|
||||||
// Frees address entry specified by index parameter
|
|
||||||
void FreeAddressByIndex(uint8_t index)
|
|
||||||
{
|
|
||||||
// Zerro field is reserved and should not be affected
|
|
||||||
if (index == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
// If a hub was switched off all port addresses should be freed
|
|
||||||
if (((UsbDeviceAddress*)&thePool[index].address)->bmHub == 1)
|
|
||||||
{
|
|
||||||
for (uint8_t i=1; i = FindChildIndex(*((UsbDeviceAddress*)&thePool[index].address), i); )
|
|
||||||
FreeAddressByIndex(i);
|
|
||||||
|
|
||||||
// If the hub had the last allocated address, hubCounter should be decremented
|
|
||||||
if (hubCounter == ((UsbDeviceAddress*)&thePool[index].address)->bmAddress)
|
|
||||||
hubCounter --;
|
|
||||||
}
|
|
||||||
InitEntry(index);
|
|
||||||
}
|
|
||||||
// Initializes the whole address pool at once
|
|
||||||
void InitAllAddresses()
|
|
||||||
{
|
|
||||||
for (uint8_t i=1; i<MAX_DEVICES_ALLOWED; i++)
|
|
||||||
InitEntry(i);
|
|
||||||
|
|
||||||
hubCounter = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
public:
|
|
||||||
AddressPoolImpl() : hubCounter(0)
|
|
||||||
{
|
|
||||||
// Zero address is reserved
|
|
||||||
InitEntry(0);
|
|
||||||
|
|
||||||
thePool[0].address = 0;
|
|
||||||
thePool[0].epinfo = &dev0ep;
|
|
||||||
dev0ep.epAddr = 0;
|
|
||||||
dev0ep.maxPktSize = 8;
|
|
||||||
dev0ep.epAttribs = 0; //set DATA0/1 toggles to 0
|
|
||||||
dev0ep.bmNakPower = USB_NAK_MAX_POWER;
|
|
||||||
|
|
||||||
InitAllAddresses();
|
|
||||||
};
|
|
||||||
// Returns a pointer to a specified address entry
|
|
||||||
virtual UsbDevice* GetUsbDevicePtr(uint8_t addr)
|
|
||||||
{
|
|
||||||
if (!addr)
|
|
||||||
return thePool;
|
|
||||||
|
|
||||||
uint8_t index = FindAddressIndex(addr);
|
|
||||||
|
|
||||||
return (!index) ? NULL : thePool + index;
|
|
||||||
};
|
|
||||||
|
|
||||||
// Performs an operation specified by pfunc for each addressed device
|
|
||||||
void ForEachUsbDevice(UsbDeviceHandleFunc pfunc)
|
|
||||||
{
|
|
||||||
if (!pfunc)
|
|
||||||
return;
|
|
||||||
|
|
||||||
for (uint8_t i=1; i<MAX_DEVICES_ALLOWED; i++)
|
|
||||||
if (thePool[i].address)
|
|
||||||
pfunc(thePool + i);
|
|
||||||
};
|
|
||||||
// Allocates new address
|
|
||||||
virtual uint8_t AllocAddress(uint8_t parent, bool is_hub = false, uint8_t port = 0)
|
|
||||||
{
|
|
||||||
/* if (parent != 0 && port == 0)
|
|
||||||
Serial.println("PRT:0"); */
|
|
||||||
|
|
||||||
if (parent > 127 || port > 7)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
if (is_hub && hubCounter == 7)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
// finds first empty address entry starting from one
|
|
||||||
uint8_t index = FindAddressIndex(0);
|
|
||||||
|
|
||||||
if (!index) // if empty entry is not found
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
if (parent == 0)
|
|
||||||
{
|
|
||||||
if (is_hub)
|
|
||||||
{
|
|
||||||
thePool[index].address = 0x41;
|
|
||||||
hubCounter ++;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
thePool[index].address = 1;
|
|
||||||
|
|
||||||
return thePool[index].address;
|
|
||||||
}
|
|
||||||
|
|
||||||
UsbDeviceAddress addr;
|
|
||||||
|
|
||||||
addr.bmParent = ((UsbDeviceAddress*)&parent)->bmAddress;
|
|
||||||
|
|
||||||
if (is_hub)
|
|
||||||
{
|
|
||||||
addr.bmHub = 1;
|
|
||||||
addr.bmAddress = ++hubCounter;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
addr.bmHub = 0;
|
|
||||||
addr.bmAddress = port;
|
|
||||||
}
|
|
||||||
thePool[index].address = *((uint8_t*)&addr);
|
|
||||||
/*
|
|
||||||
Serial.print("Addr:");
|
|
||||||
Serial.print(addr.bmHub, HEX);
|
|
||||||
Serial.print(".");
|
|
||||||
Serial.print(addr.bmParent, HEX);
|
|
||||||
Serial.print(".");
|
|
||||||
Serial.println(addr.bmAddress, HEX);
|
|
||||||
*/
|
|
||||||
return thePool[index].address;
|
|
||||||
};
|
|
||||||
// Empties pool entry
|
|
||||||
virtual void FreeAddress(uint8_t addr)
|
|
||||||
{
|
|
||||||
// if the root hub is disconnected all the addresses should be initialized
|
|
||||||
if (addr == 0x41)
|
|
||||||
{
|
|
||||||
InitAllAddresses();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
uint8_t index = FindAddressIndex(addr);
|
|
||||||
FreeAddressByIndex(index);
|
|
||||||
};
|
|
||||||
// Returns number of hubs attached
|
|
||||||
// It can be rather helpfull to find out if there are hubs attached than getting the exact number of hubs.
|
|
||||||
//uint8_t GetNumHubs()
|
|
||||||
//{
|
|
||||||
// return hubCounter;
|
|
||||||
//};
|
|
||||||
//uint8_t GetNumDevices()
|
|
||||||
//{
|
|
||||||
// uint8_t counter = 0;
|
|
||||||
|
|
||||||
// for (uint8_t i=1; i<MAX_DEVICES_ALLOWED; i++)
|
|
||||||
// if (thePool[i].address != 0);
|
|
||||||
// counter ++;
|
|
||||||
|
|
||||||
// return counter;
|
|
||||||
//};
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // __ADDRESS_H__
|
|
355
adk.cpp
355
adk.cpp
|
@ -1,355 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Google ADK interface */
|
|
||||||
|
|
||||||
#include "adk.h"
|
|
||||||
|
|
||||||
const uint8_t ADK::epDataInIndex = 1;
|
|
||||||
const uint8_t ADK::epDataOutIndex = 2;
|
|
||||||
|
|
||||||
ADK::ADK(USB *p, const char* manufacturer,
|
|
||||||
const char* model,
|
|
||||||
const char* description,
|
|
||||||
const char* version,
|
|
||||||
const char* uri,
|
|
||||||
const char* serial) :
|
|
||||||
|
|
||||||
pUsb(p), //pointer to USB class instance - mandatory
|
|
||||||
bAddress(0), //device address - mandatory
|
|
||||||
bNumEP(1), //if config descriptor needs to be parsed
|
|
||||||
ready(false),
|
|
||||||
|
|
||||||
/* ADK ID Strings */
|
|
||||||
|
|
||||||
manufacturer(manufacturer),
|
|
||||||
model(model),
|
|
||||||
description(description),
|
|
||||||
version(version),
|
|
||||||
uri(uri),
|
|
||||||
serial(serial)
|
|
||||||
|
|
||||||
{
|
|
||||||
// initialize endpoint data structures
|
|
||||||
for(uint8_t i=0; i<ADK_MAX_ENDPOINTS; i++) {
|
|
||||||
epInfo[i].epAddr = 0;
|
|
||||||
epInfo[i].maxPktSize = (i) ? 0 : 8;
|
|
||||||
epInfo[i].epAttribs = 0;
|
|
||||||
epInfo[i].bmNakPower = (i) ? USB_NAK_NOWAIT : USB_NAK_MAX_POWER;
|
|
||||||
}//for(uint8_t i=0; i<ADK_MAX_ENDPOINTS; i++...
|
|
||||||
|
|
||||||
// register in USB subsystem
|
|
||||||
if (pUsb) {
|
|
||||||
pUsb->RegisterDeviceClass(this); //set devConfig[] entry
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Connection initialization of an Android phone */
|
|
||||||
uint8_t ADK::Init(uint8_t parent, uint8_t port, bool lowspeed)
|
|
||||||
{
|
|
||||||
|
|
||||||
uint8_t buf[sizeof(USB_DEVICE_DESCRIPTOR)];
|
|
||||||
uint8_t rcode;
|
|
||||||
UsbDevice *p = NULL;
|
|
||||||
EpInfo *oldep_ptr = NULL;
|
|
||||||
uint8_t num_of_conf; // number of configurations
|
|
||||||
|
|
||||||
// get memory address of USB device address pool
|
|
||||||
AddressPool &addrPool = pUsb->GetAddressPool();
|
|
||||||
|
|
||||||
USBTRACE("\r\nADK Init");
|
|
||||||
|
|
||||||
// check if address has already been assigned to an instance
|
|
||||||
if (bAddress) {
|
|
||||||
USBTRACE("\r\nAddress in use");
|
|
||||||
return USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get pointer to pseudo device with address 0 assigned
|
|
||||||
p = addrPool.GetUsbDevicePtr(0);
|
|
||||||
|
|
||||||
if (!p) {
|
|
||||||
USBTRACE("\r\nAddress not found");
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!p->epinfo) {
|
|
||||||
USBTRACE("epinfo is null\r\n");
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save old pointer to EP_RECORD of address 0
|
|
||||||
oldep_ptr = p->epinfo;
|
|
||||||
|
|
||||||
// Temporary assign new pointer to epInfo to p->epinfo in order to avoid toggle inconsistence
|
|
||||||
p->epinfo = epInfo;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Get device descriptor
|
|
||||||
rcode = pUsb->getDevDescr( 0, 0, sizeof(USB_DEVICE_DESCRIPTOR), (uint8_t*)buf );
|
|
||||||
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
if( rcode ){
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Allocate new address according to device class
|
|
||||||
bAddress = addrPool.AllocAddress(parent, false, port);
|
|
||||||
|
|
||||||
// Extract Max Packet Size from device descriptor
|
|
||||||
epInfo[0].maxPktSize = (uint8_t)((USB_DEVICE_DESCRIPTOR*)buf)->bMaxPacketSize0;
|
|
||||||
|
|
||||||
// Assign new address to the device
|
|
||||||
rcode = pUsb->setAddr( 0, 0, bAddress );
|
|
||||||
if (rcode) {
|
|
||||||
p->lowspeed = false;
|
|
||||||
addrPool.FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
//USBTRACE2("setAddr:",rcode);
|
|
||||||
return rcode;
|
|
||||||
}//if (rcode...
|
|
||||||
|
|
||||||
//USBTRACE2("\r\nAddr:", bAddress);
|
|
||||||
|
|
||||||
p->lowspeed = false;
|
|
||||||
|
|
||||||
//get pointer to assigned address record
|
|
||||||
p = addrPool.GetUsbDevicePtr(bAddress);
|
|
||||||
if (!p) {
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
}
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer - only EP0 is known
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 1, epInfo);
|
|
||||||
if (rcode) {
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
}
|
|
||||||
|
|
||||||
//check if ADK device is already in accessory mode; if yes, configure and exit
|
|
||||||
if(((USB_DEVICE_DESCRIPTOR*)buf)->idVendor == ADK_VID &&
|
|
||||||
(((USB_DEVICE_DESCRIPTOR*)buf)->idProduct == ADK_PID || ((USB_DEVICE_DESCRIPTOR*)buf)->idProduct == ADB_PID)) {
|
|
||||||
USBTRACE("\r\nAcc.mode device detected");
|
|
||||||
/* go through configurations, find first bulk-IN, bulk-OUT EP, fill epInfo and quit */
|
|
||||||
num_of_conf = ((USB_DEVICE_DESCRIPTOR*)buf)->bNumConfigurations;
|
|
||||||
|
|
||||||
//USBTRACE2("\r\nNC:",num_of_conf);
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<num_of_conf; i++) {
|
|
||||||
ConfigDescParser<0, 0, 0, 0> confDescrParser(this);
|
|
||||||
delay(1);
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, i, &confDescrParser);
|
|
||||||
#if defined(XOOM)
|
|
||||||
//added by Jaylen Scott Vanorden
|
|
||||||
if( rcode ) {
|
|
||||||
USBTRACE2("\r\nGot 1st bad code for config: ", rcode);
|
|
||||||
// Try once more
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, i, &confDescrParser);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if( rcode ) {
|
|
||||||
goto FailGetConfDescr;
|
|
||||||
}
|
|
||||||
if( bNumEP > 2 ) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} // for (uint8_t i=0; i<num_of_conf; i++...
|
|
||||||
|
|
||||||
if( bNumEP == 3 ) {
|
|
||||||
// Assign epInfo to epinfo pointer - this time all 3 endpoins
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 3, epInfo);
|
|
||||||
if (rcode) {
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Set Configuration Value
|
|
||||||
rcode = pUsb->setConf(bAddress, 0, bConfNum);
|
|
||||||
if( rcode ){
|
|
||||||
goto FailSetConf;
|
|
||||||
}
|
|
||||||
/* print endpoint structure */
|
|
||||||
// USBTRACE("\r\nEndpoint Structure:");
|
|
||||||
// USBTRACE("\r\nEP0:");
|
|
||||||
// USBTRACE2("\r\nAddr: ", epInfo[0].epAddr );
|
|
||||||
// USBTRACE2("\r\nMax.pkt.size: ", epInfo[0].maxPktSize );
|
|
||||||
// USBTRACE2("\r\nAttr: ", epInfo[0].epAttribs );
|
|
||||||
// USBTRACE("\r\nEpout:");
|
|
||||||
// USBTRACE2("\r\nAddr: ", epInfo[epDataOutIndex].epAddr );
|
|
||||||
// USBTRACE2("\r\nMax.pkt.size: ", epInfo[epDataOutIndex].maxPktSize );
|
|
||||||
// USBTRACE2("\r\nAttr: ", epInfo[epDataOutIndex].epAttribs );
|
|
||||||
// USBTRACE("\r\nEpin:");
|
|
||||||
// USBTRACE2("\r\nAddr: ", epInfo[epDataInIndex].epAddr );
|
|
||||||
// USBTRACE2("\r\nMax.pkt.size: ", epInfo[epDataInIndex].maxPktSize );
|
|
||||||
// USBTRACE2("\r\nAttr: ", epInfo[epDataInIndex].epAttribs );
|
|
||||||
|
|
||||||
USBTRACE("\r\nConfiguration successful");
|
|
||||||
ready = true;
|
|
||||||
return 0; //successful configuration
|
|
||||||
}//if( buf->idVendor == ADK_VID...
|
|
||||||
|
|
||||||
//probe device - get accessory protocol revision
|
|
||||||
{
|
|
||||||
uint16_t adkproto = -1;
|
|
||||||
delay(1);
|
|
||||||
rcode = getProto((uint8_t*)&adkproto );
|
|
||||||
#if defined(XOOM)
|
|
||||||
//added by Jaylen Scott Vanorden
|
|
||||||
if( rcode ) {
|
|
||||||
USBTRACE2("\r\nGot 1st bad code for proto: ", rcode);
|
|
||||||
// Try once more
|
|
||||||
rcode = getProto((uint8_t*)&adkproto );
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if( rcode ){
|
|
||||||
goto FailGetProto; //init fails
|
|
||||||
}
|
|
||||||
USBTRACE2("\r\nADK protocol rev. ", adkproto );
|
|
||||||
}
|
|
||||||
|
|
||||||
//sending ID strings
|
|
||||||
sendStr( ACCESSORY_STRING_MANUFACTURER, manufacturer);
|
|
||||||
sendStr( ACCESSORY_STRING_MODEL, model);
|
|
||||||
sendStr( ACCESSORY_STRING_DESCRIPTION, description);
|
|
||||||
sendStr( ACCESSORY_STRING_VERSION, version);
|
|
||||||
sendStr( ACCESSORY_STRING_URI, uri);
|
|
||||||
sendStr( ACCESSORY_STRING_SERIAL, serial);
|
|
||||||
|
|
||||||
//switch to accessory mode
|
|
||||||
//the Android phone will reset
|
|
||||||
rcode = switchAcc();
|
|
||||||
if( rcode ) {
|
|
||||||
goto FailSwAcc; //init fails
|
|
||||||
}
|
|
||||||
rcode = -1;
|
|
||||||
goto SwAttempt; //switch to accessory mode attempted
|
|
||||||
|
|
||||||
/* diagnostic messages */
|
|
||||||
FailGetDevDescr:
|
|
||||||
USBTRACE("\r\ngetDevDescr:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetDevTblEntry:
|
|
||||||
USBTRACE("\r\nsetDevTblEn:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetProto:
|
|
||||||
USBTRACE("\r\ngetProto:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSwAcc:
|
|
||||||
USBTRACE("\r\nswAcc:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
SwAttempt:
|
|
||||||
USBTRACE("\r\nAccessory mode switch attempt");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetConfDescr:
|
|
||||||
// USBTRACE("getConf:");
|
|
||||||
goto Fail;
|
|
||||||
//
|
|
||||||
FailSetConf:
|
|
||||||
// USBTRACE("setConf:");
|
|
||||||
goto Fail;
|
|
||||||
//
|
|
||||||
//FailOnInit:
|
|
||||||
// USBTRACE("OnInit:");
|
|
||||||
// goto Fail;
|
|
||||||
//
|
|
||||||
Fail:
|
|
||||||
//USBTRACE2("\r\nADK Init Failed, error code: ", rcode);
|
|
||||||
Release();
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Extracts bulk-IN and bulk-OUT endpoint information from config descriptor */
|
|
||||||
void ADK::EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *pep)
|
|
||||||
{
|
|
||||||
//ErrorMessage<uint8_t>(PSTR("Conf.Val"), conf);
|
|
||||||
//ErrorMessage<uint8_t>(PSTR("Iface Num"),iface);
|
|
||||||
//ErrorMessage<uint8_t>(PSTR("Alt.Set"), alt);
|
|
||||||
|
|
||||||
//added by Yuuichi Akagawa
|
|
||||||
if( bNumEP == 3 ) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
bConfNum = conf;
|
|
||||||
|
|
||||||
uint8_t index;
|
|
||||||
|
|
||||||
if ((pep->bmAttributes & 0x02) == 2) {
|
|
||||||
index = ((pep->bEndpointAddress & 0x80) == 0x80) ? epDataInIndex : epDataOutIndex;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fill in the endpoint info structure
|
|
||||||
epInfo[index].epAddr = (pep->bEndpointAddress & 0x0F);
|
|
||||||
epInfo[index].maxPktSize = (uint8_t)pep->wMaxPacketSize;
|
|
||||||
|
|
||||||
bNumEP ++;
|
|
||||||
|
|
||||||
//PrintEndpointDescriptor(pep);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Performs a cleanup after failed Init() attempt */
|
|
||||||
uint8_t ADK::Release()
|
|
||||||
{
|
|
||||||
pUsb->GetAddressPool().FreeAddress(bAddress);
|
|
||||||
|
|
||||||
bNumEP = 1; //must have to be reset to 1
|
|
||||||
|
|
||||||
bAddress = 0;
|
|
||||||
ready = false;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ADK::RcvData(uint16_t *bytes_rcvd, uint8_t *dataptr)
|
|
||||||
{
|
|
||||||
//USBTRACE2("\r\nAddr: ", bAddress );
|
|
||||||
//USBTRACE2("\r\nEP: ",epInfo[epDataInIndex].epAddr);
|
|
||||||
return pUsb->inTransfer(bAddress, epInfo[epDataInIndex].epAddr, bytes_rcvd, dataptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ADK::SndData(uint16_t nbytes, uint8_t *dataptr)
|
|
||||||
{
|
|
||||||
return pUsb->outTransfer(bAddress, epInfo[epDataOutIndex].epAddr, nbytes, dataptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ADK::PrintEndpointDescriptor( const USB_ENDPOINT_DESCRIPTOR* ep_ptr )
|
|
||||||
{
|
|
||||||
Notify(PSTR("Endpoint descriptor:"));
|
|
||||||
Notify(PSTR("\r\nLength:\t\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bLength);
|
|
||||||
Notify(PSTR("\r\nType:\t\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bDescriptorType);
|
|
||||||
Notify(PSTR("\r\nAddress:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bEndpointAddress);
|
|
||||||
Notify(PSTR("\r\nAttributes:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bmAttributes);
|
|
||||||
Notify(PSTR("\r\nMaxPktSize:\t"));
|
|
||||||
PrintHex<uint16_t>(ep_ptr->wMaxPacketSize);
|
|
||||||
Notify(PSTR("\r\nPoll Intrv:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bInterval);
|
|
||||||
Notify(PSTR("\r\n"));
|
|
||||||
}
|
|
145
adk.h
145
adk.h
|
@ -1,145 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Google ADK interface support header */
|
|
||||||
|
|
||||||
#if !defined(_ADK_H_)
|
|
||||||
#define _ADK_H_
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
|
|
||||||
#include "confdescparser.h"
|
|
||||||
|
|
||||||
#define ADK_VID 0x18D1
|
|
||||||
#define ADK_PID 0x2D00
|
|
||||||
#define ADB_PID 0x2D01
|
|
||||||
|
|
||||||
#define XOOM //enables repeating getProto() and getConf() attempts
|
|
||||||
//necessary for slow devices such as Motorola XOOM
|
|
||||||
//defined by default, can be commented out to save memory
|
|
||||||
|
|
||||||
/* requests */
|
|
||||||
|
|
||||||
#define ADK_GETPROTO 51 //check USB accessory protocol version
|
|
||||||
#define ADK_SENDSTR 52 //send identifying string
|
|
||||||
#define ADK_ACCSTART 53 //start device in accessory mode
|
|
||||||
|
|
||||||
#define bmREQ_ADK_GET USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_VENDOR|USB_SETUP_RECIPIENT_DEVICE
|
|
||||||
#define bmREQ_ADK_SEND USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_VENDOR|USB_SETUP_RECIPIENT_DEVICE
|
|
||||||
|
|
||||||
#define ACCESSORY_STRING_MANUFACTURER 0
|
|
||||||
#define ACCESSORY_STRING_MODEL 1
|
|
||||||
#define ACCESSORY_STRING_DESCRIPTION 2
|
|
||||||
#define ACCESSORY_STRING_VERSION 3
|
|
||||||
#define ACCESSORY_STRING_URI 4
|
|
||||||
#define ACCESSORY_STRING_SERIAL 5
|
|
||||||
|
|
||||||
#define ADK_MAX_ENDPOINTS 3 //endpoint 0, bulk_IN, bulk_OUT
|
|
||||||
|
|
||||||
class ADK;
|
|
||||||
|
|
||||||
class ADK : public USBDeviceConfig, public UsbConfigXtracter
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
/* ID strings */
|
|
||||||
const char* manufacturer;
|
|
||||||
const char* model;
|
|
||||||
const char* description;
|
|
||||||
const char* version;
|
|
||||||
const char* uri;
|
|
||||||
const char* serial;
|
|
||||||
|
|
||||||
/* ADK proprietary requests */
|
|
||||||
uint8_t getProto( uint8_t* adkproto );
|
|
||||||
uint8_t sendStr( uint8_t index, const char* str );
|
|
||||||
uint8_t switchAcc( void );
|
|
||||||
|
|
||||||
protected:
|
|
||||||
static const uint8_t epDataInIndex; // DataIn endpoint index
|
|
||||||
static const uint8_t epDataOutIndex; // DataOUT endpoint index
|
|
||||||
|
|
||||||
/* mandatory members */
|
|
||||||
USB *pUsb;
|
|
||||||
uint8_t bAddress;
|
|
||||||
uint8_t bConfNum; // configuration number
|
|
||||||
|
|
||||||
uint8_t bNumEP; // total number of EP in the configuration
|
|
||||||
bool ready;
|
|
||||||
|
|
||||||
/* Endpoint data structure */
|
|
||||||
EpInfo epInfo[ADK_MAX_ENDPOINTS];
|
|
||||||
|
|
||||||
void PrintEndpointDescriptor(const USB_ENDPOINT_DESCRIPTOR* ep_ptr);
|
|
||||||
|
|
||||||
public:
|
|
||||||
ADK(USB *pUsb, const char* manufacturer,
|
|
||||||
const char* model,
|
|
||||||
const char* description,
|
|
||||||
const char* version,
|
|
||||||
const char* uri,
|
|
||||||
const char* serial);
|
|
||||||
|
|
||||||
// Methods for receiving and sending data
|
|
||||||
uint8_t RcvData(uint16_t *nbytesptr, uint8_t *dataptr);
|
|
||||||
uint8_t SndData(uint16_t nbytes, uint8_t *dataptr);
|
|
||||||
|
|
||||||
|
|
||||||
// USBDeviceConfig implementation
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
virtual uint8_t Release();
|
|
||||||
virtual uint8_t Poll(){}; //not implemented
|
|
||||||
virtual uint8_t GetAddress() { return bAddress; };
|
|
||||||
virtual bool isReady() { return ready; };
|
|
||||||
|
|
||||||
//UsbConfigXtracter implementation
|
|
||||||
virtual void EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *ep);
|
|
||||||
}; //class ADK : public USBDeviceConfig ...
|
|
||||||
|
|
||||||
/* get ADK protocol version */
|
|
||||||
/* returns 2 bytes in *adkproto */
|
|
||||||
inline uint8_t ADK::getProto( uint8_t* adkproto )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq(bAddress, 0, bmREQ_ADK_GET, ADK_GETPROTO, 0, 0, 0, 2, 2, adkproto, NULL ));
|
|
||||||
}
|
|
||||||
/* send ADK string */
|
|
||||||
inline uint8_t ADK::sendStr( uint8_t index, const char* str )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq(bAddress, 0, bmREQ_ADK_SEND, ADK_SENDSTR, 0, 0, index, strlen(str) + 1, strlen(str) + 1, (uint8_t*)str, NULL));
|
|
||||||
}
|
|
||||||
/* switch to accessory mode */
|
|
||||||
inline uint8_t ADK::switchAcc( void )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq(bAddress, 0, bmREQ_ADK_SEND, ADK_ACCSTART, 0, 0, 0, 0, 0, NULL, NULL));
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // _ADK_H_
|
|
666
avrpins.h
666
avrpins.h
|
@ -1,666 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* derived from Konstantin Chizhov's AVR port templates */
|
|
||||||
|
|
||||||
#ifndef _avrpins_h_
|
|
||||||
#define _avrpins_h_
|
|
||||||
|
|
||||||
#if defined(__AVR_ATmega1280__) || (__AVR_ATmega2560__)
|
|
||||||
/* Uncomment the following if you have Arduino Mega ADK board with MAX3421e built-in */
|
|
||||||
//#define BOARD_MEGA_ADK
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Uncomment the following if you are using a Teensy 2.0 */
|
|
||||||
//#define BOARD_TEENSY
|
|
||||||
|
|
||||||
#include <avr/io.h>
|
|
||||||
|
|
||||||
#ifdef PORTA
|
|
||||||
#define USE_PORTA
|
|
||||||
#endif
|
|
||||||
#ifdef PORTB
|
|
||||||
#define USE_PORTB
|
|
||||||
#endif
|
|
||||||
#ifdef PORTC
|
|
||||||
#define USE_PORTC
|
|
||||||
#endif
|
|
||||||
#ifdef PORTD
|
|
||||||
#define USE_PORTD
|
|
||||||
#endif
|
|
||||||
#ifdef PORTE
|
|
||||||
#define USE_PORTE
|
|
||||||
#endif
|
|
||||||
#ifdef PORTF
|
|
||||||
#define USE_PORTF
|
|
||||||
#endif
|
|
||||||
#ifdef PORTG
|
|
||||||
#define USE_PORTG
|
|
||||||
#endif
|
|
||||||
#ifdef PORTH
|
|
||||||
#define USE_PORTH
|
|
||||||
#endif
|
|
||||||
#ifdef PORTJ
|
|
||||||
#define USE_PORTJ
|
|
||||||
#endif
|
|
||||||
#ifdef PORTK
|
|
||||||
#define USE_PORTK
|
|
||||||
#endif
|
|
||||||
#ifdef PORTL
|
|
||||||
#define USE_PORTL
|
|
||||||
#endif
|
|
||||||
#ifdef PORTQ
|
|
||||||
#define USE_PORTQ
|
|
||||||
#endif
|
|
||||||
#ifdef PORTR
|
|
||||||
#define USE_PORTR
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef TCCR0A
|
|
||||||
#define USE_TCCR0A
|
|
||||||
#endif
|
|
||||||
#ifdef TCCR1A
|
|
||||||
#define USE_TCCR1A
|
|
||||||
#endif
|
|
||||||
#ifdef TCCR2A
|
|
||||||
#define USE_TCCR2A
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//Port definitions for AtTiny, AtMega families.
|
|
||||||
|
|
||||||
#define MAKE_PORT(portName, ddrName, pinName, className, ID) \
|
|
||||||
class className{\
|
|
||||||
public:\
|
|
||||||
typedef uint8_t DataT;\
|
|
||||||
public:\
|
|
||||||
static void Write(DataT value){portName = value;}\
|
|
||||||
static void ClearAndSet(DataT clearMask, DataT value){portName = (portName & ~clearMask) | value;}\
|
|
||||||
static DataT Read(){return portName;}\
|
|
||||||
static void DirWrite(DataT value){ddrName = value;}\
|
|
||||||
static DataT DirRead(){return ddrName;}\
|
|
||||||
static void Set(DataT value){portName |= value;}\
|
|
||||||
static void Clear(DataT value){portName &= ~value;}\
|
|
||||||
static void Toggle(DataT value){portName ^= value;}\
|
|
||||||
static void DirSet(DataT value){ddrName |= value;}\
|
|
||||||
static void DirClear(DataT value){ddrName &= ~value;}\
|
|
||||||
static void DirToggle(DataT value){ddrName ^= value;}\
|
|
||||||
static DataT PinRead(){return pinName;}\
|
|
||||||
enum{Id = ID};\
|
|
||||||
enum{Width=sizeof(DataT)*8};\
|
|
||||||
};
|
|
||||||
|
|
||||||
// TCCR registers to set/clear Arduino PWM
|
|
||||||
#define MAKE_TCCR(TccrName, className) \
|
|
||||||
class className{\
|
|
||||||
public:\
|
|
||||||
typedef uint8_t DataT;\
|
|
||||||
public:\
|
|
||||||
static void Write(DataT value){TccrName = value;}\
|
|
||||||
static void ClearAndSet(DataT clearMask, DataT value){TccrName = (TccrName & ~clearMask) | value;}\
|
|
||||||
static DataT Read(){return TccrName;}\
|
|
||||||
static void Set(DataT value){TccrName |= value;}\
|
|
||||||
static void Clear(DataT value){TccrName &= ~value;}\
|
|
||||||
static void Toggle(DataT value){TccrName ^= value;}\
|
|
||||||
enum{Width=sizeof(DataT)*8};\
|
|
||||||
};
|
|
||||||
|
|
||||||
#ifdef USE_PORTA
|
|
||||||
MAKE_PORT(PORTA, DDRA, PINA, Porta, 'A')
|
|
||||||
#endif
|
|
||||||
#ifdef USE_PORTB
|
|
||||||
MAKE_PORT(PORTB, DDRB, PINB, Portb, 'B')
|
|
||||||
#endif
|
|
||||||
#ifdef USE_PORTC
|
|
||||||
MAKE_PORT(PORTC, DDRC, PINC, Portc, 'C')
|
|
||||||
#endif
|
|
||||||
#ifdef USE_PORTD
|
|
||||||
MAKE_PORT(PORTD, DDRD, PIND, Portd, 'D')
|
|
||||||
#endif
|
|
||||||
#ifdef USE_PORTE
|
|
||||||
MAKE_PORT(PORTE, DDRE, PINE, Porte, 'E')
|
|
||||||
#endif
|
|
||||||
#ifdef USE_PORTF
|
|
||||||
MAKE_PORT(PORTF, DDRF, PINF, Portf, 'F')
|
|
||||||
#endif
|
|
||||||
#ifdef USE_PORTG
|
|
||||||
MAKE_PORT(PORTG, DDRG, PING, Portg, 'G')
|
|
||||||
#endif
|
|
||||||
#ifdef USE_PORTH
|
|
||||||
MAKE_PORT(PORTH, DDRH, PINH, Porth, 'H')
|
|
||||||
#endif
|
|
||||||
#ifdef USE_PORTJ
|
|
||||||
MAKE_PORT(PORTJ, DDRJ, PINJ, Portj, 'J')
|
|
||||||
#endif
|
|
||||||
#ifdef USE_PORTK
|
|
||||||
MAKE_PORT(PORTK, DDRK, PINK, Portk, 'K')
|
|
||||||
#endif
|
|
||||||
#ifdef USE_PORTL
|
|
||||||
MAKE_PORT(PORTL, DDRL, PINL, Portl, 'L')
|
|
||||||
#endif
|
|
||||||
#ifdef USE_PORTQ
|
|
||||||
MAKE_PORT(PORTQ, DDRQ, PINQ, Portq, 'Q')
|
|
||||||
#endif
|
|
||||||
#ifdef USE_PORTR
|
|
||||||
MAKE_PORT(PORTR, DDRR, PINR, Portr, 'R')
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_TCCR0A
|
|
||||||
MAKE_TCCR(TCCR0A, Tccr0a)
|
|
||||||
#endif
|
|
||||||
#ifdef USE_TCCR1A
|
|
||||||
MAKE_TCCR(TCCR1A, Tccr1a)
|
|
||||||
#endif
|
|
||||||
#ifdef USE_TCCR2A
|
|
||||||
MAKE_TCCR(TCCR2A, Tccr2a)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// this class represents one pin in a IO port.
|
|
||||||
// It is fully static.
|
|
||||||
template<typename PORT, uint8_t PIN>
|
|
||||||
class TPin
|
|
||||||
{
|
|
||||||
// BOOST_STATIC_ASSERT(PIN < PORT::Width);
|
|
||||||
public:
|
|
||||||
typedef PORT Port;
|
|
||||||
enum{Number = PIN};
|
|
||||||
|
|
||||||
static void Set() { PORT::Set(1 << PIN); }
|
|
||||||
|
|
||||||
static void Set(uint8_t val){
|
|
||||||
if(val)
|
|
||||||
Set();
|
|
||||||
else Clear();}
|
|
||||||
|
|
||||||
static void SetDir(uint8_t val){
|
|
||||||
if(val)
|
|
||||||
SetDirWrite();
|
|
||||||
else SetDirRead();}
|
|
||||||
|
|
||||||
static void Clear(){PORT::Clear(1 << PIN);}
|
|
||||||
|
|
||||||
static void Toggle(){PORT::Toggle(1 << PIN);}
|
|
||||||
|
|
||||||
static void SetDirRead(){PORT::DirClear(1 << PIN);}
|
|
||||||
|
|
||||||
static void SetDirWrite(){PORT::DirSet(1 << PIN);}
|
|
||||||
|
|
||||||
static uint8_t IsSet(){return PORT::PinRead() & (uint8_t)(1 << PIN);}
|
|
||||||
|
|
||||||
static void WaiteForSet(){ while(IsSet()==0){} }
|
|
||||||
|
|
||||||
static void WaiteForClear(){ while(IsSet()){} }
|
|
||||||
}; //class TPin...
|
|
||||||
|
|
||||||
// this class represents one bit in TCCR port.
|
|
||||||
// used to set/clear TCCRx bits
|
|
||||||
// It is fully static.
|
|
||||||
template<typename TCCR, uint8_t COM>
|
|
||||||
class TCom
|
|
||||||
{
|
|
||||||
// BOOST_STATIC_ASSERT(PIN < PORT::Width);
|
|
||||||
public:
|
|
||||||
typedef TCCR Tccr;
|
|
||||||
enum{Com = COM};
|
|
||||||
|
|
||||||
static void Set() { TCCR::Set(1 << COM); }
|
|
||||||
|
|
||||||
static void Clear() { TCCR::Clear(1 << COM); }
|
|
||||||
|
|
||||||
static void Toggle() { TCCR::Toggle(1 << COM); }
|
|
||||||
}; //class TCom...
|
|
||||||
|
|
||||||
//Short pin definitions
|
|
||||||
#ifdef USE_PORTA
|
|
||||||
typedef TPin<Porta, 0> Pa0;
|
|
||||||
typedef TPin<Porta, 1> Pa1;
|
|
||||||
typedef TPin<Porta, 2> Pa2;
|
|
||||||
typedef TPin<Porta, 3> Pa3;
|
|
||||||
typedef TPin<Porta, 4> Pa4;
|
|
||||||
typedef TPin<Porta, 5> Pa5;
|
|
||||||
typedef TPin<Porta, 6> Pa6;
|
|
||||||
typedef TPin<Porta, 7> Pa7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_PORTB
|
|
||||||
typedef TPin<Portb, 0> Pb0;
|
|
||||||
typedef TPin<Portb, 1> Pb1;
|
|
||||||
typedef TPin<Portb, 2> Pb2;
|
|
||||||
typedef TPin<Portb, 3> Pb3;
|
|
||||||
typedef TPin<Portb, 4> Pb4;
|
|
||||||
typedef TPin<Portb, 5> Pb5;
|
|
||||||
typedef TPin<Portb, 6> Pb6;
|
|
||||||
typedef TPin<Portb, 7> Pb7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_PORTC
|
|
||||||
typedef TPin<Portc, 0> Pc0;
|
|
||||||
typedef TPin<Portc, 1> Pc1;
|
|
||||||
typedef TPin<Portc, 2> Pc2;
|
|
||||||
typedef TPin<Portc, 3> Pc3;
|
|
||||||
typedef TPin<Portc, 4> Pc4;
|
|
||||||
typedef TPin<Portc, 5> Pc5;
|
|
||||||
typedef TPin<Portc, 6> Pc6;
|
|
||||||
typedef TPin<Portc, 7> Pc7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_PORTD
|
|
||||||
typedef TPin<Portd, 0> Pd0;
|
|
||||||
typedef TPin<Portd, 1> Pd1;
|
|
||||||
typedef TPin<Portd, 2> Pd2;
|
|
||||||
typedef TPin<Portd, 3> Pd3;
|
|
||||||
typedef TPin<Portd, 4> Pd4;
|
|
||||||
typedef TPin<Portd, 5> Pd5;
|
|
||||||
typedef TPin<Portd, 6> Pd6;
|
|
||||||
typedef TPin<Portd, 7> Pd7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_PORTE
|
|
||||||
typedef TPin<Porte, 0> Pe0;
|
|
||||||
typedef TPin<Porte, 1> Pe1;
|
|
||||||
typedef TPin<Porte, 2> Pe2;
|
|
||||||
typedef TPin<Porte, 3> Pe3;
|
|
||||||
typedef TPin<Porte, 4> Pe4;
|
|
||||||
typedef TPin<Porte, 5> Pe5;
|
|
||||||
typedef TPin<Porte, 6> Pe6;
|
|
||||||
typedef TPin<Porte, 7> Pe7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_PORTF
|
|
||||||
typedef TPin<Portf, 0> Pf0;
|
|
||||||
typedef TPin<Portf, 1> Pf1;
|
|
||||||
typedef TPin<Portf, 2> Pf2;
|
|
||||||
typedef TPin<Portf, 3> Pf3;
|
|
||||||
typedef TPin<Portf, 4> Pf4;
|
|
||||||
typedef TPin<Portf, 5> Pf5;
|
|
||||||
typedef TPin<Portf, 6> Pf6;
|
|
||||||
typedef TPin<Portf, 7> Pf7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_PORTG
|
|
||||||
typedef TPin<Portg, 0> Pg0;
|
|
||||||
typedef TPin<Portg, 1> Pg1;
|
|
||||||
typedef TPin<Portg, 2> Pg2;
|
|
||||||
typedef TPin<Portg, 3> Pg3;
|
|
||||||
typedef TPin<Portg, 4> Pg4;
|
|
||||||
typedef TPin<Portg, 5> Pg5;
|
|
||||||
typedef TPin<Portg, 6> Pg6;
|
|
||||||
typedef TPin<Portg, 7> Pg7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_PORTH
|
|
||||||
typedef TPin<Porth, 0> Ph0;
|
|
||||||
typedef TPin<Porth, 1> Ph1;
|
|
||||||
typedef TPin<Porth, 2> Ph2;
|
|
||||||
typedef TPin<Porth, 3> Ph3;
|
|
||||||
typedef TPin<Porth, 4> Ph4;
|
|
||||||
typedef TPin<Porth, 5> Ph5;
|
|
||||||
typedef TPin<Porth, 6> Ph6;
|
|
||||||
typedef TPin<Porth, 7> Ph7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_PORTJ
|
|
||||||
typedef TPin<Portj, 0> Pj0;
|
|
||||||
typedef TPin<Portj, 1> Pj1;
|
|
||||||
typedef TPin<Portj, 2> Pj2;
|
|
||||||
typedef TPin<Portj, 3> Pj3;
|
|
||||||
typedef TPin<Portj, 4> Pj4;
|
|
||||||
typedef TPin<Portj, 5> Pj5;
|
|
||||||
typedef TPin<Portj, 6> Pj6;
|
|
||||||
typedef TPin<Portj, 7> Pj7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_PORTK
|
|
||||||
typedef TPin<Portk, 0> Pk0;
|
|
||||||
typedef TPin<Portk, 1> Pk1;
|
|
||||||
typedef TPin<Portk, 2> Pk2;
|
|
||||||
typedef TPin<Portk, 3> Pk3;
|
|
||||||
typedef TPin<Portk, 4> Pk4;
|
|
||||||
typedef TPin<Portk, 5> Pk5;
|
|
||||||
typedef TPin<Portk, 6> Pk6;
|
|
||||||
typedef TPin<Portk, 7> Pk7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_PORTL
|
|
||||||
typedef TPin<Portl, 0> Pl0;
|
|
||||||
typedef TPin<Portl, 1> Pl1;
|
|
||||||
typedef TPin<Portl, 2> Pl2;
|
|
||||||
typedef TPin<Portl, 3> Pl3;
|
|
||||||
typedef TPin<Portl, 4> Pl4;
|
|
||||||
typedef TPin<Portl, 5> Pl5;
|
|
||||||
typedef TPin<Portl, 6> Pl6;
|
|
||||||
typedef TPin<Portl, 7> Pl7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_PORTQ
|
|
||||||
typedef TPin<Portq, 0> Pq0;
|
|
||||||
typedef TPin<Portq, 1> Pq1;
|
|
||||||
typedef TPin<Portq, 2> Pq2;
|
|
||||||
typedef TPin<Portq, 3> Pq3;
|
|
||||||
typedef TPin<Portq, 4> Pq4;
|
|
||||||
typedef TPin<Portq, 5> Pq5;
|
|
||||||
typedef TPin<Portq, 6> Pq6;
|
|
||||||
typedef TPin<Portq, 7> Pq7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_PORTR
|
|
||||||
typedef TPin<Portr, 0> Pr0;
|
|
||||||
typedef TPin<Portr, 1> Pr1;
|
|
||||||
typedef TPin<Portr, 2> Pr2;
|
|
||||||
typedef TPin<Portr, 3> Pr3;
|
|
||||||
typedef TPin<Portr, 4> Pr4;
|
|
||||||
typedef TPin<Portr, 5> Pr5;
|
|
||||||
typedef TPin<Portr, 6> Pr6;
|
|
||||||
typedef TPin<Portr, 7> Pr7;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_TCCR0A
|
|
||||||
typedef TCom<Tccr0a, COM0A1> Tc0a; //P6
|
|
||||||
typedef TCom<Tccr0a, COM0B1> Tc0b; //P5
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_TCCR1A
|
|
||||||
typedef TCom<Tccr1a, COM1A1> Tc1a; //P9
|
|
||||||
typedef TCom<Tccr1a, COM1B1> Tc1b; //P10
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_TCCR2A
|
|
||||||
typedef TCom<Tccr2a, COM2A1> Tc2a; //P11
|
|
||||||
typedef TCom<Tccr2a, COM2B1> Tc2b; //P3
|
|
||||||
#endif
|
|
||||||
|
|
||||||
template<typename Tp_pin, typename Tc_bit>
|
|
||||||
class Tp_Tc
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
static void SetDir(uint8_t val){
|
|
||||||
if(val)
|
|
||||||
SetDirWrite();
|
|
||||||
else SetDirRead();
|
|
||||||
}
|
|
||||||
static void SetDirRead(){
|
|
||||||
Tp_pin::SetDirRead(); //set pin direction
|
|
||||||
Tc_bit::Clear(); //disconnect pin from PWM
|
|
||||||
}
|
|
||||||
static void SetDirWrite(){
|
|
||||||
Tp_pin::SetDirWrite();
|
|
||||||
Tc_bit::Clear();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
/* pin definitions for cases where it's necessary to clear compare output mode bits */
|
|
||||||
|
|
||||||
//typedef Tp_Tc<Pd3, Tc2b> P3; //Arduino pin 3
|
|
||||||
//typedef Tp_Tc<Pd5, Tc0b> P5; //Arduino pin 5
|
|
||||||
//typedef Tp_Tc<Pd6, Tc0a> P6; //Arduino pin 6
|
|
||||||
//typedef Tp_Tc<Pb1, Tc1a> P9; //Arduino pin 9
|
|
||||||
//typedef Tp_Tc<Pb2, Tc1b> P10; //Arduino pin 10
|
|
||||||
//typedef Tp_Tc<Pb3, Tc2a> P11; //Arduino pin 11
|
|
||||||
|
|
||||||
/* Arduino pin definitions */
|
|
||||||
#if defined(__AVR_ATmega1280__) || (__AVR_ATmega2560__)
|
|
||||||
|
|
||||||
// "Mega" Arduino pin numbers
|
|
||||||
|
|
||||||
#define P0 Pe0
|
|
||||||
#define P1 Pe1
|
|
||||||
#define P2 Pe4
|
|
||||||
#define P3 Pe5
|
|
||||||
#define P4 Pg5
|
|
||||||
#define P5 Pe5
|
|
||||||
#define P6 Ph3
|
|
||||||
#define P7 Ph4
|
|
||||||
|
|
||||||
#define P8 Ph5
|
|
||||||
#define P9 Ph6
|
|
||||||
#define P10 Pb4
|
|
||||||
#define P11 Pb5
|
|
||||||
#define P12 Pb6
|
|
||||||
#define P13 Pb7
|
|
||||||
|
|
||||||
#define P14 Pj1
|
|
||||||
#define P15 Pj0
|
|
||||||
#define P16 Ph1
|
|
||||||
#define P17 Ph0
|
|
||||||
#define P18 Pd3
|
|
||||||
#define P19 Pd2
|
|
||||||
#define P20 Pd1
|
|
||||||
#define P21 Pd0
|
|
||||||
|
|
||||||
#define P22 Pa0
|
|
||||||
#define P23 Pa1
|
|
||||||
#define P24 Pa2
|
|
||||||
#define P25 Pa3
|
|
||||||
#define P26 Pa4
|
|
||||||
#define P27 Pa5
|
|
||||||
#define P28 Pa6
|
|
||||||
#define P29 Pa7
|
|
||||||
#define P30 Pc7
|
|
||||||
#define P31 Pc6
|
|
||||||
#define P32 Pc5
|
|
||||||
#define P33 Pc4
|
|
||||||
#define P34 Pc3
|
|
||||||
#define P35 Pc2
|
|
||||||
#define P36 Pc1
|
|
||||||
#define P37 Pc0
|
|
||||||
|
|
||||||
#define P38 Pd7
|
|
||||||
#define P39 Pg2
|
|
||||||
#define P40 Pg1
|
|
||||||
#define P41 Pg0
|
|
||||||
#define P42 Pl7
|
|
||||||
#define P43 Pl6
|
|
||||||
#define P44 Pl5
|
|
||||||
#define P45 Pl4
|
|
||||||
#define P46 Pl3
|
|
||||||
#define P47 Pl2
|
|
||||||
#define P48 Pl1
|
|
||||||
#define P49 Pl0
|
|
||||||
#define P50 Pb3
|
|
||||||
#define P51 Pb2
|
|
||||||
#define P52 Pb1
|
|
||||||
#define P53 Pb0
|
|
||||||
#define P54 Pe6 // INT on Arduino ADK
|
|
||||||
|
|
||||||
#endif //"Mega" pin numbers
|
|
||||||
|
|
||||||
#if defined(__AVR_ATmega168__) || defined(__AVR_ATmega328P__)
|
|
||||||
//"Classic" Arduino pin numbers
|
|
||||||
|
|
||||||
#define P0 Pd0
|
|
||||||
#define P1 Pd1
|
|
||||||
#define P2 Pd2
|
|
||||||
#define P3 Pd3
|
|
||||||
#define P4 Pd4
|
|
||||||
#define P5 Pd5
|
|
||||||
#define P6 Pd6
|
|
||||||
#define P7 Pd7
|
|
||||||
|
|
||||||
#define P8 Pb0
|
|
||||||
#define P9 Pb1
|
|
||||||
#define P10 Pb2
|
|
||||||
#define P11 Pb3
|
|
||||||
#define P12 Pb4
|
|
||||||
#define P13 Pb5
|
|
||||||
|
|
||||||
#define P14 Pc0
|
|
||||||
#define P15 Pc1
|
|
||||||
#define P16 Pc2
|
|
||||||
#define P17 Pc3
|
|
||||||
#define P18 Pc4
|
|
||||||
#define P19 Pc5
|
|
||||||
|
|
||||||
#endif // "Classic" Arduino pin numbers
|
|
||||||
|
|
||||||
#if !defined(BOARD_TEENSY) && defined(__AVR_ATmega32U4__)
|
|
||||||
// Arduino Leonardo pin numbers
|
|
||||||
|
|
||||||
#define P0 Pd2 // D0 - PD2
|
|
||||||
#define P1 Pd3 // D1 - PD3
|
|
||||||
#define P2 Pd1 // D2 - PD1
|
|
||||||
#define P3 Pd0 // D3 - PD0
|
|
||||||
#define P4 Pd4 // D4 - PD4
|
|
||||||
#define P5 Pc6 // D5 - PC6
|
|
||||||
#define P6 Pd7 // D6 - PD7
|
|
||||||
#define P7 Pe6 // D7 - PE6
|
|
||||||
|
|
||||||
#define P8 Pb4 // D8 - PB4
|
|
||||||
#define P9 Pb5 // D9 - PB5
|
|
||||||
#define P10 Pb6 // D10 - PB6
|
|
||||||
#define P11 Pb7 // D11 - PB7
|
|
||||||
#define P12 Pd6 // D12 - PD6
|
|
||||||
#define P13 Pc7 // D13 - PC7
|
|
||||||
|
|
||||||
#define P14 Pb3 // D14 - MISO - PB3
|
|
||||||
#define P15 Pb1 // D15 - SCK - PB1
|
|
||||||
#define P16 Pb2 // D16 - MOSI - PB2
|
|
||||||
#define P17 Pb0 // D17 - SS - PB0
|
|
||||||
|
|
||||||
#define P18 Pf7 // D18 - A0 - PF7
|
|
||||||
#define P19 Pf6 // D19 - A1 - PF6
|
|
||||||
#define P20 Pf5 // D20 - A2 - PF5
|
|
||||||
#define P21 Pf4 // D21 - A3 - PF4
|
|
||||||
#define P22 Pf1 // D22 - A4 - PF1
|
|
||||||
#define P23 Pf0 // D23 - A5 - PF0
|
|
||||||
|
|
||||||
#define P24 Pd4 // D24 / D4 - A6 - PD4
|
|
||||||
#define P25 Pd7 // D25 / D6 - A7 - PD7
|
|
||||||
#define P26 Pb4 // D26 / D8 - A8 - PB4
|
|
||||||
#define P27 Pb5 // D27 / D9 - A9 - PB5
|
|
||||||
#define P28 Pb6 // D28 / D10 - A10 - PB6
|
|
||||||
#define P29 Pd6 // D29 / D12 - A11 - PD6
|
|
||||||
|
|
||||||
#endif // Arduino Leonardo pin numbers
|
|
||||||
|
|
||||||
#if defined(BOARD_TEENSY) && defined(__AVR_ATmega32U4__)
|
|
||||||
// Teensy 2.0 pin numbers
|
|
||||||
// http://www.pjrc.com/teensy/pinout.html
|
|
||||||
#define P0 Pb0
|
|
||||||
#define P1 Pb1
|
|
||||||
#define P2 Pb2
|
|
||||||
#define P3 Pb3
|
|
||||||
#define P4 Pb7
|
|
||||||
#define P5 Pd0
|
|
||||||
#define P6 Pd1
|
|
||||||
#define P7 Pd2
|
|
||||||
#define P8 Pd3
|
|
||||||
#define P9 Pc6
|
|
||||||
#define P10 Pc7
|
|
||||||
#define P11 Pd6
|
|
||||||
#define P12 Pd7
|
|
||||||
#define P13 Pb4
|
|
||||||
#define P14 Pb5
|
|
||||||
#define P15 Pb6
|
|
||||||
#define P16 Pf7
|
|
||||||
#define P17 Pf6
|
|
||||||
#define P18 Pf5
|
|
||||||
#define P19 Pf4
|
|
||||||
#define P20 Pf1
|
|
||||||
#define P21 Pf0
|
|
||||||
#define P22 Pd4
|
|
||||||
#define P23 Pd5
|
|
||||||
#define P24 Pe6
|
|
||||||
#endif // Teensy 2.0
|
|
||||||
|
|
||||||
#if defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB1286__)
|
|
||||||
// Teensy++ 2.0 pin numbers
|
|
||||||
// http://www.pjrc.com/teensy/pinout.html
|
|
||||||
#define P0 Pd0
|
|
||||||
#define P1 Pd1
|
|
||||||
#define P2 Pd2
|
|
||||||
#define P3 Pd3
|
|
||||||
#define P4 Pd4
|
|
||||||
#define P5 Pd5
|
|
||||||
#define P6 Pd6
|
|
||||||
#define P7 Pd7
|
|
||||||
#define P8 Pe0
|
|
||||||
#define P9 Pe1
|
|
||||||
#define P10 Pc0
|
|
||||||
#define P11 Pc1
|
|
||||||
#define P12 Pc2
|
|
||||||
#define P13 Pc3
|
|
||||||
#define P14 Pc4
|
|
||||||
#define P15 Pc5
|
|
||||||
#define P16 Pc6
|
|
||||||
#define P17 Pc7
|
|
||||||
#define P18 Pe6
|
|
||||||
#define P19 Pe7
|
|
||||||
#define P20 Pb0
|
|
||||||
#define P21 Pb1
|
|
||||||
#define P22 Pb2
|
|
||||||
#define P23 Pb3
|
|
||||||
#define P24 Pb4
|
|
||||||
#define P25 Pb5
|
|
||||||
#define P26 Pb6
|
|
||||||
#define P27 Pb7
|
|
||||||
#define P28 Pa0
|
|
||||||
#define P29 Pa1
|
|
||||||
#define P30 Pa2
|
|
||||||
#define P31 Pa3
|
|
||||||
#define P32 Pa4
|
|
||||||
#define P33 Pa5
|
|
||||||
#define P34 Pa6
|
|
||||||
#define P35 Pa7
|
|
||||||
#define P36 Pe4
|
|
||||||
#define P37 Pe5
|
|
||||||
#define P38 Pf0
|
|
||||||
#define P39 Pf1
|
|
||||||
#define P40 Pf2
|
|
||||||
#define P41 Pf3
|
|
||||||
#define P42 Pf4
|
|
||||||
#define P43 Pf5
|
|
||||||
#define P44 Pf6
|
|
||||||
#define P45 Pf7
|
|
||||||
#endif // Teensy++ 2.0
|
|
||||||
|
|
||||||
#if defined(__AVR_ATmega644__) || defined(__AVR_ATmega644P__)
|
|
||||||
// Sanguino pin numbers
|
|
||||||
// http://sanguino.cc/hardware
|
|
||||||
#define P0 Pb0
|
|
||||||
#define P1 Pb1
|
|
||||||
#define P2 Pb2
|
|
||||||
#define P3 Pb3
|
|
||||||
#define P4 Pb4
|
|
||||||
#define P5 Pb5
|
|
||||||
#define P6 Pb6
|
|
||||||
#define P7 Pb7
|
|
||||||
#define P8 Pd0
|
|
||||||
#define P9 Pd1
|
|
||||||
#define P10 Pd2
|
|
||||||
#define P11 Pd3
|
|
||||||
#define P12 Pd4
|
|
||||||
#define P13 Pd5
|
|
||||||
#define P14 Pd6
|
|
||||||
#define P15 Pd7
|
|
||||||
#define P16 Pc0
|
|
||||||
#define P17 Pc1
|
|
||||||
#define P18 Pc2
|
|
||||||
#define P19 Pc3
|
|
||||||
#define P20 Pc4
|
|
||||||
#define P21 Pc5
|
|
||||||
#define P22 Pc6
|
|
||||||
#define P23 Pc7
|
|
||||||
#define P24 Pa0
|
|
||||||
#define P25 Pa1
|
|
||||||
#define P26 Pa2
|
|
||||||
#define P27 Pa3
|
|
||||||
#define P28 Pa4
|
|
||||||
#define P29 Pa5
|
|
||||||
#define P30 Pa6
|
|
||||||
#define P31 Pa7
|
|
||||||
#endif // Sanguino
|
|
||||||
|
|
||||||
#endif //_avrpins_h_
|
|
359
cdcacm.cpp
359
cdcacm.cpp
|
@ -1,359 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#include "cdcacm.h"
|
|
||||||
|
|
||||||
const uint8_t ACM::epDataInIndex = 1;
|
|
||||||
const uint8_t ACM::epDataOutIndex = 2;
|
|
||||||
const uint8_t ACM::epInterruptInIndex = 3;
|
|
||||||
|
|
||||||
ACM::ACM(USB *p, CDCAsyncOper *pasync) :
|
|
||||||
pUsb(p),
|
|
||||||
pAsync(pasync),
|
|
||||||
bAddress(0),
|
|
||||||
qNextPollTime(0),
|
|
||||||
bPollEnable(false),
|
|
||||||
bControlIface(0),
|
|
||||||
bDataIface(0),
|
|
||||||
bNumEP(1),
|
|
||||||
ready(false)
|
|
||||||
{
|
|
||||||
for(uint8_t i=0; i<ACM_MAX_ENDPOINTS; i++)
|
|
||||||
{
|
|
||||||
epInfo[i].epAddr = 0;
|
|
||||||
epInfo[i].maxPktSize = (i) ? 0 : 8;
|
|
||||||
epInfo[i].epAttribs = 0;
|
|
||||||
epInfo[i].bmNakPower = USB_NAK_NOWAIT;
|
|
||||||
//epInfo[i].bmNakPower = USB_NAK_MAX_POWER;
|
|
||||||
|
|
||||||
if (!i)
|
|
||||||
epInfo[i].bmNakPower = USB_NAK_MAX_POWER;
|
|
||||||
|
|
||||||
}
|
|
||||||
if (pUsb)
|
|
||||||
pUsb->RegisterDeviceClass(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ACM::Init(uint8_t parent, uint8_t port, bool lowspeed)
|
|
||||||
{
|
|
||||||
const uint8_t constBufSize = sizeof(USB_DEVICE_DESCRIPTOR);
|
|
||||||
|
|
||||||
uint8_t buf[constBufSize];
|
|
||||||
uint8_t rcode;
|
|
||||||
UsbDevice *p = NULL;
|
|
||||||
EpInfo *oldep_ptr = NULL;
|
|
||||||
uint8_t num_of_conf; // number of configurations
|
|
||||||
|
|
||||||
AddressPool &addrPool = pUsb->GetAddressPool();
|
|
||||||
|
|
||||||
USBTRACE("ACM Init\r\n");
|
|
||||||
|
|
||||||
if (bAddress)
|
|
||||||
return USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE;
|
|
||||||
|
|
||||||
// Get pointer to pseudo device with address 0 assigned
|
|
||||||
p = addrPool.GetUsbDevicePtr(0);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
if (!p->epinfo)
|
|
||||||
{
|
|
||||||
USBTRACE("epinfo\r\n");
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save old pointer to EP_RECORD of address 0
|
|
||||||
oldep_ptr = p->epinfo;
|
|
||||||
|
|
||||||
// Temporary assign new pointer to epInfo to p->epinfo in order to avoid toggle inconsistence
|
|
||||||
p->epinfo = epInfo;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Get device descriptor
|
|
||||||
rcode = pUsb->getDevDescr( 0, 0, constBufSize, (uint8_t*)buf );
|
|
||||||
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
if( rcode )
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
|
|
||||||
// Allocate new address according to device class
|
|
||||||
bAddress = addrPool.AllocAddress(parent, false, port);
|
|
||||||
|
|
||||||
if (!bAddress)
|
|
||||||
return USB_ERROR_OUT_OF_ADDRESS_SPACE_IN_POOL;
|
|
||||||
|
|
||||||
// Extract Max Packet Size from the device descriptor
|
|
||||||
epInfo[0].maxPktSize = (uint8_t)((USB_DEVICE_DESCRIPTOR*)buf)->bMaxPacketSize0;
|
|
||||||
|
|
||||||
// Assign new address to the device
|
|
||||||
rcode = pUsb->setAddr( 0, 0, bAddress );
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
p->lowspeed = false;
|
|
||||||
addrPool.FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
USBTRACE2("setAddr:",rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
USBTRACE2("Addr:", bAddress);
|
|
||||||
|
|
||||||
p->lowspeed = false;
|
|
||||||
|
|
||||||
p = addrPool.GetUsbDevicePtr(bAddress);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
num_of_conf = ((USB_DEVICE_DESCRIPTOR*)buf)->bNumConfigurations;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 1, epInfo);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
USBTRACE2("NC:", num_of_conf);
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<num_of_conf; i++)
|
|
||||||
{
|
|
||||||
ConfigDescParser< USB_CLASS_COM_AND_CDC_CTRL,
|
|
||||||
CDC_SUBCLASS_ACM,
|
|
||||||
CDC_PROTOCOL_ITU_T_V_250,
|
|
||||||
CP_MASK_COMPARE_CLASS |
|
|
||||||
CP_MASK_COMPARE_SUBCLASS |
|
|
||||||
CP_MASK_COMPARE_PROTOCOL> CdcControlParser(this);
|
|
||||||
|
|
||||||
ConfigDescParser<USB_CLASS_CDC_DATA, 0, 0,
|
|
||||||
CP_MASK_COMPARE_CLASS> CdcDataParser(this);
|
|
||||||
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, i, &CdcControlParser);
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, i, &CdcDataParser);
|
|
||||||
|
|
||||||
if (bNumEP > 1)
|
|
||||||
break;
|
|
||||||
} // for
|
|
||||||
|
|
||||||
if (bNumEP < 4)
|
|
||||||
return USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, bNumEP, epInfo);
|
|
||||||
|
|
||||||
USBTRACE2("Conf:", bConfNum);
|
|
||||||
|
|
||||||
// Set Configuration Value
|
|
||||||
rcode = pUsb->setConf(bAddress, 0, bConfNum);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetConf;
|
|
||||||
|
|
||||||
rcode = pAsync->OnInit(this);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailOnInit;
|
|
||||||
|
|
||||||
USBTRACE("ACM configured\r\n");
|
|
||||||
ready = true;
|
|
||||||
|
|
||||||
//bPollEnable = true;
|
|
||||||
|
|
||||||
//USBTRACE("Poll enabled\r\n");
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
FailGetDevDescr:
|
|
||||||
USBTRACE("getDevDescr:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetDevTblEntry:
|
|
||||||
USBTRACE("setDevTblEn:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetConfDescr:
|
|
||||||
USBTRACE("getConf:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetConf:
|
|
||||||
USBTRACE("setConf:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailOnInit:
|
|
||||||
USBTRACE("OnInit:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
Fail:
|
|
||||||
Serial.println(rcode, HEX);
|
|
||||||
Release();
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void ACM::EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *pep)
|
|
||||||
{
|
|
||||||
//ErrorMessage<uint8_t>(PSTR("Conf.Val"), conf);
|
|
||||||
//ErrorMessage<uint8_t>(PSTR("Iface Num"),iface);
|
|
||||||
//ErrorMessage<uint8_t>(PSTR("Alt.Set"), alt);
|
|
||||||
|
|
||||||
bConfNum = conf;
|
|
||||||
|
|
||||||
uint8_t index;
|
|
||||||
|
|
||||||
if ((pep->bmAttributes & 0x03) == 3 && (pep->bEndpointAddress & 0x80) == 0x80)
|
|
||||||
index = epInterruptInIndex;
|
|
||||||
else
|
|
||||||
if ((pep->bmAttributes & 0x02) == 2)
|
|
||||||
index = ((pep->bEndpointAddress & 0x80) == 0x80) ? epDataInIndex : epDataOutIndex;
|
|
||||||
else
|
|
||||||
return;
|
|
||||||
|
|
||||||
// Fill in the endpoint info structure
|
|
||||||
epInfo[index].epAddr = (pep->bEndpointAddress & 0x0F);
|
|
||||||
epInfo[index].maxPktSize = (uint8_t)pep->wMaxPacketSize;
|
|
||||||
//epInfo[index].epAttribs = 0;
|
|
||||||
|
|
||||||
bNumEP ++;
|
|
||||||
|
|
||||||
//PrintEndpointDescriptor(pep);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ACM::Release()
|
|
||||||
{
|
|
||||||
pUsb->GetAddressPool().FreeAddress(bAddress);
|
|
||||||
|
|
||||||
bControlIface = 0;
|
|
||||||
bDataIface = 0;
|
|
||||||
bNumEP = 1;
|
|
||||||
|
|
||||||
bAddress = 0;
|
|
||||||
qNextPollTime = 0;
|
|
||||||
bPollEnable = false;
|
|
||||||
ready = false;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ACM::Poll()
|
|
||||||
{
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
|
|
||||||
if (!bPollEnable)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
//uint32_t time_now = millis();
|
|
||||||
|
|
||||||
//if (qNextPollTime <= time_now)
|
|
||||||
//{
|
|
||||||
// qNextPollTime = time_now + 100;
|
|
||||||
|
|
||||||
// uint8_t rcode;
|
|
||||||
// const uint8_t constBufSize = 16;
|
|
||||||
// uint8_t buf[constBufSize];
|
|
||||||
|
|
||||||
// for (uint8_t i=0; i<constBufSize; i++)
|
|
||||||
// buf[i] = 0;
|
|
||||||
|
|
||||||
// uint16_t read = (constBufSize > epInfo[epInterruptInIndex].maxPktSize)
|
|
||||||
// ? epInfo[epInterruptInIndex].maxPktSize : constBufSize;
|
|
||||||
// rcode = pUsb->inTransfer(bAddress, epInfo[epInterruptInIndex].epAddr, &read, buf);
|
|
||||||
|
|
||||||
// if (rcode)
|
|
||||||
// return rcode;
|
|
||||||
|
|
||||||
// for (uint8_t i=0; i<read; i++)
|
|
||||||
// {
|
|
||||||
// PrintHex<uint8_t>(buf[i]);
|
|
||||||
// Serial.print(" ");
|
|
||||||
// }
|
|
||||||
// USBTRACE("\r\n");
|
|
||||||
//}
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ACM::RcvData(uint16_t *bytes_rcvd, uint8_t *dataptr)
|
|
||||||
{
|
|
||||||
return pUsb->inTransfer(bAddress, epInfo[epDataInIndex].epAddr, bytes_rcvd, dataptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ACM::SndData(uint16_t nbytes, uint8_t *dataptr)
|
|
||||||
{
|
|
||||||
return pUsb->outTransfer(bAddress, epInfo[epDataOutIndex].epAddr, nbytes, dataptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* untested */
|
|
||||||
uint8_t ACM::GetNotif( uint16_t *bytes_rcvd, uint8_t *dataptr )
|
|
||||||
{
|
|
||||||
return pUsb->inTransfer(bAddress, epInfo[epInterruptInIndex].epAddr, bytes_rcvd, dataptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ACM::SetCommFeature(uint16_t fid, uint8_t nbytes, uint8_t *dataptr)
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_CDCOUT, CDC_SET_COMM_FEATURE, (fid & 0xff), (fid >> 8), bControlIface, nbytes, nbytes, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ACM::GetCommFeature(uint16_t fid, uint8_t nbytes, uint8_t *dataptr)
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_CDCIN, CDC_GET_COMM_FEATURE, (fid & 0xff), (fid >> 8), bControlIface, nbytes, nbytes, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ACM::ClearCommFeature(uint16_t fid)
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_CDCOUT, CDC_CLEAR_COMM_FEATURE, (fid & 0xff), (fid >> 8), bControlIface, 0, 0, NULL, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ACM::SetLineCoding(const LINE_CODING *dataptr)
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_CDCOUT, CDC_SET_LINE_CODING, 0x00, 0x00, bControlIface, sizeof(LINE_CODING), sizeof(LINE_CODING), (uint8_t*)dataptr, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ACM::GetLineCoding(LINE_CODING *dataptr)
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_CDCIN, CDC_GET_LINE_CODING, 0x00, 0x00, bControlIface, sizeof(LINE_CODING), sizeof(LINE_CODING), (uint8_t*)dataptr, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ACM::SetControlLineState(uint8_t state)
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_CDCOUT, CDC_SET_CONTROL_LINE_STATE, state, 0, bControlIface, 0, 0, NULL, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ACM::SendBreak(uint16_t duration)
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_CDCOUT, CDC_SEND_BREAK, (duration & 0xff), (duration >> 8), bControlIface, 0, 0, NULL, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void ACM::PrintEndpointDescriptor( const USB_ENDPOINT_DESCRIPTOR* ep_ptr )
|
|
||||||
{
|
|
||||||
Notify(PSTR("Endpoint descriptor:"));
|
|
||||||
Notify(PSTR("\r\nLength:\t\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bLength);
|
|
||||||
Notify(PSTR("\r\nType:\t\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bDescriptorType);
|
|
||||||
Notify(PSTR("\r\nAddress:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bEndpointAddress);
|
|
||||||
Notify(PSTR("\r\nAttributes:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bmAttributes);
|
|
||||||
Notify(PSTR("\r\nMaxPktSize:\t"));
|
|
||||||
PrintHex<uint16_t>(ep_ptr->wMaxPacketSize);
|
|
||||||
Notify(PSTR("\r\nPoll Intrv:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bInterval);
|
|
||||||
Notify(PSTR("\r\n"));
|
|
||||||
}
|
|
211
cdcacm.h
211
cdcacm.h
|
@ -1,211 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__CDCACM_H__)
|
|
||||||
#define __CDCACM_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
|
|
||||||
#include "confdescparser.h"
|
|
||||||
|
|
||||||
#define bmREQ_CDCOUT USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
|
|
||||||
#define bmREQ_CDCIN USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
|
|
||||||
|
|
||||||
// CDC Subclass Constants
|
|
||||||
#define CDC_SUBCLASS_DLCM 0x01 // Direct Line Control Model
|
|
||||||
#define CDC_SUBCLASS_ACM 0x02 // Abstract Control Model
|
|
||||||
#define CDC_SUBCLASS_TCM 0x03 // Telephone Control Model
|
|
||||||
#define CDC_SUBCLASS_MCCM 0x04 // Multi Channel Control Model
|
|
||||||
#define CDC_SUBCLASS_CAPI 0x05 // CAPI Control Model
|
|
||||||
#define CDC_SUBCLASS_ETHERNET 0x06 // Ethernet Network Control Model
|
|
||||||
#define CDC_SUBCLASS_ATM 0x07 // ATM Network Control Model
|
|
||||||
#define CDC_SUBCLASS_WIRELESS_HANDSET 0x08 // Wireless Handset Control Model
|
|
||||||
#define CDC_SUBCLASS_DEVICE_MANAGEMENT 0x09 // Device Management
|
|
||||||
#define CDC_SUBCLASS_MOBILE_DIRECT_LINE 0x0A // Mobile Direct Line Model
|
|
||||||
#define CDC_SUBCLASS_OBEX 0x0B // OBEX
|
|
||||||
#define CDC_SUBCLASS_ETHERNET_EMU 0x0C // Ethernet Emulation Model
|
|
||||||
|
|
||||||
// Communication Interface Class Control Protocol Codes
|
|
||||||
#define CDC_PROTOCOL_ITU_T_V_250 0x01 // AT Commands defined by ITU-T V.250
|
|
||||||
#define CDC_PROTOCOL_PCCA_101 0x02 // AT Commands defined by PCCA-101
|
|
||||||
#define CDC_PROTOCOL_PCCA_101_O 0x03 // AT Commands defined by PCCA-101 & Annex O
|
|
||||||
#define CDC_PROTOCOL_GSM_7_07 0x04 // AT Commands defined by GSM 7.07
|
|
||||||
#define CDC_PROTOCOL_3GPP_27_07 0x05 // AT Commands defined by 3GPP 27.007
|
|
||||||
#define CDC_PROTOCOL_C_S0017_0 0x06 // AT Commands defined by TIA for CDMA
|
|
||||||
#define CDC_PROTOCOL_USB_EEM 0x07 // Ethernet Emulation Model
|
|
||||||
|
|
||||||
// CDC Commands defined by CDC 1.2
|
|
||||||
#define CDC_SEND_ENCAPSULATED_COMMAND 0x00
|
|
||||||
#define CDC_GET_ENCAPSULATED_RESPONSE 0x01
|
|
||||||
|
|
||||||
// CDC Commands defined by PSTN 1.2
|
|
||||||
#define CDC_SET_COMM_FEATURE 0x02
|
|
||||||
#define CDC_GET_COMM_FEATURE 0x03
|
|
||||||
#define CDC_CLEAR_COMM_FEATURE 0x04
|
|
||||||
#define CDC_SET_AUX_LINE_STATE 0x10
|
|
||||||
#define CDC_SET_HOOK_STATE 0x11
|
|
||||||
#define CDC_PULSE_SETUP 0x12
|
|
||||||
#define CDC_SEND_PULSE 0x13
|
|
||||||
#define CDC_SET_PULSE_TIME 0x14
|
|
||||||
#define CDC_RING_AUX_JACK 0x15
|
|
||||||
#define CDC_SET_LINE_CODING 0x20
|
|
||||||
#define CDC_GET_LINE_CODING 0x21
|
|
||||||
#define CDC_SET_CONTROL_LINE_STATE 0x22
|
|
||||||
#define CDC_SEND_BREAK 0x23
|
|
||||||
#define CDC_SET_RINGER_PARMS 0x30
|
|
||||||
#define CDC_GET_RINGER_PARMS 0x31
|
|
||||||
#define CDC_SET_OPERATION_PARMS 0x32
|
|
||||||
#define CDC_GET_OPERATION_PARMS 0x33
|
|
||||||
#define CDC_SET_LINE_PARMS 0x34
|
|
||||||
#define CDC_GET_LINE_PARMS 0x35
|
|
||||||
#define CDC_DIAL_DIGITS 0x36
|
|
||||||
|
|
||||||
//Class-Specific Notification Codes
|
|
||||||
#define NETWORK_CONNECTION 0x00
|
|
||||||
#define RESPONSE_AVAILABLE 0x01
|
|
||||||
#define AUX_JACK_HOOK_STATE 0x08
|
|
||||||
#define RING_DETECT 0x09
|
|
||||||
#define SERIAL_STATE 0x20
|
|
||||||
#define CALL_STATE_CHANGE 0x28
|
|
||||||
#define LINE_STATE_CHANGE 0x29
|
|
||||||
#define CONNECTION_SPEED_CHANGE 0x2a
|
|
||||||
|
|
||||||
|
|
||||||
// CDC Functional Descriptor Structures
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
uint8_t bFunctionLength;
|
|
||||||
uint8_t bDescriptorType;
|
|
||||||
uint8_t bDescriptorSubtype;
|
|
||||||
uint8_t bmCapabilities;
|
|
||||||
uint8_t bDataInterface;
|
|
||||||
} CALL_MGMNT_FUNC_DESCR;
|
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
uint8_t bFunctionLength;
|
|
||||||
uint8_t bDescriptorType;
|
|
||||||
uint8_t bDescriptorSubtype;
|
|
||||||
uint8_t bmCapabilities;
|
|
||||||
} ACM_FUNC_DESCR, DLM_FUNC_DESCR, TEL_OPER_MODES_FUNC_DESCR,
|
|
||||||
TEL_CALL_STATE_REP_CPBL_FUNC_DESCR;
|
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
uint8_t bFunctionLength;
|
|
||||||
uint8_t bDescriptorType;
|
|
||||||
uint8_t bDescriptorSubtype;
|
|
||||||
uint8_t bRingerVolSteps;
|
|
||||||
uint8_t bNumRingerPatterns;
|
|
||||||
} TEL_RINGER_FUNC_DESCR;
|
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
uint32_t dwDTERate; // Data Terminal Rate in bits per second
|
|
||||||
uint8_t bCharFormat; // 0 - 1 stop bit, 1 - 1.5 stop bits, 2 - 2 stop bits
|
|
||||||
uint8_t bParityType; // 0 - None, 1 - Odd, 2 - Even, 3 - Mark, 4 - Space
|
|
||||||
uint8_t bDataBits; // Data bits (5, 6, 7, 8 or 16)
|
|
||||||
} LINE_CODING;
|
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
uint8_t bmRequestType; // 0xa1 for class-specific notifications
|
|
||||||
uint8_t bNotification;
|
|
||||||
uint16_t wValue;
|
|
||||||
uint16_t wIndex;
|
|
||||||
uint16_t wLength;
|
|
||||||
uint16_t bmState; //UART state bitmap for SERIAL_STATE, other notifications variable length
|
|
||||||
} CLASS_NOTIFICATION;
|
|
||||||
|
|
||||||
class ACM;
|
|
||||||
|
|
||||||
class CDCAsyncOper
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual uint8_t OnInit(ACM *pacm) = 0;
|
|
||||||
//virtual void OnDataRcvd(ACM *pacm, uint8_t nbytes, uint8_t *dataptr) = 0;
|
|
||||||
//virtual void OnDisconnected(ACM *pacm) = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#define ACM_MAX_ENDPOINTS 4
|
|
||||||
|
|
||||||
class ACM : public USBDeviceConfig, public UsbConfigXtracter
|
|
||||||
{
|
|
||||||
protected:
|
|
||||||
static const uint8_t epDataInIndex; // DataIn endpoint index
|
|
||||||
static const uint8_t epDataOutIndex; // DataOUT endpoint index
|
|
||||||
static const uint8_t epInterruptInIndex; // InterruptIN endpoint index
|
|
||||||
|
|
||||||
USB *pUsb;
|
|
||||||
CDCAsyncOper *pAsync;
|
|
||||||
uint8_t bAddress;
|
|
||||||
uint8_t bConfNum; // configuration number
|
|
||||||
uint8_t bControlIface; // Control interface value
|
|
||||||
uint8_t bDataIface; // Data interface value
|
|
||||||
uint8_t bNumEP; // total number of EP in the configuration
|
|
||||||
uint32_t qNextPollTime; // next poll time
|
|
||||||
bool bPollEnable; // poll enable flag
|
|
||||||
bool ready; //device ready indicator
|
|
||||||
|
|
||||||
EpInfo epInfo[ACM_MAX_ENDPOINTS];
|
|
||||||
|
|
||||||
void PrintEndpointDescriptor(const USB_ENDPOINT_DESCRIPTOR* ep_ptr);
|
|
||||||
|
|
||||||
public:
|
|
||||||
ACM(USB *pusb, CDCAsyncOper *pasync);
|
|
||||||
|
|
||||||
uint8_t SetCommFeature(uint16_t fid, uint8_t nbytes, uint8_t *dataptr);
|
|
||||||
uint8_t GetCommFeature(uint16_t fid, uint8_t nbytes, uint8_t *dataptr);
|
|
||||||
uint8_t ClearCommFeature(uint16_t fid);
|
|
||||||
uint8_t SetLineCoding(const LINE_CODING *dataptr);
|
|
||||||
uint8_t GetLineCoding(LINE_CODING *dataptr);
|
|
||||||
uint8_t SetControlLineState(uint8_t state);
|
|
||||||
uint8_t SendBreak(uint16_t duration);
|
|
||||||
uint8_t GetNotif( uint16_t *bytes_rcvd, uint8_t *dataptr );
|
|
||||||
|
|
||||||
// Methods for recieving and sending data
|
|
||||||
uint8_t RcvData(uint16_t *nbytesptr, uint8_t *dataptr);
|
|
||||||
uint8_t SndData(uint16_t nbytes, uint8_t *dataptr);
|
|
||||||
|
|
||||||
// USBDeviceConfig implementation
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
virtual uint8_t Release();
|
|
||||||
virtual uint8_t Poll();
|
|
||||||
virtual uint8_t GetAddress() { return bAddress; };
|
|
||||||
virtual bool isReady() { return ready; };
|
|
||||||
|
|
||||||
// UsbConfigXtracter implementation
|
|
||||||
virtual void EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *ep);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // __CDCACM_H__
|
|
348
cdcftdi.cpp
348
cdcftdi.cpp
|
@ -1,348 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#include "cdcftdi.h"
|
|
||||||
|
|
||||||
const uint8_t FTDI::epDataInIndex = 1;
|
|
||||||
const uint8_t FTDI::epDataOutIndex = 2;
|
|
||||||
const uint8_t FTDI::epInterruptInIndex = 3;
|
|
||||||
|
|
||||||
FTDI::FTDI(USB *p, FTDIAsyncOper *pasync) :
|
|
||||||
pAsync(pasync),
|
|
||||||
pUsb(p),
|
|
||||||
bAddress(0),
|
|
||||||
bNumEP(1),
|
|
||||||
wFTDIType(0)
|
|
||||||
{
|
|
||||||
for(uint8_t i=0; i<FTDI_MAX_ENDPOINTS; i++)
|
|
||||||
{
|
|
||||||
epInfo[i].epAddr = 0;
|
|
||||||
epInfo[i].maxPktSize = (i) ? 0 : 8;
|
|
||||||
epInfo[i].epAttribs = 0;
|
|
||||||
|
|
||||||
//if (!i)
|
|
||||||
epInfo[i].bmNakPower = USB_NAK_MAX_POWER;
|
|
||||||
}
|
|
||||||
if (pUsb)
|
|
||||||
pUsb->RegisterDeviceClass(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t FTDI::Init(uint8_t parent, uint8_t port, bool lowspeed)
|
|
||||||
{
|
|
||||||
const uint8_t constBufSize = sizeof(USB_DEVICE_DESCRIPTOR);
|
|
||||||
|
|
||||||
uint8_t buf[constBufSize];
|
|
||||||
uint8_t rcode;
|
|
||||||
UsbDevice *p = NULL;
|
|
||||||
EpInfo *oldep_ptr = NULL;
|
|
||||||
uint8_t len = 0;
|
|
||||||
uint16_t cd_len = 0;
|
|
||||||
|
|
||||||
uint8_t num_of_conf; // number of configurations
|
|
||||||
uint8_t num_of_intf; // number of interfaces
|
|
||||||
|
|
||||||
AddressPool &addrPool = pUsb->GetAddressPool();
|
|
||||||
|
|
||||||
USBTRACE("FTDI Init\r\n");
|
|
||||||
|
|
||||||
if (bAddress)
|
|
||||||
return USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE;
|
|
||||||
|
|
||||||
// Get pointer to pseudo device with address 0 assigned
|
|
||||||
p = addrPool.GetUsbDevicePtr(0);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
if (!p->epinfo)
|
|
||||||
{
|
|
||||||
USBTRACE("epinfo\r\n");
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save old pointer to EP_RECORD of address 0
|
|
||||||
oldep_ptr = p->epinfo;
|
|
||||||
|
|
||||||
// Temporary assign new pointer to epInfo to p->epinfo in order to avoid toggle inconsistence
|
|
||||||
p->epinfo = epInfo;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Get device descriptor
|
|
||||||
rcode = pUsb->getDevDescr( 0, 0, sizeof(USB_DEVICE_DESCRIPTOR), (uint8_t*)buf );
|
|
||||||
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
if( rcode )
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
|
|
||||||
if (((USB_DEVICE_DESCRIPTOR*)buf)->idVendor != FTDI_VID || ((USB_DEVICE_DESCRIPTOR*)buf)->idProduct != FTDI_PID)
|
|
||||||
return USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED;
|
|
||||||
|
|
||||||
// Save type of FTDI chip
|
|
||||||
wFTDIType = ((USB_DEVICE_DESCRIPTOR*)buf)->bcdDevice;
|
|
||||||
|
|
||||||
// Allocate new address according to device class
|
|
||||||
bAddress = addrPool.AllocAddress(parent, false, port);
|
|
||||||
|
|
||||||
if (!bAddress)
|
|
||||||
return USB_ERROR_OUT_OF_ADDRESS_SPACE_IN_POOL;
|
|
||||||
|
|
||||||
// Extract Max Packet Size from the device descriptor
|
|
||||||
epInfo[0].maxPktSize = (uint8_t)((USB_DEVICE_DESCRIPTOR*)buf)->bMaxPacketSize0;
|
|
||||||
|
|
||||||
// Assign new address to the device
|
|
||||||
rcode = pUsb->setAddr( 0, 0, bAddress );
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
p->lowspeed = false;
|
|
||||||
addrPool.FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
USBTRACE2("setAddr:",rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
USBTRACE2("Addr:", bAddress);
|
|
||||||
|
|
||||||
p->lowspeed = false;
|
|
||||||
|
|
||||||
p = addrPool.GetUsbDevicePtr(bAddress);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
num_of_conf = ((USB_DEVICE_DESCRIPTOR*)buf)->bNumConfigurations;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 1, epInfo);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
USBTRACE2("NC:", num_of_conf);
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<num_of_conf; i++)
|
|
||||||
{
|
|
||||||
HexDumper<USBReadParser, uint16_t, uint16_t> HexDump;
|
|
||||||
ConfigDescParser<0xFF, 0xFF, 0xFF, CP_MASK_COMPARE_ALL> confDescrParser(this);
|
|
||||||
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, i, &HexDump);
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, i, &confDescrParser);
|
|
||||||
|
|
||||||
if (bNumEP > 1)
|
|
||||||
break;
|
|
||||||
} // for
|
|
||||||
|
|
||||||
if (bNumEP < 2)
|
|
||||||
return USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED;
|
|
||||||
|
|
||||||
USBTRACE2("NumEP:", bNumEP);
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, bNumEP, epInfo);
|
|
||||||
|
|
||||||
USBTRACE2("Conf:", bConfNum);
|
|
||||||
|
|
||||||
// Set Configuration Value
|
|
||||||
rcode = pUsb->setConf(bAddress, 0, bConfNum);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetConfDescr;
|
|
||||||
|
|
||||||
rcode = pAsync->OnInit(this);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailOnInit;
|
|
||||||
|
|
||||||
USBTRACE("FTDI configured\r\n");
|
|
||||||
|
|
||||||
bPollEnable = true;
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
FailGetDevDescr:
|
|
||||||
USBTRACE("getDevDescr:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetDevTblEntry:
|
|
||||||
USBTRACE("setDevTblEn:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetConfDescr:
|
|
||||||
USBTRACE("getConf:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetConfDescr:
|
|
||||||
USBTRACE("setConf:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetBaudRate:
|
|
||||||
USBTRACE("SetBaudRate:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetFlowControl:
|
|
||||||
USBTRACE("SetFlowControl:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailOnInit:
|
|
||||||
USBTRACE("OnInit:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
Fail:
|
|
||||||
Serial.println(rcode, HEX);
|
|
||||||
Release();
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void FTDI::EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *pep)
|
|
||||||
{
|
|
||||||
ErrorMessage<uint8_t>(PSTR("Conf.Val"), conf);
|
|
||||||
ErrorMessage<uint8_t>(PSTR("Iface Num"),iface);
|
|
||||||
ErrorMessage<uint8_t>(PSTR("Alt.Set"), alt);
|
|
||||||
|
|
||||||
bConfNum = conf;
|
|
||||||
|
|
||||||
uint8_t index;
|
|
||||||
|
|
||||||
if ((pep->bmAttributes & 0x03) == 3 && (pep->bEndpointAddress & 0x80) == 0x80)
|
|
||||||
index = epInterruptInIndex;
|
|
||||||
else
|
|
||||||
if ((pep->bmAttributes & 0x02) == 2)
|
|
||||||
index = ((pep->bEndpointAddress & 0x80) == 0x80) ? epDataInIndex : epDataOutIndex;
|
|
||||||
else
|
|
||||||
return;
|
|
||||||
|
|
||||||
// Fill in the endpoint info structure
|
|
||||||
epInfo[index].epAddr = (pep->bEndpointAddress & 0x0F);
|
|
||||||
epInfo[index].maxPktSize = (uint8_t)pep->wMaxPacketSize;
|
|
||||||
//epInfo[index].epAttribs = 0;
|
|
||||||
|
|
||||||
bNumEP ++;
|
|
||||||
|
|
||||||
PrintEndpointDescriptor(pep);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t FTDI::Release()
|
|
||||||
{
|
|
||||||
pUsb->GetAddressPool().FreeAddress(bAddress);
|
|
||||||
|
|
||||||
bAddress = 0;
|
|
||||||
bNumEP = 1;
|
|
||||||
qNextPollTime = 0;
|
|
||||||
bPollEnable = false;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t FTDI::Poll()
|
|
||||||
{
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
|
|
||||||
//if (!bPollEnable)
|
|
||||||
// return 0;
|
|
||||||
|
|
||||||
//if (qNextPollTime <= millis())
|
|
||||||
//{
|
|
||||||
// Serial.println(bAddress, HEX);
|
|
||||||
|
|
||||||
// qNextPollTime = millis() + 100;
|
|
||||||
//}
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t FTDI::SetBaudRate(uint32_t baud)
|
|
||||||
{
|
|
||||||
uint16_t baud_value, baud_index = 0;
|
|
||||||
uint32_t divisor3;
|
|
||||||
|
|
||||||
divisor3 = 48000000 / 2 / baud; // divisor shifted 3 bits to the left
|
|
||||||
|
|
||||||
if (wFTDIType == FT232AM)
|
|
||||||
{
|
|
||||||
if ((divisor3 & 0x7) == 7)
|
|
||||||
divisor3 ++; // round x.7/8 up to x+1
|
|
||||||
|
|
||||||
baud_value = divisor3 >> 3;
|
|
||||||
divisor3 &= 0x7;
|
|
||||||
|
|
||||||
if (divisor3 == 1) baud_value |= 0xc000; else // 0.125
|
|
||||||
if (divisor3 >= 4) baud_value |= 0x4000; else // 0.5
|
|
||||||
if (divisor3 != 0) baud_value |= 0x8000; // 0.25
|
|
||||||
if (baud_value == 1) baud_value = 0; /* special case for maximum baud rate */
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
static const unsigned char divfrac [8] = { 0, 3, 2, 0, 1, 1, 2, 3 };
|
|
||||||
static const unsigned char divindex[8] = { 0, 0, 0, 1, 0, 1, 1, 1 };
|
|
||||||
|
|
||||||
baud_value = divisor3 >> 3;
|
|
||||||
baud_value |= divfrac [divisor3 & 0x7] << 14;
|
|
||||||
baud_index = divindex[divisor3 & 0x7];
|
|
||||||
|
|
||||||
/* Deal with special cases for highest baud rates. */
|
|
||||||
if (baud_value == 1) baud_value = 0; else // 1.0
|
|
||||||
if (baud_value == 0x4001) baud_value = 1; // 1.5
|
|
||||||
}
|
|
||||||
USBTRACE2("baud_value:", baud_value);
|
|
||||||
USBTRACE2("baud_index:", baud_index);
|
|
||||||
return pUsb->ctrlReq(bAddress, 0, bmREQ_FTDI_OUT, FTDI_SIO_SET_BAUD_RATE, baud_value & 0xff, baud_value >> 8, baud_index, 0, 0, NULL, NULL );
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t FTDI::SetModemControl(uint16_t signal)
|
|
||||||
{
|
|
||||||
return pUsb->ctrlReq(bAddress, 0, bmREQ_FTDI_OUT, FTDI_SIO_MODEM_CTRL, signal & 0xff, signal >> 8, 0, 0, 0, NULL, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t FTDI::SetFlowControl(uint8_t protocol, uint8_t xon, uint8_t xoff)
|
|
||||||
{
|
|
||||||
return pUsb->ctrlReq(bAddress, 0, bmREQ_FTDI_OUT, FTDI_SIO_SET_FLOW_CTRL, xon, xoff, protocol << 8, 0, 0, NULL, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t FTDI::SetData(uint16_t databm)
|
|
||||||
{
|
|
||||||
return pUsb->ctrlReq(bAddress, 0, bmREQ_FTDI_OUT, FTDI_SIO_SET_DATA, databm & 0xff, databm >> 8, 0, 0, 0, NULL, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t FTDI::RcvData(uint16_t *bytes_rcvd, uint8_t *dataptr)
|
|
||||||
{
|
|
||||||
return pUsb->inTransfer(bAddress, epInfo[epDataInIndex].epAddr, bytes_rcvd, dataptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t FTDI::SndData(uint16_t nbytes, uint8_t *dataptr)
|
|
||||||
{
|
|
||||||
return pUsb->outTransfer(bAddress, epInfo[epDataOutIndex].epAddr, nbytes, dataptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
void FTDI::PrintEndpointDescriptor( const USB_ENDPOINT_DESCRIPTOR* ep_ptr )
|
|
||||||
{
|
|
||||||
Notify(PSTR("Endpoint descriptor:"));
|
|
||||||
Notify(PSTR("\r\nLength:\t\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bLength);
|
|
||||||
Notify(PSTR("\r\nType:\t\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bDescriptorType);
|
|
||||||
Notify(PSTR("\r\nAddress:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bEndpointAddress);
|
|
||||||
Notify(PSTR("\r\nAttributes:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bmAttributes);
|
|
||||||
Notify(PSTR("\r\nMaxPktSize:\t"));
|
|
||||||
PrintHex<uint16_t>(ep_ptr->wMaxPacketSize);
|
|
||||||
Notify(PSTR("\r\nPoll Intrv:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bInterval);
|
|
||||||
Notify(PSTR("\r\n"));
|
|
||||||
}
|
|
150
cdcftdi.h
150
cdcftdi.h
|
@ -1,150 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__CDCFTDI_H__)
|
|
||||||
#define __CDCFTDI_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
|
|
||||||
#include "confdescparser.h"
|
|
||||||
|
|
||||||
#define bmREQ_FTDI_OUT 0x40
|
|
||||||
#define bmREQ_FTDI_IN 0xc0
|
|
||||||
|
|
||||||
//#define bmREQ_FTDI_OUT USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
|
|
||||||
//#define bmREQ_FTDI_IN USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
|
|
||||||
|
|
||||||
#define FTDI_VID 0x0403 // FTDI VID
|
|
||||||
#define FTDI_PID 0x6001 // FTDI PID
|
|
||||||
|
|
||||||
#define FT232AM 0x0200
|
|
||||||
#define FT232BM 0x0400
|
|
||||||
#define FT2232 0x0500
|
|
||||||
#define FT232R 0x0600
|
|
||||||
|
|
||||||
// Commands
|
|
||||||
#define FTDI_SIO_RESET 0 /* Reset the port */
|
|
||||||
#define FTDI_SIO_MODEM_CTRL 1 /* Set the modem control register */
|
|
||||||
#define FTDI_SIO_SET_FLOW_CTRL 2 /* Set flow control register */
|
|
||||||
#define FTDI_SIO_SET_BAUD_RATE 3 /* Set baud rate */
|
|
||||||
#define FTDI_SIO_SET_DATA 4 /* Set the data characteristics of the port */
|
|
||||||
#define FTDI_SIO_GET_MODEM_STATUS 5 /* Retrieve current value of modem status register */
|
|
||||||
#define FTDI_SIO_SET_EVENT_CHAR 6 /* Set the event character */
|
|
||||||
#define FTDI_SIO_SET_ERROR_CHAR 7 /* Set the error character */
|
|
||||||
|
|
||||||
#define FTDI_SIO_RESET_SIO 0
|
|
||||||
#define FTDI_SIO_RESET_PURGE_RX 1
|
|
||||||
#define FTDI_SIO_RESET_PURGE_TX 2
|
|
||||||
|
|
||||||
#define FTDI_SIO_SET_DATA_PARITY_NONE (0x0 << 8 )
|
|
||||||
#define FTDI_SIO_SET_DATA_PARITY_ODD (0x1 << 8 )
|
|
||||||
#define FTDI_SIO_SET_DATA_PARITY_EVEN (0x2 << 8 )
|
|
||||||
#define FTDI_SIO_SET_DATA_PARITY_MARK (0x3 << 8 )
|
|
||||||
#define FTDI_SIO_SET_DATA_PARITY_SPACE (0x4 << 8 )
|
|
||||||
#define FTDI_SIO_SET_DATA_STOP_BITS_1 (0x0 << 11)
|
|
||||||
#define FTDI_SIO_SET_DATA_STOP_BITS_15 (0x1 << 11)
|
|
||||||
#define FTDI_SIO_SET_DATA_STOP_BITS_2 (0x2 << 11)
|
|
||||||
#define FTDI_SIO_SET_BREAK (0x1 << 14)
|
|
||||||
|
|
||||||
#define FTDI_SIO_SET_DTR_MASK 0x1
|
|
||||||
#define FTDI_SIO_SET_DTR_HIGH ( 1 | ( FTDI_SIO_SET_DTR_MASK << 8))
|
|
||||||
#define FTDI_SIO_SET_DTR_LOW ( 0 | ( FTDI_SIO_SET_DTR_MASK << 8))
|
|
||||||
#define FTDI_SIO_SET_RTS_MASK 0x2
|
|
||||||
#define FTDI_SIO_SET_RTS_HIGH ( 2 | ( FTDI_SIO_SET_RTS_MASK << 8 ))
|
|
||||||
#define FTDI_SIO_SET_RTS_LOW ( 0 | ( FTDI_SIO_SET_RTS_MASK << 8 ))
|
|
||||||
|
|
||||||
#define FTDI_SIO_DISABLE_FLOW_CTRL 0x0
|
|
||||||
#define FTDI_SIO_RTS_CTS_HS (0x1 << 8)
|
|
||||||
#define FTDI_SIO_DTR_DSR_HS (0x2 << 8)
|
|
||||||
#define FTDI_SIO_XON_XOFF_HS (0x4 << 8)
|
|
||||||
|
|
||||||
#define FTDI_SIO_CTS_MASK 0x10
|
|
||||||
#define FTDI_SIO_DSR_MASK 0x20
|
|
||||||
#define FTDI_SIO_RI_MASK 0x40
|
|
||||||
#define FTDI_SIO_RLSD_MASK 0x80
|
|
||||||
|
|
||||||
class FTDI;
|
|
||||||
|
|
||||||
class FTDIAsyncOper
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual uint8_t OnInit(FTDI *pftdi) = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
// Only single port chips are currently supported by the library,
|
|
||||||
// so only three endpoints are allocated.
|
|
||||||
#define FTDI_MAX_ENDPOINTS 3
|
|
||||||
|
|
||||||
class FTDI : public USBDeviceConfig, public UsbConfigXtracter
|
|
||||||
{
|
|
||||||
static const uint8_t epDataInIndex; // DataIn endpoint index
|
|
||||||
static const uint8_t epDataOutIndex; // DataOUT endpoint index
|
|
||||||
static const uint8_t epInterruptInIndex; // InterruptIN endpoint index
|
|
||||||
|
|
||||||
FTDIAsyncOper *pAsync;
|
|
||||||
USB *pUsb;
|
|
||||||
uint8_t bAddress;
|
|
||||||
uint8_t bConfNum; // configuration number
|
|
||||||
uint8_t bNumIface; // number of interfaces in the configuration
|
|
||||||
uint8_t bNumEP; // total number of EP in the configuration
|
|
||||||
uint32_t qNextPollTime; // next poll time
|
|
||||||
bool bPollEnable; // poll enable flag
|
|
||||||
uint16_t wFTDIType; // Type of FTDI chip
|
|
||||||
|
|
||||||
EpInfo epInfo[FTDI_MAX_ENDPOINTS];
|
|
||||||
|
|
||||||
void PrintEndpointDescriptor(const USB_ENDPOINT_DESCRIPTOR* ep_ptr);
|
|
||||||
|
|
||||||
public:
|
|
||||||
FTDI(USB *pusb, FTDIAsyncOper *pasync);
|
|
||||||
|
|
||||||
uint8_t SetBaudRate(uint32_t baud);
|
|
||||||
uint8_t SetModemControl(uint16_t control);
|
|
||||||
uint8_t SetFlowControl(uint8_t protocol, uint8_t xon = 0x11, uint8_t xoff = 0x13);
|
|
||||||
uint8_t SetData(uint16_t databm);
|
|
||||||
|
|
||||||
// Methods for recieving and sending data
|
|
||||||
uint8_t RcvData(uint16_t *bytes_rcvd, uint8_t *dataptr);
|
|
||||||
uint8_t SndData(uint16_t nbytes, uint8_t *dataptr);
|
|
||||||
|
|
||||||
// USBDeviceConfig implementation
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
virtual uint8_t Release();
|
|
||||||
virtual uint8_t Poll();
|
|
||||||
virtual uint8_t GetAddress() { return bAddress; };
|
|
||||||
|
|
||||||
// UsbConfigXtracter implementation
|
|
||||||
virtual void EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *ep);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // __CDCFTDI_H__
|
|
243
cdcprolific.cpp
243
cdcprolific.cpp
|
@ -1,243 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#include "cdcprolific.h"
|
|
||||||
|
|
||||||
PL2303::PL2303(USB *p, CDCAsyncOper *pasync) :
|
|
||||||
ACM(p, pasync)
|
|
||||||
//wPLType(0)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t PL2303::Init(uint8_t parent, uint8_t port, bool lowspeed)
|
|
||||||
{
|
|
||||||
const uint8_t constBufSize = sizeof(USB_DEVICE_DESCRIPTOR);
|
|
||||||
|
|
||||||
uint8_t buf[constBufSize];
|
|
||||||
uint8_t rcode;
|
|
||||||
UsbDevice *p = NULL;
|
|
||||||
EpInfo *oldep_ptr = NULL;
|
|
||||||
uint8_t num_of_conf; // number of configurations
|
|
||||||
enum pl2303_type pltype = unknown;
|
|
||||||
|
|
||||||
AddressPool &addrPool = pUsb->GetAddressPool();
|
|
||||||
|
|
||||||
USBTRACE("PL Init\r\n");
|
|
||||||
|
|
||||||
if (bAddress)
|
|
||||||
return USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE;
|
|
||||||
|
|
||||||
// Get pointer to pseudo device with address 0 assigned
|
|
||||||
p = addrPool.GetUsbDevicePtr(0);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
if (!p->epinfo)
|
|
||||||
{
|
|
||||||
USBTRACE("epinfo\r\n");
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save old pointer to EP_RECORD of address 0
|
|
||||||
oldep_ptr = p->epinfo;
|
|
||||||
|
|
||||||
// Temporary assign new pointer to epInfo to p->epinfo in order to avoid toggle inconsistence
|
|
||||||
p->epinfo = epInfo;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Get device descriptor
|
|
||||||
rcode = pUsb->getDevDescr( 0, 0, sizeof(USB_DEVICE_DESCRIPTOR), (uint8_t*)buf );
|
|
||||||
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
if( rcode )
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
|
|
||||||
if (((USB_DEVICE_DESCRIPTOR*)buf)->idVendor != PL_VID && ((USB_DEVICE_DESCRIPTOR*)buf)->idProduct != PL_PID ) {
|
|
||||||
return USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* determine chip variant */
|
|
||||||
|
|
||||||
if (((USB_DEVICE_DESCRIPTOR*)buf)->bDeviceClass == 0x02 ) {
|
|
||||||
pltype = type_0;
|
|
||||||
}
|
|
||||||
else if (((USB_DEVICE_DESCRIPTOR*)buf)->bMaxPacketSize0 == 0x40 ) {
|
|
||||||
pltype = rev_HX;
|
|
||||||
}
|
|
||||||
else if (((USB_DEVICE_DESCRIPTOR*)buf)->bDeviceClass == 0x00) {
|
|
||||||
pltype = type_1;
|
|
||||||
}
|
|
||||||
else if (((USB_DEVICE_DESCRIPTOR*)buf)->bDeviceClass == 0xff) {
|
|
||||||
pltype = type_1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Allocate new address according to device class
|
|
||||||
bAddress = addrPool.AllocAddress(parent, false, port);
|
|
||||||
|
|
||||||
if (!bAddress)
|
|
||||||
return USB_ERROR_OUT_OF_ADDRESS_SPACE_IN_POOL;
|
|
||||||
|
|
||||||
// Extract Max Packet Size from the device descriptor
|
|
||||||
epInfo[0].maxPktSize = (uint8_t)((USB_DEVICE_DESCRIPTOR*)buf)->bMaxPacketSize0;
|
|
||||||
|
|
||||||
// Assign new address to the device
|
|
||||||
rcode = pUsb->setAddr( 0, 0, bAddress );
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
p->lowspeed = false;
|
|
||||||
addrPool.FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
USBTRACE2("setAddr:",rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
USBTRACE2("Addr:", bAddress);
|
|
||||||
|
|
||||||
p->lowspeed = false;
|
|
||||||
|
|
||||||
p = addrPool.GetUsbDevicePtr(bAddress);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
num_of_conf = ((USB_DEVICE_DESCRIPTOR*)buf)->bNumConfigurations;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 1, epInfo);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
USBTRACE2("NC:", num_of_conf);
|
|
||||||
|
|
||||||
for( uint8_t i=0; i<num_of_conf; i++ )
|
|
||||||
{
|
|
||||||
//HexDumper<USBReadParser, uint16_t, uint16_t> HexDump;
|
|
||||||
ConfigDescParser<0xFF, 0, 0, CP_MASK_COMPARE_CLASS> confDescrParser(this);
|
|
||||||
|
|
||||||
//rcode = pUsb->getConfDescr(bAddress, 0, i, &HexDump);
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, i, &confDescrParser);
|
|
||||||
|
|
||||||
if (bNumEP > 1)
|
|
||||||
break;
|
|
||||||
} // for
|
|
||||||
|
|
||||||
if ( bNumEP < 2 )
|
|
||||||
return USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry( bAddress, bNumEP, epInfo );
|
|
||||||
|
|
||||||
USBTRACE2("Conf:", bConfNum);
|
|
||||||
|
|
||||||
// Set Configuration Value
|
|
||||||
rcode = pUsb->setConf(bAddress, 0, bConfNum);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetConfDescr;
|
|
||||||
|
|
||||||
#if defined(PL2303_COMPAT)
|
|
||||||
/* shamanic dance - sending Prolific init data as-is */
|
|
||||||
vendorRead( 0x84, 0x84, 0, buf );
|
|
||||||
vendorWrite( 0x04, 0x04, 0 );
|
|
||||||
vendorRead( 0x84, 0x84, 0, buf );
|
|
||||||
vendorRead( 0x83, 0x83, 0, buf );
|
|
||||||
vendorRead( 0x84, 0x84, 0, buf );
|
|
||||||
vendorWrite( 0x04, 0x04, 1 );
|
|
||||||
vendorRead( 0x84, 0x84, 0, buf);
|
|
||||||
vendorRead( 0x83, 0x83, 0, buf);
|
|
||||||
vendorWrite( 0, 0, 1 );
|
|
||||||
vendorWrite( 1, 0, 0 );
|
|
||||||
if ( pltype == rev_HX ) {
|
|
||||||
vendorWrite( 2, 0, 0x44 );
|
|
||||||
vendorWrite( 0x06, 0x06, 0 ); //from W7 init
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
vendorWrite( 2, 0, 0x24 );
|
|
||||||
}
|
|
||||||
/* shamanic dance end */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* calling post-init callback */
|
|
||||||
rcode = pAsync->OnInit(this);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailOnInit;
|
|
||||||
|
|
||||||
USBTRACE("PL configured\r\n");
|
|
||||||
|
|
||||||
//bPollEnable = true;
|
|
||||||
ready = true;
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
FailGetDevDescr:
|
|
||||||
USBTRACE("getDevDescr:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetDevTblEntry:
|
|
||||||
USBTRACE("setDevTblEn:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetConfDescr:
|
|
||||||
USBTRACE("getConf:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetConfDescr:
|
|
||||||
USBTRACE("setConf:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetControlLineState:
|
|
||||||
USBTRACE("SetControlLineState:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetLineCoding:
|
|
||||||
USBTRACE("SetLineCoding:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailOnInit:
|
|
||||||
USBTRACE("OnInit:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
Fail:
|
|
||||||
Serial.println(rcode, HEX);
|
|
||||||
Release();
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
//uint8_t PL::Poll()
|
|
||||||
//{
|
|
||||||
// uint8_t rcode = 0;
|
|
||||||
//
|
|
||||||
// //if (!bPollEnable)
|
|
||||||
// // return 0;
|
|
||||||
//
|
|
||||||
// //if (qNextPollTime <= millis())
|
|
||||||
// //{
|
|
||||||
// // Serial.println(bAddress, HEX);
|
|
||||||
//
|
|
||||||
// // qNextPollTime = millis() + 100;
|
|
||||||
// //}
|
|
||||||
// return rcode;
|
|
||||||
//}
|
|
||||||
|
|
||||||
|
|
179
cdcprolific.h
179
cdcprolific.h
|
@ -1,179 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__CDCPROLIFIC_H__)
|
|
||||||
#define __CDCPROLIFIC_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
|
|
||||||
#include "confdescparser.h"
|
|
||||||
#include "cdcacm.h"
|
|
||||||
|
|
||||||
//#define PL2303_COMPAT //uncomment it if you have compatibility problems
|
|
||||||
|
|
||||||
#define PL_VID 0x067B
|
|
||||||
#define PL_PID ( 0x2303 || 0x0609 )
|
|
||||||
|
|
||||||
#define PROLIFIC_REV_H 0x0202
|
|
||||||
#define PROLIFIC_REV_X 0x0300
|
|
||||||
#define PROLIFIC_REV_HX_CHIP_D 0x0400
|
|
||||||
#define PROLIFIC_REV_1 0x0001
|
|
||||||
|
|
||||||
#define kXOnChar '\x11'
|
|
||||||
#define kXOffChar '\x13'
|
|
||||||
|
|
||||||
#define SPECIAL_SHIFT (5)
|
|
||||||
#define SPECIAL_MASK ((1<<SPECIAL_SHIFT) - 1)
|
|
||||||
#define STATE_ALL ( PD_RS232_S_MASK | PD_S_MASK )
|
|
||||||
#define FLOW_RX_AUTO ( PD_RS232_A_RFR | PD_RS232_A_DTR | PD_RS232_A_RXO )
|
|
||||||
#define FLOW_TX_AUTO ( PD_RS232_A_CTS | PD_RS232_A_DSR | PD_RS232_A_TXO | PD_RS232_A_DCD )
|
|
||||||
#define CAN_BE_AUTO ( FLOW_RX_AUTO | FLOW_TX_AUTO )
|
|
||||||
#define CAN_NOTIFY ( PD_RS232_N_MASK )
|
|
||||||
#define EXTERNAL_MASK ( PD_S_MASK | (PD_RS232_S_MASK & ~PD_RS232_S_LOOP) )
|
|
||||||
#define INTERNAL_DELAY ( PD_RS232_S_LOOP )
|
|
||||||
#define DEFAULT_AUTO ( PD_RS232_A_DTR | PD_RS232_A_RFR | PD_RS232_A_CTS | PD_RS232_A_DSR )
|
|
||||||
#define DEFAULT_NOTIFY 0x00
|
|
||||||
#define DEFAULT_STATE ( PD_S_TX_ENABLE | PD_S_RX_ENABLE | PD_RS232_A_TXO | PD_RS232_A_RXO )
|
|
||||||
|
|
||||||
#define CONTINUE_SEND 1
|
|
||||||
#define PAUSE_SEND 2
|
|
||||||
|
|
||||||
#define kRxAutoFlow ((UInt32)( PD_RS232_A_RFR | PD_RS232_A_DTR | PD_RS232_A_RXO ))
|
|
||||||
#define kTxAutoFlow ((UInt32)( PD_RS232_A_CTS | PD_RS232_A_DSR | PD_RS232_A_TXO | PD_RS232_A_DCD ))
|
|
||||||
#define kControl_StateMask ((UInt32)( PD_RS232_S_CTS | PD_RS232_S_DSR | PD_RS232_S_CAR | PD_RS232_S_RI ))
|
|
||||||
#define kRxQueueState ((UInt32)( PD_S_RXQ_EMPTY | PD_S_RXQ_LOW_WATER | PD_S_RXQ_HIGH_WATER | PD_S_RXQ_FULL ))
|
|
||||||
#define kTxQueueState ((UInt32)( PD_S_TXQ_EMPTY | PD_S_TXQ_LOW_WATER | PD_S_TXQ_HIGH_WATER | PD_S_TXQ_FULL ))
|
|
||||||
|
|
||||||
#define kCONTROL_DTR 0x01
|
|
||||||
#define kCONTROL_RTS 0x02
|
|
||||||
|
|
||||||
|
|
||||||
enum tXO_State
|
|
||||||
{
|
|
||||||
kXOnSent = -2,
|
|
||||||
kXOffSent = -1,
|
|
||||||
kXO_Idle = 0,
|
|
||||||
kXOffNeeded = 1,
|
|
||||||
kXOnNeeded = 2
|
|
||||||
} ;
|
|
||||||
|
|
||||||
#define kStateTransientMask 0x74
|
|
||||||
#define kBreakError 0x04
|
|
||||||
#define kFrameError 0x10
|
|
||||||
#define kParityError 0x20
|
|
||||||
#define kOverrunError 0x40
|
|
||||||
|
|
||||||
#define kCTS 0x80
|
|
||||||
#define kDSR 0x02
|
|
||||||
#define kRI 0x08
|
|
||||||
#define kDCD 0x01
|
|
||||||
#define kHandshakeInMask ((UInt32)( PD_RS232_S_CTS | PD_RS232_S_DSR | PD_RS232_S_CAR | PD_RS232_S_RI ))
|
|
||||||
|
|
||||||
#define VENDOR_WRITE_REQUEST_TYPE 0x40
|
|
||||||
#define VENDOR_WRITE_REQUEST 0x01
|
|
||||||
|
|
||||||
#define VENDOR_READ_REQUEST_TYPE 0xc0
|
|
||||||
#define VENDOR_READ_REQUEST 0x01
|
|
||||||
|
|
||||||
// Device Configuration Registers (DCR0, DCR1, DCR2)
|
|
||||||
#define SET_DCR0 0x00
|
|
||||||
#define GET_DCR0 0x80
|
|
||||||
#define DCR0_INIT 0x01
|
|
||||||
#define DCR0_INIT_H 0x41
|
|
||||||
#define DCR0_INIT_X 0x61
|
|
||||||
|
|
||||||
#define SET_DCR1 0x01
|
|
||||||
#define GET_DCR1 0x81
|
|
||||||
#define DCR1_INIT_H 0x80
|
|
||||||
#define DCR1_INIT_X 0x00
|
|
||||||
|
|
||||||
#define SET_DCR2 0x02
|
|
||||||
#define GET_DCR2 0x82
|
|
||||||
#define DCR2_INIT_H 0x24
|
|
||||||
#define DCR2_INIT_X 0x44
|
|
||||||
|
|
||||||
// On-chip Data Buffers:
|
|
||||||
#define RESET_DOWNSTREAM_DATA_PIPE 0x08
|
|
||||||
#define RESET_UPSTREAM_DATA_PIPE 0x09
|
|
||||||
|
|
||||||
enum pl2303_type
|
|
||||||
{
|
|
||||||
unknown,
|
|
||||||
type_0,
|
|
||||||
type_1, /* don't know the difference between type 0 and */
|
|
||||||
rev_X, /* type 1, until someone from prolific tells us... */
|
|
||||||
rev_HX, /* HX version of the pl2303 chip */
|
|
||||||
rev_H
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#define PL_MAX_ENDPOINTS 4
|
|
||||||
|
|
||||||
//class PL2303;
|
|
||||||
|
|
||||||
class PL2303 : public ACM
|
|
||||||
{
|
|
||||||
|
|
||||||
//uint16_t wPLType; // Type of chip
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
|
||||||
PL2303(USB *pusb, CDCAsyncOper *pasync);
|
|
||||||
|
|
||||||
// USBDeviceConfig implementation
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
//virtual uint8_t Release();
|
|
||||||
//virtual uint8_t Poll();
|
|
||||||
//virtual uint8_t GetAddress() { return bAddress; };
|
|
||||||
|
|
||||||
//// UsbConfigXtracter implementation
|
|
||||||
//virtual void EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *ep);
|
|
||||||
|
|
||||||
private:
|
|
||||||
/* Prolific proprietary requests */
|
|
||||||
uint8_t vendorRead( uint8_t val_lo, uint8_t val_hi, uint16_t index, uint8_t* buf );
|
|
||||||
uint8_t vendorWrite( uint8_t val_lo, uint8_t val_hi, uint8_t index );
|
|
||||||
};
|
|
||||||
|
|
||||||
/* vendor read request */
|
|
||||||
inline uint8_t PL2303::vendorRead( uint8_t val_lo, uint8_t val_hi, uint16_t index, uint8_t* buf )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq(bAddress, 0, VENDOR_READ_REQUEST_TYPE, VENDOR_READ_REQUEST, val_lo, val_hi, index, 1, 1, buf, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
/* vendor write request */
|
|
||||||
inline uint8_t PL2303::vendorWrite( uint8_t val_lo, uint8_t val_hi, uint8_t index )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq(bAddress, 0, VENDOR_WRITE_REQUEST_TYPE, VENDOR_WRITE_REQUEST, val_lo, val_hi, index, 0, 0, NULL, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // __CDCPROLIFIC_H__
|
|
221
confdescparser.h
221
confdescparser.h
|
@ -1,221 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__CONFDESCPARSER_H__)
|
|
||||||
#define __CONFDESCPARSER_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
#include "parsetools.h"
|
|
||||||
|
|
||||||
//#include "hid.h"
|
|
||||||
|
|
||||||
class UsbConfigXtracter
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
//virtual void ConfigXtract(const USB_CONFIGURATION_DESCRIPTOR *conf) = 0;
|
|
||||||
//virtual void InterfaceXtract(uint8_t conf, const USB_INTERFACE_DESCRIPTOR *iface) = 0;
|
|
||||||
virtual void EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *ep) = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
#define CP_MASK_COMPARE_CLASS 1
|
|
||||||
#define CP_MASK_COMPARE_SUBCLASS 2
|
|
||||||
#define CP_MASK_COMPARE_PROTOCOL 4
|
|
||||||
#define CP_MASK_COMPARE_ALL 7
|
|
||||||
|
|
||||||
// Configuration Descriptor Parser Class Template
|
|
||||||
template <const uint8_t CLASS_ID, const uint8_t SUBCLASS_ID, const uint8_t PROTOCOL_ID, const uint8_t MASK>
|
|
||||||
class ConfigDescParser : public USBReadParser
|
|
||||||
{
|
|
||||||
UsbConfigXtracter *theXtractor;
|
|
||||||
MultiValueBuffer theBuffer;
|
|
||||||
MultiByteValueParser valParser;
|
|
||||||
ByteSkipper theSkipper;
|
|
||||||
uint8_t varBuffer[16 /*sizeof(USB_CONFIGURATION_DESCRIPTOR)*/];
|
|
||||||
|
|
||||||
uint8_t stateParseDescr; // ParseDescriptor state
|
|
||||||
|
|
||||||
uint8_t dscrLen; // Descriptor length
|
|
||||||
uint8_t dscrType; // Descriptor type
|
|
||||||
|
|
||||||
bool isGoodInterface; // Apropriate interface flag
|
|
||||||
uint8_t confValue; // Configuration value
|
|
||||||
uint8_t protoValue; // Protocol value
|
|
||||||
uint8_t ifaceNumber; // Interface number
|
|
||||||
uint8_t ifaceAltSet; // Interface alternate settings
|
|
||||||
|
|
||||||
bool ParseDescriptor(uint8_t **pp, uint16_t *pcntdn);
|
|
||||||
|
|
||||||
void PrintHidDescriptor(const USB_HID_DESCRIPTOR *pDesc);
|
|
||||||
|
|
||||||
public:
|
|
||||||
ConfigDescParser(UsbConfigXtracter *xtractor);
|
|
||||||
virtual void Parse(const uint16_t len, const uint8_t *pbuf, const uint16_t &offset);
|
|
||||||
};
|
|
||||||
|
|
||||||
template <const uint8_t CLASS_ID, const uint8_t SUBCLASS_ID, const uint8_t PROTOCOL_ID, const uint8_t MASK>
|
|
||||||
ConfigDescParser<CLASS_ID, SUBCLASS_ID, PROTOCOL_ID, MASK>::ConfigDescParser(UsbConfigXtracter *xtractor) :
|
|
||||||
stateParseDescr(0),
|
|
||||||
dscrLen(0),
|
|
||||||
dscrType(0),
|
|
||||||
theXtractor(xtractor)
|
|
||||||
{
|
|
||||||
theBuffer.pValue = varBuffer;
|
|
||||||
valParser.Initialize(&theBuffer);
|
|
||||||
theSkipper.Initialize(&theBuffer);
|
|
||||||
};
|
|
||||||
|
|
||||||
template <const uint8_t CLASS_ID, const uint8_t SUBCLASS_ID, const uint8_t PROTOCOL_ID, const uint8_t MASK>
|
|
||||||
void ConfigDescParser<CLASS_ID, SUBCLASS_ID, PROTOCOL_ID, MASK>::Parse(const uint16_t len, const uint8_t *pbuf, const uint16_t &offset)
|
|
||||||
{
|
|
||||||
uint16_t cntdn = (uint16_t)len;
|
|
||||||
uint8_t *p = (uint8_t*)pbuf;
|
|
||||||
|
|
||||||
while(cntdn)
|
|
||||||
if (!ParseDescriptor(&p, &cntdn))
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
/* Parser for the configuration descriptor. Takes values for class, subclass, protocol fields in interface descriptor and
|
|
||||||
compare masks for them. When the match is found, calls EndpointXtract passing buffer containing endpoint descriptor */
|
|
||||||
template <const uint8_t CLASS_ID, const uint8_t SUBCLASS_ID, const uint8_t PROTOCOL_ID, const uint8_t MASK>
|
|
||||||
bool ConfigDescParser<CLASS_ID, SUBCLASS_ID, PROTOCOL_ID, MASK>::ParseDescriptor(uint8_t **pp, uint16_t *pcntdn)
|
|
||||||
{
|
|
||||||
switch (stateParseDescr)
|
|
||||||
{
|
|
||||||
case 0:
|
|
||||||
theBuffer.valueSize = 2;
|
|
||||||
valParser.Initialize(&theBuffer);
|
|
||||||
stateParseDescr = 1;
|
|
||||||
case 1:
|
|
||||||
if (!valParser.Parse(pp, pcntdn))
|
|
||||||
return false;
|
|
||||||
dscrLen = *((uint8_t*)theBuffer.pValue);
|
|
||||||
dscrType = *((uint8_t*)theBuffer.pValue + 1);
|
|
||||||
stateParseDescr = 2;
|
|
||||||
case 2:
|
|
||||||
// This is a sort of hack. Assuming that two bytes are already in the buffer
|
|
||||||
// the pointer is positioned two bytes ahead in order for the rest of descriptor
|
|
||||||
// to be read right after the size and the type fields.
|
|
||||||
// This should be used carefuly. varBuffer should be used directly to handle data
|
|
||||||
// in the buffer.
|
|
||||||
theBuffer.pValue = varBuffer + 2;
|
|
||||||
stateParseDescr = 3;
|
|
||||||
case 3:
|
|
||||||
switch (dscrType)
|
|
||||||
{
|
|
||||||
case USB_DESCRIPTOR_INTERFACE:
|
|
||||||
isGoodInterface = false;
|
|
||||||
case USB_DESCRIPTOR_CONFIGURATION:
|
|
||||||
theBuffer.valueSize = sizeof(USB_CONFIGURATION_DESCRIPTOR) - 2;
|
|
||||||
break;
|
|
||||||
case USB_DESCRIPTOR_ENDPOINT:
|
|
||||||
theBuffer.valueSize = sizeof(USB_ENDPOINT_DESCRIPTOR) - 2;
|
|
||||||
break;
|
|
||||||
case HID_DESCRIPTOR_HID:
|
|
||||||
theBuffer.valueSize = dscrLen - 2;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
valParser.Initialize(&theBuffer);
|
|
||||||
stateParseDescr = 4;
|
|
||||||
case 4:
|
|
||||||
switch (dscrType)
|
|
||||||
{
|
|
||||||
case USB_DESCRIPTOR_CONFIGURATION:
|
|
||||||
if (!valParser.Parse(pp, pcntdn))
|
|
||||||
return false;
|
|
||||||
confValue = ((USB_CONFIGURATION_DESCRIPTOR*)varBuffer)->bConfigurationValue;
|
|
||||||
break;
|
|
||||||
case USB_DESCRIPTOR_INTERFACE:
|
|
||||||
if (!valParser.Parse(pp, pcntdn))
|
|
||||||
return false;
|
|
||||||
if ((MASK & CP_MASK_COMPARE_CLASS) && ((USB_INTERFACE_DESCRIPTOR*)varBuffer)->bInterfaceClass != CLASS_ID)
|
|
||||||
break;
|
|
||||||
if ((MASK & CP_MASK_COMPARE_SUBCLASS) && ((USB_INTERFACE_DESCRIPTOR*)varBuffer)->bInterfaceSubClass != SUBCLASS_ID)
|
|
||||||
break;
|
|
||||||
if ((MASK & CP_MASK_COMPARE_PROTOCOL) && ((USB_INTERFACE_DESCRIPTOR*)varBuffer)->bInterfaceProtocol != PROTOCOL_ID)
|
|
||||||
break;
|
|
||||||
|
|
||||||
isGoodInterface = true;
|
|
||||||
ifaceNumber = ((USB_INTERFACE_DESCRIPTOR*)varBuffer)->bInterfaceNumber;
|
|
||||||
ifaceAltSet = ((USB_INTERFACE_DESCRIPTOR*)varBuffer)->bAlternateSetting;
|
|
||||||
protoValue = ((USB_INTERFACE_DESCRIPTOR*)varBuffer)->bInterfaceProtocol;
|
|
||||||
break;
|
|
||||||
case USB_DESCRIPTOR_ENDPOINT:
|
|
||||||
if (!valParser.Parse(pp, pcntdn))
|
|
||||||
return false;
|
|
||||||
if (isGoodInterface)
|
|
||||||
if (theXtractor)
|
|
||||||
theXtractor->EndpointXtract(confValue, ifaceNumber, ifaceAltSet, protoValue, (USB_ENDPOINT_DESCRIPTOR*)varBuffer);
|
|
||||||
break;
|
|
||||||
//case HID_DESCRIPTOR_HID:
|
|
||||||
// if (!valParser.Parse(pp, pcntdn))
|
|
||||||
// return false;
|
|
||||||
// PrintHidDescriptor((const USB_HID_DESCRIPTOR*)varBuffer);
|
|
||||||
// break;
|
|
||||||
default:
|
|
||||||
if (!theSkipper.Skip(pp, pcntdn, dscrLen-2))
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
theBuffer.pValue = varBuffer;
|
|
||||||
stateParseDescr = 0;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
template <const uint8_t CLASS_ID, const uint8_t SUBCLASS_ID, const uint8_t PROTOCOL_ID, const uint8_t MASK>
|
|
||||||
void ConfigDescParser<CLASS_ID, SUBCLASS_ID, PROTOCOL_ID, MASK>::PrintHidDescriptor(const USB_HID_DESCRIPTOR *pDesc)
|
|
||||||
{
|
|
||||||
Notify(PSTR("\r\n\r\nHID Descriptor:\r\n"));
|
|
||||||
Notify(PSTR("bDescLength:\t\t"));
|
|
||||||
PrintHex<uint8_t>(pDesc->bLength);
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nbDescriptorType:\t"));
|
|
||||||
PrintHex<uint8_t>(pDesc->bDescriptorType);
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nbcdHID:\t\t\t"));
|
|
||||||
PrintHex<uint16_t>(pDesc->bcdHID);
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nbCountryCode:\t\t"));
|
|
||||||
PrintHex<uint8_t>(pDesc->bCountryCode);
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nbNumDescriptors:\t"));
|
|
||||||
PrintHex<uint8_t>(pDesc->bNumDescriptors);
|
|
||||||
|
|
||||||
//Notify(PSTR("\r\nbDescrType:\t\t"));
|
|
||||||
//PrintHex<uint8_t>(pDesc->bDescrType);
|
|
||||||
//
|
|
||||||
//Notify(PSTR("\r\nwDescriptorLength:\t"));
|
|
||||||
//PrintHex<uint16_t>(pDesc->wDescriptorLength);
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<pDesc->bNumDescriptors; i++)
|
|
||||||
{
|
|
||||||
HID_CLASS_DESCRIPTOR_LEN_AND_TYPE *pLT = (HID_CLASS_DESCRIPTOR_LEN_AND_TYPE*)&(pDesc->bDescrType);
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nbDescrType:\t\t"));
|
|
||||||
PrintHex<uint8_t>(pLT[i].bDescrType);
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nwDescriptorLength:\t"));
|
|
||||||
PrintHex<uint16_t>(pLT[i].wDescriptorLength);
|
|
||||||
}
|
|
||||||
Notify(PSTR("\r\n"));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#endif // __CONFDESCPARSER_H__
|
|
|
@ -1,171 +0,0 @@
|
||||||
/*
|
|
||||||
Example sketch for the PS3 Bluetooth library - developed by Kristian Lauszus
|
|
||||||
For more information visit my blog: http://blog.tkjelectronics.dk/ or
|
|
||||||
send me an e-mail: kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <PS3BT.h>
|
|
||||||
USB Usb;
|
|
||||||
BTD Btd(&Usb); // You have to create the Bluetooth Dongle instance like so
|
|
||||||
/* You can create the instance of the class in two ways */
|
|
||||||
PS3BT PS3(&Btd); // This will just create the instance
|
|
||||||
//PS3BT PS3(&Btd,0x00,0x15,0x83,0x3D,0x0A,0x57); // This will also store the bluetooth address - this can be obtained from the dongle when running the sketch
|
|
||||||
|
|
||||||
boolean printTemperature;
|
|
||||||
boolean printAngle;
|
|
||||||
|
|
||||||
void setup() {
|
|
||||||
Serial.begin(115200);
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.print(F("\r\nOSC did not start"));
|
|
||||||
while(1); //halt
|
|
||||||
}
|
|
||||||
Serial.print(F("\r\nPS3 Bluetooth Library Started"));
|
|
||||||
}
|
|
||||||
void loop() {
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if(PS3.PS3Connected || PS3.PS3NavigationConnected) {
|
|
||||||
if(PS3.getAnalogHat(LeftHatX) > 137 || PS3.getAnalogHat(LeftHatX) < 117 || PS3.getAnalogHat(LeftHatY) > 137 || PS3.getAnalogHat(LeftHatY) < 117 || PS3.getAnalogHat(RightHatX) > 137 || PS3.getAnalogHat(RightHatX) < 117 || PS3.getAnalogHat(RightHatY) > 137 || PS3.getAnalogHat(RightHatY) < 117) {
|
|
||||||
Serial.print(F("\r\nLeftHatX: "));
|
|
||||||
Serial.print(PS3.getAnalogHat(LeftHatX));
|
|
||||||
Serial.print(F("\tLeftHatY: "));
|
|
||||||
Serial.print(PS3.getAnalogHat(LeftHatY));
|
|
||||||
if(!PS3.PS3NavigationConnected) {
|
|
||||||
Serial.print(F("\tRightHatX: "));
|
|
||||||
Serial.print(PS3.getAnalogHat(RightHatX));
|
|
||||||
Serial.print(F("\tRightHatY: "));
|
|
||||||
Serial.print(PS3.getAnalogHat(RightHatY));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//Analog button values can be read from almost all buttons
|
|
||||||
if(PS3.getAnalogButton(L2_ANALOG) > 0 || PS3.getAnalogButton(R2_ANALOG) > 0) {
|
|
||||||
Serial.print(F("\r\nL2: "));
|
|
||||||
Serial.print(PS3.getAnalogButton(L2_ANALOG));
|
|
||||||
if(!PS3.PS3NavigationConnected) {
|
|
||||||
Serial.print(F("\tR2: "));
|
|
||||||
Serial.print(PS3.getAnalogButton(R2_ANALOG));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(PS)) {
|
|
||||||
Serial.print(F("\r\nPS"));
|
|
||||||
PS3.disconnect();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if(PS3.getButtonClick(TRIANGLE))
|
|
||||||
Serial.print(F("\r\nTraingle"));
|
|
||||||
if(PS3.getButtonClick(CIRCLE))
|
|
||||||
Serial.print(F("\r\nCircle"));
|
|
||||||
if(PS3.getButtonClick(CROSS))
|
|
||||||
Serial.print(F("\r\nCross"));
|
|
||||||
if(PS3.getButtonClick(SQUARE))
|
|
||||||
Serial.print(F("\r\nSquare"));
|
|
||||||
|
|
||||||
if(PS3.getButtonClick(UP)) {
|
|
||||||
Serial.print(F("\r\nUp"));
|
|
||||||
if(PS3.PS3Connected) {
|
|
||||||
PS3.setAllOff();
|
|
||||||
PS3.setLedOn(LED4);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(RIGHT)) {
|
|
||||||
Serial.print(F("\r\nRight"));
|
|
||||||
if(PS3.PS3Connected) {
|
|
||||||
PS3.setAllOff();
|
|
||||||
PS3.setLedOn(LED1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(DOWN)) {
|
|
||||||
Serial.print(F("\r\nDown"));
|
|
||||||
if(PS3.PS3Connected) {
|
|
||||||
PS3.setAllOff();
|
|
||||||
PS3.setLedOn(LED2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(LEFT)) {
|
|
||||||
Serial.print(F("\r\nLeft"));
|
|
||||||
if(PS3.PS3Connected) {
|
|
||||||
PS3.setAllOff();
|
|
||||||
PS3.setLedOn(LED3);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if(PS3.getButtonClick(L1))
|
|
||||||
Serial.print(F("\r\nL1"));
|
|
||||||
if(PS3.getButtonClick(L3))
|
|
||||||
Serial.print(F("\r\nL3"));
|
|
||||||
if(PS3.getButtonClick(R1))
|
|
||||||
Serial.print(F("\r\nR1"));
|
|
||||||
if(PS3.getButtonClick(R3))
|
|
||||||
Serial.print(F("\r\nR3"));
|
|
||||||
|
|
||||||
if(PS3.getButtonClick(SELECT)) {
|
|
||||||
Serial.print(F("\r\nSelect - "));
|
|
||||||
Serial.print(PS3.getStatusString());
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(START)) {
|
|
||||||
Serial.print(F("\r\nStart"));
|
|
||||||
printAngle = !printAngle;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(printAngle) {
|
|
||||||
Serial.print(F("\r\nPitch: "));
|
|
||||||
Serial.print(PS3.getAngle(Pitch));
|
|
||||||
Serial.print(F("\tRoll: "));
|
|
||||||
Serial.print(PS3.getAngle(Roll));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if(PS3.PS3MoveConnected) {
|
|
||||||
if(PS3.getAnalogButton(T_ANALOG) > 0) {
|
|
||||||
Serial.print(F("\r\nT: "));
|
|
||||||
Serial.print(PS3.getAnalogButton(T_ANALOG));
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(PS)) {
|
|
||||||
Serial.print(F("\r\nPS"));
|
|
||||||
PS3.disconnect();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if(PS3.getButtonClick(SELECT)) {
|
|
||||||
Serial.print(F("\r\nSelect"));
|
|
||||||
printTemperature = !printTemperature;
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(START)) {
|
|
||||||
Serial.print(F("\r\nStart"));
|
|
||||||
printAngle = !printAngle;
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(TRIANGLE)) {
|
|
||||||
Serial.print(F("\r\nTriangle"));
|
|
||||||
PS3.moveSetBulb(Red);
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(CIRCLE)) {
|
|
||||||
Serial.print(F("\r\nCircle"));
|
|
||||||
PS3.moveSetBulb(Green);
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(SQUARE)) {
|
|
||||||
Serial.print(F("\r\nSquare"));
|
|
||||||
PS3.moveSetBulb(Blue);
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(CROSS)) {
|
|
||||||
Serial.print(F("\r\nCross"));
|
|
||||||
PS3.moveSetBulb(Yellow);
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(MOVE)) {
|
|
||||||
PS3.moveSetBulb(Off);
|
|
||||||
Serial.print(F("\r\nMove"));
|
|
||||||
Serial.print(F(" - "));
|
|
||||||
Serial.print(PS3.getStatusString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(printAngle) {
|
|
||||||
Serial.print(F("\r\nPitch: "));
|
|
||||||
Serial.print(PS3.getAngle(Pitch));
|
|
||||||
Serial.print(F("\tRoll: "));
|
|
||||||
Serial.print(PS3.getAngle(Roll));
|
|
||||||
}
|
|
||||||
else if(printTemperature) {
|
|
||||||
Serial.print(F("\r\nTemperature: "));
|
|
||||||
Serial.print(PS3.getTemperature());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,129 +0,0 @@
|
||||||
/*
|
|
||||||
Example sketch for the PS3 Bluetooth library - developed by Kristian Lauszus
|
|
||||||
This example show how one can use multiple controllers with the library
|
|
||||||
For more information visit my blog: http://blog.tkjelectronics.dk/ or
|
|
||||||
send me an e-mail: kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <PS3BT.h>
|
|
||||||
USB Usb;
|
|
||||||
BTD Btd(&Usb); // You have to create the Bluetooth Dongle instance like so
|
|
||||||
PS3BT PS3_1(&Btd);
|
|
||||||
PS3BT PS3_2(&Btd);
|
|
||||||
//PS3BT PS3_3(&Btd); // You can create as many instances as you like, but it will take up a lot of RAM!!
|
|
||||||
|
|
||||||
PS3BT* PS3[2]; // We will use this pointer to store the two instance, you can easily make it larger if you like
|
|
||||||
const uint8_t length = sizeof(PS3)/sizeof(PS3[0]); // Get the lenght of the array
|
|
||||||
boolean printAngle[length];
|
|
||||||
|
|
||||||
void setup() {
|
|
||||||
PS3[0] = &PS3_1; // This will point to the first controller
|
|
||||||
PS3[1] = &PS3_2; // This will point to the second controller
|
|
||||||
//PS3[2] = &PS3_3; // You only need to uncomment this if you wanted to use another controller
|
|
||||||
|
|
||||||
Serial.begin(115200);
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.print(F("\r\nOSC did not start"));
|
|
||||||
while(1); //halt
|
|
||||||
}
|
|
||||||
Serial.print(F("\r\nPS3 Bluetooth Library Started"));
|
|
||||||
}
|
|
||||||
void loop() {
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
for(uint8_t i=0;i<length;i++) {
|
|
||||||
if(!PS3[i]) continue; // Skip if it hasn't been defined
|
|
||||||
if(PS3[i]->PS3Connected || PS3[i]->PS3NavigationConnected) {
|
|
||||||
if(PS3[i]->getAnalogHat(LeftHatX) > 137 || PS3[i]->getAnalogHat(LeftHatX) < 117 || PS3[i]->getAnalogHat(LeftHatY) > 137 || PS3[i]->getAnalogHat(LeftHatY) < 117 || PS3[i]->getAnalogHat(RightHatX) > 137 || PS3[i]->getAnalogHat(RightHatX) < 117 || PS3[i]->getAnalogHat(RightHatY) > 137 || PS3[i]->getAnalogHat(RightHatY) < 117) {
|
|
||||||
Serial.print(F("\r\nLeftHatX: "));
|
|
||||||
Serial.print(PS3[i]->getAnalogHat(LeftHatX));
|
|
||||||
Serial.print(F("\tLeftHatY: "));
|
|
||||||
Serial.print(PS3[i]->getAnalogHat(LeftHatY));
|
|
||||||
if(!PS3[i]->PS3NavigationConnected) { // The Navigation controller only have one joystick
|
|
||||||
Serial.print(F("\tRightHatX: "));
|
|
||||||
Serial.print(PS3[i]->getAnalogHat(RightHatX));
|
|
||||||
Serial.print(F("\tRightHatY: "));
|
|
||||||
Serial.print(PS3[i]->getAnalogHat(RightHatY));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//Analog button values can be read from almost all buttons
|
|
||||||
if(PS3[i]->getAnalogButton(L2_ANALOG) > 0 || PS3[i]->getAnalogButton(R2_ANALOG) > 0) {
|
|
||||||
Serial.print(F("\r\nL2: "));
|
|
||||||
Serial.print(PS3[i]->getAnalogButton(L2_ANALOG));
|
|
||||||
if(!PS3[i]->PS3NavigationConnected) {
|
|
||||||
Serial.print(F("\tR2: "));
|
|
||||||
Serial.print(PS3[i]->getAnalogButton(R2_ANALOG));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(PS3[i]->getButtonClick(PS)) {
|
|
||||||
Serial.print(F("\r\nPS"));
|
|
||||||
PS3[i]->disconnect();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if(PS3[i]->getButtonClick(TRIANGLE))
|
|
||||||
Serial.print(F("\r\nTraingle"));
|
|
||||||
if(PS3[i]->getButtonClick(CIRCLE))
|
|
||||||
Serial.print(F("\r\nCircle"));
|
|
||||||
if(PS3[i]->getButtonClick(CROSS))
|
|
||||||
Serial.print(F("\r\nCross"));
|
|
||||||
if(PS3[i]->getButtonClick(SQUARE))
|
|
||||||
Serial.print(F("\r\nSquare"));
|
|
||||||
|
|
||||||
if(PS3[i]->getButtonClick(UP)) {
|
|
||||||
Serial.print(F("\r\nUp"));
|
|
||||||
if(PS3[i]->PS3Connected) {
|
|
||||||
PS3[i]->setAllOff();
|
|
||||||
PS3[i]->setLedOn(LED4);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(PS3[i]->getButtonClick(RIGHT)) {
|
|
||||||
Serial.print(F("\r\nRight"));
|
|
||||||
if(PS3[i]->PS3Connected) {
|
|
||||||
PS3[i]->setAllOff();
|
|
||||||
PS3[i]->setLedOn(LED1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(PS3[i]->getButtonClick(DOWN)) {
|
|
||||||
Serial.print(F("\r\nDown"));
|
|
||||||
if(PS3[i]->PS3Connected) {
|
|
||||||
PS3[i]->setAllOff();
|
|
||||||
PS3[i]->setLedOn(LED2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(PS3[i]->getButtonClick(LEFT)) {
|
|
||||||
Serial.print(F("\r\nLeft"));
|
|
||||||
if(PS3[i]->PS3Connected) {
|
|
||||||
PS3[i]->setAllOff();
|
|
||||||
PS3[i]->setLedOn(LED3);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if(PS3[i]->getButtonClick(L1))
|
|
||||||
Serial.print(F("\r\nL1"));
|
|
||||||
if(PS3[i]->getButtonClick(L3))
|
|
||||||
Serial.print(F("\r\nL3"));
|
|
||||||
if(PS3[i]->getButtonClick(R1))
|
|
||||||
Serial.print(F("\r\nR1"));
|
|
||||||
if(PS3[i]->getButtonClick(R3))
|
|
||||||
Serial.print(F("\r\nR3"));
|
|
||||||
|
|
||||||
if(PS3[i]->getButtonClick(SELECT)) {
|
|
||||||
Serial.print(F("\r\nSelect - "));
|
|
||||||
Serial.print(PS3[i]->getStatusString());
|
|
||||||
}
|
|
||||||
if(PS3[i]->getButtonClick(START)) {
|
|
||||||
Serial.print(F("\r\nStart"));
|
|
||||||
printAngle[i] = !printAngle[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(printAngle[i]) {
|
|
||||||
Serial.print(F("\r\nPitch: "));
|
|
||||||
Serial.print(PS3[i]->getAngle(Pitch));
|
|
||||||
Serial.print(F("\tRoll: "));
|
|
||||||
Serial.print(PS3[i]->getAngle(Roll));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* I have removed the PS3 Move code as an Uno will run out of RAM if it's included */
|
|
||||||
//else if(PS3[i]->PS3MoveConnected) {
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,147 +0,0 @@
|
||||||
/*
|
|
||||||
Example sketch for the Bluetooth library - developed by Kristian Lauszus
|
|
||||||
For more information visit my blog: http://blog.tkjelectronics.dk/ or
|
|
||||||
send me an e-mail: kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
Note:
|
|
||||||
You will need a Arduino Mega 1280/2560 to run this sketch,
|
|
||||||
As a normal Arduino (Uno, Duemilanove etc.) doesn't have enough SRAM and FLASH
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <PS3BT.h>
|
|
||||||
#include <SPP.h>
|
|
||||||
USB Usb;
|
|
||||||
BTD Btd(&Usb); // You have to create the Bluetooth Dongle instance like so
|
|
||||||
|
|
||||||
/* You can create the instances of the bluetooth services in two ways */
|
|
||||||
SPP SerialBT(&Btd); // This will set the name to the defaults: "Arduino" and the pin to "1234"
|
|
||||||
//SPP SerialBTBT(&Btd,"Lauszus's Arduino","0000"); // You can also set the name and pin like so
|
|
||||||
PS3BT PS3(&Btd); // This will just create the instance
|
|
||||||
//PS3BT PS3(&Btd,0x00,0x15,0x83,0x3D,0x0A,0x57); // This will also store the bluetooth address - this can be obtained from the dongle when running the sketch
|
|
||||||
|
|
||||||
boolean firstMessage = true;
|
|
||||||
String output; // We will store the data in these string so we doesn't overflow the dongle
|
|
||||||
|
|
||||||
void setup() {
|
|
||||||
Serial.begin(115200); // This wil lprint the debugging from the libraries
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.print(F("\r\nOSC did not start"));
|
|
||||||
while(1); //halt
|
|
||||||
}
|
|
||||||
Serial.print(F("\r\nBluetooth Library Started"));
|
|
||||||
}
|
|
||||||
void loop() {
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if(SerialBT.connected) {
|
|
||||||
if(firstMessage) {
|
|
||||||
firstMessage = false;
|
|
||||||
SerialBT.println(F("Hello from Arduino")); // Send welcome message
|
|
||||||
}
|
|
||||||
if(Serial.available())
|
|
||||||
SerialBT.print(Serial.read());
|
|
||||||
if(SerialBT.available())
|
|
||||||
Serial.write(SerialBT.read());
|
|
||||||
}
|
|
||||||
else
|
|
||||||
firstMessage = true;
|
|
||||||
|
|
||||||
if(PS3.PS3Connected || PS3.PS3NavigationConnected) {
|
|
||||||
output = ""; // Reset output string
|
|
||||||
if(PS3.getAnalogHat(LeftHatX) > 137 || PS3.getAnalogHat(LeftHatX) < 117 || PS3.getAnalogHat(LeftHatY) > 137 || PS3.getAnalogHat(LeftHatY) < 117 || PS3.getAnalogHat(RightHatX) > 137 || PS3.getAnalogHat(RightHatX) < 117 || PS3.getAnalogHat(RightHatY) > 137 || PS3.getAnalogHat(RightHatY) < 117) {
|
|
||||||
output += "LeftHatX: ";
|
|
||||||
output += PS3.getAnalogHat(LeftHatX);
|
|
||||||
output += "\tLeftHatY: ";
|
|
||||||
output += PS3.getAnalogHat(LeftHatY);
|
|
||||||
if(!PS3.PS3NavigationConnected) {
|
|
||||||
output += "\tRightHatX: ";
|
|
||||||
output += PS3.getAnalogHat(RightHatX);
|
|
||||||
output += "\tRightHatY: ";
|
|
||||||
output += PS3.getAnalogHat(RightHatY);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//Analog button values can be read from almost all buttons
|
|
||||||
if(PS3.getAnalogButton(L2_ANALOG) || PS3.getAnalogButton(R2_ANALOG)) {
|
|
||||||
if(output != "")
|
|
||||||
output += "\r\n";
|
|
||||||
output += "L2: ";
|
|
||||||
output += PS3.getAnalogButton(L2_ANALOG);
|
|
||||||
if(!PS3.PS3NavigationConnected) {
|
|
||||||
output += "\tR2: ";
|
|
||||||
output += PS3.getAnalogButton(R2_ANALOG);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(output != "") {
|
|
||||||
Serial.println(output);
|
|
||||||
if(SerialBT.connected)
|
|
||||||
SerialBT.println(output);
|
|
||||||
output = ""; // Reset output string
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(PS)) {
|
|
||||||
output += " - PS";
|
|
||||||
PS3.disconnect();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if(PS3.getButtonClick(TRIANGLE))
|
|
||||||
output += " - Traingle";
|
|
||||||
if(PS3.getButtonClick(CIRCLE))
|
|
||||||
output += " - Circle";
|
|
||||||
if(PS3.getButtonClick(CROSS))
|
|
||||||
output += " - Cross";
|
|
||||||
if(PS3.getButtonClick(SQUARE))
|
|
||||||
output += " - Square";
|
|
||||||
|
|
||||||
if(PS3.getButtonClick(UP)) {
|
|
||||||
output += " - Up";
|
|
||||||
if(PS3.PS3Connected) {
|
|
||||||
PS3.setAllOff();
|
|
||||||
PS3.setLedOn(LED4);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(RIGHT)) {
|
|
||||||
output += " - Right";
|
|
||||||
if(PS3.PS3Connected) {
|
|
||||||
PS3.setAllOff();
|
|
||||||
PS3.setLedOn(LED1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(DOWN)) {
|
|
||||||
output += " - Down";
|
|
||||||
if(PS3.PS3Connected) {
|
|
||||||
PS3.setAllOff();
|
|
||||||
PS3.setLedOn(LED2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(LEFT)) {
|
|
||||||
output += " - Left";
|
|
||||||
if(PS3.PS3Connected) {
|
|
||||||
PS3.setAllOff();
|
|
||||||
PS3.setLedOn(LED3);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if(PS3.getButtonClick(L1))
|
|
||||||
output += " - L1";
|
|
||||||
if(PS3.getButtonClick(L3))
|
|
||||||
output += " - L3";
|
|
||||||
if(PS3.getButtonClick(R1))
|
|
||||||
output += " - R1";
|
|
||||||
if(PS3.getButtonClick(R3))
|
|
||||||
output += " - R3";
|
|
||||||
|
|
||||||
if(PS3.getButtonClick(SELECT))
|
|
||||||
output += " - Select";
|
|
||||||
if(PS3.getButtonClick(START))
|
|
||||||
output += " - Start";
|
|
||||||
|
|
||||||
if(output != "") {
|
|
||||||
String string = "PS3 Controller" + output;
|
|
||||||
Serial.println(string);
|
|
||||||
if(SerialBT.connected)
|
|
||||||
SerialBT.println(string);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,38 +0,0 @@
|
||||||
/*
|
|
||||||
Example sketch for the RFCOMM/SPP Bluetooth library - developed by Kristian Lauszus
|
|
||||||
For more information visit my blog: http://blog.tkjelectronics.dk/ or
|
|
||||||
send me an e-mail: kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <SPP.h>
|
|
||||||
USB Usb;
|
|
||||||
BTD Btd(&Usb); // You have to create the Bluetooth Dongle instance like so
|
|
||||||
/* You can create the instance of the class in two ways */
|
|
||||||
SPP SerialBT(&Btd); // This will set the name to the defaults: "Arduino" and the pin to "1234"
|
|
||||||
//SPP SerialBT(&Btd, "Lauszus's Arduino","0000"); // You can also set the name and pin like so
|
|
||||||
|
|
||||||
boolean firstMessage = true;
|
|
||||||
|
|
||||||
void setup() {
|
|
||||||
Serial.begin(115200);
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.print(F("\r\nOSC did not start"));
|
|
||||||
while(1); //halt
|
|
||||||
}
|
|
||||||
Serial.print(F("\r\nSPP Bluetooth Library Started"));
|
|
||||||
}
|
|
||||||
void loop() {
|
|
||||||
Usb.Task();
|
|
||||||
if(SerialBT.connected) {
|
|
||||||
if(firstMessage) {
|
|
||||||
firstMessage = false;
|
|
||||||
SerialBT.println(F("Hello from Arduino")); // Send welcome message
|
|
||||||
}
|
|
||||||
if(Serial.available())
|
|
||||||
SerialBT.print(Serial.read());
|
|
||||||
if(SerialBT.available())
|
|
||||||
Serial.write(SerialBT.read());
|
|
||||||
}
|
|
||||||
else
|
|
||||||
firstMessage = true;
|
|
||||||
}
|
|
|
@ -1,101 +0,0 @@
|
||||||
/*
|
|
||||||
Example sketch for the Wiimote Bluetooth library - developed by Kristian Lauszus
|
|
||||||
For more information visit my blog: http://blog.tkjelectronics.dk/ or
|
|
||||||
send me an e-mail: kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <Wii.h>
|
|
||||||
USB Usb;
|
|
||||||
BTD Btd(&Usb); // You have to create the Bluetooth Dongle instance like so
|
|
||||||
/* You can create the instance of the class in two ways */
|
|
||||||
WII Wii(&Btd,PAIR); // This will start an inquiry and then pair with your Wiimote - you only have to do this once
|
|
||||||
//WII Wii(&Btd); // After that you can simply create the instance like so and then press any button on the Wiimote
|
|
||||||
|
|
||||||
bool printAngle;
|
|
||||||
|
|
||||||
void setup() {
|
|
||||||
Serial.begin(115200);
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.print(F("\r\nOSC did not start"));
|
|
||||||
while(1); //halt
|
|
||||||
}
|
|
||||||
Serial.print(F("\r\nWiimote Bluetooth Library Started"));
|
|
||||||
}
|
|
||||||
void loop() {
|
|
||||||
Usb.Task();
|
|
||||||
if(Wii.wiimoteConnected) {
|
|
||||||
if(Wii.getButtonClick(HOME)) { // You can use getButtonPress to see if the button is held down
|
|
||||||
Serial.print(F("\r\nHOME"));
|
|
||||||
Wii.disconnect();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if(Wii.getButtonClick(LEFT)) {
|
|
||||||
Wii.setAllOff();
|
|
||||||
Wii.setLedOn(LED1);
|
|
||||||
Serial.print(F("\r\nLeft"));
|
|
||||||
}
|
|
||||||
if(Wii.getButtonClick(RIGHT)) {
|
|
||||||
Wii.setAllOff();
|
|
||||||
Wii.setLedOn(LED3);
|
|
||||||
Serial.print(F("\r\nRight"));
|
|
||||||
}
|
|
||||||
if(Wii.getButtonClick(DOWN)) {
|
|
||||||
Wii.setAllOff();
|
|
||||||
Wii.setLedOn(LED4);
|
|
||||||
Serial.print(F("\r\nDown"));
|
|
||||||
}
|
|
||||||
if(Wii.getButtonClick(UP)) {
|
|
||||||
Wii.setAllOff();
|
|
||||||
Wii.setLedOn(LED2);
|
|
||||||
Serial.print(F("\r\nUp"));
|
|
||||||
}
|
|
||||||
|
|
||||||
if(Wii.getButtonClick(PLUS))
|
|
||||||
Serial.print(F("\r\nPlus"));
|
|
||||||
if(Wii.getButtonClick(MINUS))
|
|
||||||
Serial.print(F("\r\nMinus"));
|
|
||||||
|
|
||||||
if(Wii.getButtonClick(ONE))
|
|
||||||
Serial.print(F("\r\nOne"));
|
|
||||||
if(Wii.getButtonClick(TWO))
|
|
||||||
Serial.print(F("\r\nTwo"));
|
|
||||||
|
|
||||||
if(Wii.getButtonClick(A)) {
|
|
||||||
printAngle = !printAngle;
|
|
||||||
Serial.print(F("\r\nA"));
|
|
||||||
}
|
|
||||||
if(Wii.getButtonClick(B)) {
|
|
||||||
Wii.setRumbleToggle();
|
|
||||||
Serial.print(F("\r\nB"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(printAngle) {
|
|
||||||
Serial.print(F("\r\nPitch: "));
|
|
||||||
Serial.print(Wii.getPitch());
|
|
||||||
Serial.print(F("\tRoll: "));
|
|
||||||
Serial.print(Wii.getRoll());
|
|
||||||
if(Wii.motionPlusConnected) {
|
|
||||||
Serial.print(F("\tYaw: "));
|
|
||||||
Serial.print(Wii.getYaw());
|
|
||||||
}
|
|
||||||
if(Wii.nunchuckConnected) {
|
|
||||||
Serial.print(F("\tNunchuck Pitch: "));
|
|
||||||
Serial.print(Wii.nunchuckPitch);
|
|
||||||
Serial.print(F("\tNunchuck Roll: "));
|
|
||||||
Serial.print(Wii.nunchuckRoll);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(Wii.nunchuckConnected) {
|
|
||||||
if(Wii.getButtonClick(Z))
|
|
||||||
Serial.print(F("\r\nZ"));
|
|
||||||
if(Wii.getButtonClick(C))
|
|
||||||
Serial.print(F("\r\nC"));
|
|
||||||
if(Wii.getAnalogHat(HatX) > 137 || Wii.getAnalogHat(HatX) < 117 || Wii.getAnalogHat(HatY) > 137 || Wii.getAnalogHat(HatY) < 117) {
|
|
||||||
Serial.print(F("\r\nHatX: "));
|
|
||||||
Serial.print(Wii.getAnalogHat(HatX));
|
|
||||||
Serial.print(F("\tHatY: "));
|
|
||||||
Serial.print(Wii.getAnalogHat(HatY));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,119 +0,0 @@
|
||||||
/*
|
|
||||||
Example sketch for the Wii libary showing the IR camera functionality. This example
|
|
||||||
is for the Bluetooth Wii library developed for the USB shield from Circuits@Home
|
|
||||||
|
|
||||||
Created by Allan Glover and includes much from what Kristian Lauszus wrote in the existing
|
|
||||||
Wii example. Contact Kristian: http://blog.tkjelectronics.dk/ or send email at kristianl@tkjelectronics.com.
|
|
||||||
Contact Allan at adglover9.81@gmail.com
|
|
||||||
|
|
||||||
To test the Wiimote IR camera, you will need access to an IR source. Sunlight will work but is not ideal.
|
|
||||||
The simpleist solution is to use the Wii sensor bar, i.e. emitter bar, supplied by the Wii system. Otherwise,
|
|
||||||
wire up a IR LED yourself.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <Wii.h>
|
|
||||||
#ifndef WIICAMERA // Used to check if WIICAMERA is defined
|
|
||||||
#error "Uncomment WIICAMERA in Wii.h to use this example"
|
|
||||||
#endif
|
|
||||||
USB Usb;
|
|
||||||
BTD Btd(&Usb); // You have to create the Bluetooth Dongle instance like so
|
|
||||||
/* You can create the instance of the class in two ways */
|
|
||||||
WII Wii(&Btd,PAIR); // This will start an inquiry and then pair with your Wiimote - you only have to do this once
|
|
||||||
//WII Wii(&Btd); // After the wiimote pairs once with the line of code above, you can simply create the instance like so and re upload and then press any button on the Wiimote
|
|
||||||
|
|
||||||
bool printAngle;
|
|
||||||
uint8_t printObjects;
|
|
||||||
|
|
||||||
void setup() {
|
|
||||||
Serial.begin(115200);
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.print(F("\r\nOSC did not start"));
|
|
||||||
while(1); //halt
|
|
||||||
}
|
|
||||||
Serial.print(F("\r\nWiimote Bluetooth Library Started"));
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop() {
|
|
||||||
Usb.Task();
|
|
||||||
if(Wii.wiimoteConnected) {
|
|
||||||
if(Wii.getButtonClick(HOME)) { // You can use getButtonPress to see if the button is held down
|
|
||||||
Serial.print(F("\r\nHOME"));
|
|
||||||
Wii.disconnect();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if(Wii.getButtonClick(ONE))
|
|
||||||
Wii.IRinitialize(); // Run the initialisation sequence
|
|
||||||
if(Wii.getButtonClick(MINUS) || Wii.getButtonClick(PLUS)) {
|
|
||||||
if(!Wii.isIRCameraEnabled())
|
|
||||||
Serial.print(F("\r\nEnable IR camera first"));
|
|
||||||
else {
|
|
||||||
if(Wii.getButtonPress(MINUS)) { // getButtonClick will only return true once
|
|
||||||
if(printObjects > 0)
|
|
||||||
printObjects--;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if(printObjects < 4)
|
|
||||||
printObjects++;
|
|
||||||
}
|
|
||||||
Serial.print(F("\r\nTracking "));
|
|
||||||
Serial.print(printObjects);
|
|
||||||
Serial.print(F(" objects"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(Wii.getButtonClick(A)) {
|
|
||||||
printAngle = !printAngle;
|
|
||||||
Serial.print(F("\r\nA"));
|
|
||||||
}
|
|
||||||
if(Wii.getButtonClick(B)) {
|
|
||||||
Serial.print(F("\r\nBattery level: "));
|
|
||||||
Serial.print(Wii.getBatteryLevel()); // You can get the battery level as well
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(printObjects > 0) {
|
|
||||||
if(Wii.getIRx1() != 0x3FF || Wii.getIRy1() != 0x3FF || Wii.getIRs1() != 0) { // Only print if the IR camera is actually seeing something
|
|
||||||
Serial.print(F("\r\nx1: "));
|
|
||||||
Serial.print(Wii.getIRx1());
|
|
||||||
Serial.print(F("\ty1: "));
|
|
||||||
Serial.print(Wii.getIRy1());
|
|
||||||
Serial.print(F("\ts1:"));
|
|
||||||
Serial.print(Wii.getIRs1());
|
|
||||||
}
|
|
||||||
if(printObjects > 1) {
|
|
||||||
if(Wii.getIRx2() != 0x3FF || Wii.getIRy2() != 0x3FF || Wii.getIRs2() != 0) {
|
|
||||||
Serial.print(F("\r\nx2: "));
|
|
||||||
Serial.print(Wii.getIRx2());
|
|
||||||
Serial.print(F("\ty2: "));
|
|
||||||
Serial.print(Wii.getIRy2());
|
|
||||||
Serial.print(F("\ts2:"));
|
|
||||||
Serial.print(Wii.getIRs2());
|
|
||||||
}
|
|
||||||
if(printObjects > 2) {
|
|
||||||
if(Wii.getIRx3() != 0x3FF || Wii.getIRy3() != 0x3FF || Wii.getIRs3() != 0) {
|
|
||||||
Serial.print(F("\r\nx3: "));
|
|
||||||
Serial.print(Wii.getIRx3());
|
|
||||||
Serial.print(F("\ty3: "));
|
|
||||||
Serial.print(Wii.getIRy3());
|
|
||||||
Serial.print(F("\ts3:"));
|
|
||||||
Serial.print(Wii.getIRs3());
|
|
||||||
}
|
|
||||||
if(printObjects > 3) {
|
|
||||||
if(Wii.getIRx4() != 0x3FF || Wii.getIRy4() != 0x3FF || Wii.getIRs4() != 0) {
|
|
||||||
Serial.print(F("\r\nx4: "));
|
|
||||||
Serial.print(Wii.getIRx4());
|
|
||||||
Serial.print(F("\ty4: "));
|
|
||||||
Serial.print(Wii.getIRy4());
|
|
||||||
Serial.print(F("\ts4:"));
|
|
||||||
Serial.print(Wii.getIRs4());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(printAngle) { // There is no extension bytes avaliable, so the Motionplus or Nunchuck can't be read
|
|
||||||
Serial.print(F("\r\nPitch: "));
|
|
||||||
Serial.print(Wii.getPitch());
|
|
||||||
Serial.print(F("\tRoll: "));
|
|
||||||
Serial.print(Wii.getRoll());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,113 +0,0 @@
|
||||||
/*
|
|
||||||
Example sketch for the Wiimote Bluetooth library - developed by Kristian Lauszus
|
|
||||||
This example show how one can use multiple controllers with the library
|
|
||||||
For more information visit my blog: http://blog.tkjelectronics.dk/ or
|
|
||||||
send me an e-mail: kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <Wii.h>
|
|
||||||
USB Usb;
|
|
||||||
BTD Btd(&Usb); // You have to create the Bluetooth Dongle instance like so
|
|
||||||
//WII Wii(&Btd,PAIR); // You will have to pair each controller with the dongle before you can define the instances like below
|
|
||||||
WII Wii_1(&Btd);
|
|
||||||
WII Wii_2(&Btd);
|
|
||||||
//WII Wii_3(&Btd); // You can create as many instances as you like, but it will take up a lot of RAM!!
|
|
||||||
|
|
||||||
WII* Wii[2]; // We will use this pointer to store the two instance, you can easily make it larger if you like
|
|
||||||
const uint8_t length = sizeof(Wii)/sizeof(Wii[0]); // Get the lenght of the array
|
|
||||||
bool printAngle[length];
|
|
||||||
|
|
||||||
void setup() {
|
|
||||||
Wii[0] = &Wii_1;
|
|
||||||
Wii[1] = &Wii_2;
|
|
||||||
//Wii[2] = &Wii_3; // You only need to uncomment this if you wanted to use another controller
|
|
||||||
|
|
||||||
Serial.begin(115200);
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.print(F("\r\nOSC did not start"));
|
|
||||||
while(1); //halt
|
|
||||||
}
|
|
||||||
Serial.print(F("\r\nWiimote Bluetooth Library Started"));
|
|
||||||
}
|
|
||||||
void loop() {
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
for(uint8_t i=0;i<length;i++) {
|
|
||||||
if(!Wii[i]) continue; // Skip if it hasn't been defined
|
|
||||||
if(Wii[i]->wiimoteConnected) {
|
|
||||||
if(Wii[i]->getButtonClick(HOME)) { // You can use getButtonPress to see if the button is held down
|
|
||||||
Serial.print(F("\r\nHOME"));
|
|
||||||
Wii[i]->disconnect();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if(Wii[i]->getButtonClick(LEFT)) {
|
|
||||||
Wii[i]->setAllOff();
|
|
||||||
Wii[i]->setLedOn(LED1);
|
|
||||||
Serial.print(F("\r\nLeft"));
|
|
||||||
}
|
|
||||||
if(Wii[i]->getButtonClick(RIGHT)) {
|
|
||||||
Wii[i]->setAllOff();
|
|
||||||
Wii[i]->setLedOn(LED3);
|
|
||||||
Serial.print(F("\r\nRight"));
|
|
||||||
}
|
|
||||||
if(Wii[i]->getButtonClick(DOWN)) {
|
|
||||||
Wii[i]->setAllOff();
|
|
||||||
Wii[i]->setLedOn(LED4);
|
|
||||||
Serial.print(F("\r\nDown"));
|
|
||||||
}
|
|
||||||
if(Wii[i]->getButtonClick(UP)) {
|
|
||||||
Wii[i]->setAllOff();
|
|
||||||
Wii[i]->setLedOn(LED2);
|
|
||||||
Serial.print(F("\r\nUp"));
|
|
||||||
}
|
|
||||||
|
|
||||||
if(Wii[i]->getButtonClick(PLUS))
|
|
||||||
Serial.print(F("\r\nPlus"));
|
|
||||||
if(Wii[i]->getButtonClick(MINUS))
|
|
||||||
Serial.print(F("\r\nMinus"));
|
|
||||||
|
|
||||||
if(Wii[i]->getButtonClick(ONE))
|
|
||||||
Serial.print(F("\r\nOne"));
|
|
||||||
if(Wii[i]->getButtonClick(TWO))
|
|
||||||
Serial.print(F("\r\nTwo"));
|
|
||||||
|
|
||||||
if(Wii[i]->getButtonClick(A)) {
|
|
||||||
printAngle[i] = !printAngle[i];
|
|
||||||
Serial.print(F("\r\nA"));
|
|
||||||
}
|
|
||||||
if(Wii[i]->getButtonClick(B)) {
|
|
||||||
Wii[i]->setRumbleToggle();
|
|
||||||
Serial.print(F("\r\nB"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(printAngle[i]) {
|
|
||||||
Serial.print(F("\r\nPitch: "));
|
|
||||||
Serial.print(Wii[i]->getPitch());
|
|
||||||
Serial.print(F("\tRoll: "));
|
|
||||||
Serial.print(Wii[i]->getRoll());
|
|
||||||
if(Wii[i]->motionPlusConnected) {
|
|
||||||
Serial.print(F("\tYaw: "));
|
|
||||||
Serial.print(Wii[i]->getYaw());
|
|
||||||
}
|
|
||||||
if(Wii[i]->nunchuckConnected) {
|
|
||||||
Serial.print(F("\tNunchuck Pitch: "));
|
|
||||||
Serial.print(Wii[i]->nunchuckPitch);
|
|
||||||
Serial.print(F("\tNunchuck Roll: "));
|
|
||||||
Serial.print(Wii[i]->nunchuckRoll);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(Wii[i]->nunchuckConnected) {
|
|
||||||
if(Wii[i]->getButtonClick(Z))
|
|
||||||
Serial.print(F("\r\nZ"));
|
|
||||||
if(Wii[i]->getButtonClick(C))
|
|
||||||
Serial.print(F("\r\nC"));
|
|
||||||
if(Wii[i]->getAnalogHat(HatX) > 137 || Wii[i]->getAnalogHat(HatX) < 117 || Wii[i]->getAnalogHat(HatY) > 137 || Wii[i]->getAnalogHat(HatY) < 117) {
|
|
||||||
Serial.print(F("\r\nHatX: "));
|
|
||||||
Serial.print(Wii[i]->getAnalogHat(HatX));
|
|
||||||
Serial.print(F("\tHatY: "));
|
|
||||||
Serial.print(Wii[i]->getAnalogHat(HatY));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,96 +0,0 @@
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
|
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
#include <hidboot.h>
|
|
||||||
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
class KbdRptParser : public KeyboardReportParser
|
|
||||||
{
|
|
||||||
void PrintKey(uint8_t mod, uint8_t key);
|
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void OnKeyDown (uint8_t mod, uint8_t key);
|
|
||||||
virtual void OnKeyUp (uint8_t mod, uint8_t key);
|
|
||||||
virtual void OnKeyPressed(uint8_t key);
|
|
||||||
};
|
|
||||||
|
|
||||||
void KbdRptParser::PrintKey(uint8_t m, uint8_t key)
|
|
||||||
{
|
|
||||||
MODIFIERKEYS mod;
|
|
||||||
*((uint8_t*)&mod) = m;
|
|
||||||
Serial.print((mod.bmLeftCtrl == 1) ? "C" : " ");
|
|
||||||
Serial.print((mod.bmLeftShift == 1) ? "S" : " ");
|
|
||||||
Serial.print((mod.bmLeftAlt == 1) ? "A" : " ");
|
|
||||||
Serial.print((mod.bmLeftGUI == 1) ? "G" : " ");
|
|
||||||
|
|
||||||
Serial.print(" >");
|
|
||||||
PrintHex<uint8_t>(key);
|
|
||||||
Serial.print("< ");
|
|
||||||
|
|
||||||
Serial.print((mod.bmRightCtrl == 1) ? "C" : " ");
|
|
||||||
Serial.print((mod.bmRightShift == 1) ? "S" : " ");
|
|
||||||
Serial.print((mod.bmRightAlt == 1) ? "A" : " ");
|
|
||||||
Serial.println((mod.bmRightGUI == 1) ? "G" : " ");
|
|
||||||
};
|
|
||||||
|
|
||||||
void KbdRptParser::OnKeyDown(uint8_t mod, uint8_t key)
|
|
||||||
{
|
|
||||||
Serial.print("DN ");
|
|
||||||
PrintKey(mod, key);
|
|
||||||
uint8_t c = OemToAscii(mod, key);
|
|
||||||
|
|
||||||
if (c)
|
|
||||||
OnKeyPressed(c);
|
|
||||||
}
|
|
||||||
|
|
||||||
void KbdRptParser::OnKeyUp(uint8_t mod, uint8_t key)
|
|
||||||
{
|
|
||||||
Serial.print("UP ");
|
|
||||||
PrintKey(mod, key);
|
|
||||||
}
|
|
||||||
|
|
||||||
void KbdRptParser::OnKeyPressed(uint8_t key)
|
|
||||||
{
|
|
||||||
Serial.print("ASCII: ");
|
|
||||||
Serial.println((char)key);
|
|
||||||
};
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
//USBHub Hub(&Usb);
|
|
||||||
HIDBoot<HID_PROTOCOL_KEYBOARD> Keyboard(&Usb);
|
|
||||||
|
|
||||||
uint32_t next_time;
|
|
||||||
|
|
||||||
KbdRptParser Prs;
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Serial.println("Start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1)
|
|
||||||
Serial.println("OSC did not start.");
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
|
|
||||||
next_time = millis() + 5000;
|
|
||||||
|
|
||||||
Keyboard.SetReportParser(0, (HIDReportParser*)&Prs);
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,86 +0,0 @@
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
#include <hidboot.h>
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
class MouseRptParser : public MouseReportParser
|
|
||||||
{
|
|
||||||
protected:
|
|
||||||
virtual void OnMouseMove (MOUSEINFO *mi);
|
|
||||||
virtual void OnLeftButtonUp (MOUSEINFO *mi);
|
|
||||||
virtual void OnLeftButtonDown (MOUSEINFO *mi);
|
|
||||||
virtual void OnRightButtonUp (MOUSEINFO *mi);
|
|
||||||
virtual void OnRightButtonDown (MOUSEINFO *mi);
|
|
||||||
virtual void OnMiddleButtonUp (MOUSEINFO *mi);
|
|
||||||
virtual void OnMiddleButtonDown (MOUSEINFO *mi);
|
|
||||||
};
|
|
||||||
void MouseRptParser::OnMouseMove(MOUSEINFO *mi)
|
|
||||||
{
|
|
||||||
Serial.print("dx=");
|
|
||||||
Serial.print(mi->dX, DEC);
|
|
||||||
Serial.print(" dy=");
|
|
||||||
Serial.println(mi->dY, DEC);
|
|
||||||
};
|
|
||||||
void MouseRptParser::OnLeftButtonUp (MOUSEINFO *mi)
|
|
||||||
{
|
|
||||||
Serial.println("L Butt Up");
|
|
||||||
};
|
|
||||||
void MouseRptParser::OnLeftButtonDown (MOUSEINFO *mi)
|
|
||||||
{
|
|
||||||
Serial.println("L Butt Dn");
|
|
||||||
};
|
|
||||||
void MouseRptParser::OnRightButtonUp (MOUSEINFO *mi)
|
|
||||||
{
|
|
||||||
Serial.println("R Butt Up");
|
|
||||||
};
|
|
||||||
void MouseRptParser::OnRightButtonDown (MOUSEINFO *mi)
|
|
||||||
{
|
|
||||||
Serial.println("R Butt Dn");
|
|
||||||
};
|
|
||||||
void MouseRptParser::OnMiddleButtonUp (MOUSEINFO *mi)
|
|
||||||
{
|
|
||||||
Serial.println("M Butt Up");
|
|
||||||
};
|
|
||||||
void MouseRptParser::OnMiddleButtonDown (MOUSEINFO *mi)
|
|
||||||
{
|
|
||||||
Serial.println("M Butt Dn");
|
|
||||||
};
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
USBHub Hub(&Usb);
|
|
||||||
HIDBoot<HID_PROTOCOL_MOUSE> Mouse(&Usb);
|
|
||||||
|
|
||||||
uint32_t next_time;
|
|
||||||
|
|
||||||
MouseRptParser Prs;
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Serial.println("Start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1)
|
|
||||||
Serial.println("OSC did not start.");
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
|
|
||||||
next_time = millis() + 5000;
|
|
||||||
|
|
||||||
Mouse.SetReportParser(0,(HIDReportParser*)&Prs);
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,46 +0,0 @@
|
||||||
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
|
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
#include <hid.h>
|
|
||||||
#include <hiduniversal.h>
|
|
||||||
|
|
||||||
#include "hidjoystickrptparser.h"
|
|
||||||
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
USBHub Hub(&Usb);
|
|
||||||
HIDUniversal Hid(&Usb);
|
|
||||||
JoystickEvents JoyEvents;
|
|
||||||
JoystickReportParser Joy(&JoyEvents);
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Serial.println("Start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1)
|
|
||||||
Serial.println("OSC did not start.");
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
|
|
||||||
if (!Hid.SetReportParser(0, &Joy))
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetReportParser"), 1 );
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,95 +0,0 @@
|
||||||
#include "hidjoystickrptparser.h"
|
|
||||||
|
|
||||||
JoystickReportParser::JoystickReportParser(JoystickEvents *evt) :
|
|
||||||
joyEvents(evt),
|
|
||||||
oldHat(0xDE),
|
|
||||||
oldButtons(0)
|
|
||||||
{
|
|
||||||
for (uint8_t i=0; i<RPT_GEMEPAD_LEN; i++)
|
|
||||||
oldPad[i] = 0xD;
|
|
||||||
}
|
|
||||||
|
|
||||||
void JoystickReportParser::Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf)
|
|
||||||
{
|
|
||||||
bool match = true;
|
|
||||||
|
|
||||||
// Checking if there are changes in report since the method was last called
|
|
||||||
for (uint8_t i=0; i<RPT_GEMEPAD_LEN; i++)
|
|
||||||
if (buf[i] != oldPad[i])
|
|
||||||
{
|
|
||||||
match = false;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Calling Game Pad event handler
|
|
||||||
if (!match && joyEvents)
|
|
||||||
{
|
|
||||||
joyEvents->OnGamePadChanged((const GamePadEventData*)buf);
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<RPT_GEMEPAD_LEN; i++) oldPad[i] = buf[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t hat = (buf[5] & 0xF);
|
|
||||||
|
|
||||||
// Calling Hat Switch event handler
|
|
||||||
if (hat != oldHat && joyEvents)
|
|
||||||
{
|
|
||||||
joyEvents->OnHatSwitch(hat);
|
|
||||||
oldHat = hat;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint16_t buttons = (0x0000 | buf[6]);
|
|
||||||
buttons <<= 4;
|
|
||||||
buttons |= (buf[5] >> 4);
|
|
||||||
uint16_t changes = (buttons ^ oldButtons);
|
|
||||||
|
|
||||||
// Calling Button Event Handler for every button changed
|
|
||||||
if (changes)
|
|
||||||
{
|
|
||||||
for (uint8_t i=0; i<0x0C; i++)
|
|
||||||
{
|
|
||||||
uint16_t mask = (0x0001 << i);
|
|
||||||
|
|
||||||
if (((mask & changes) > 0) && joyEvents)
|
|
||||||
if ((buttons & mask) > 0)
|
|
||||||
joyEvents->OnButtonDn(i+1);
|
|
||||||
else
|
|
||||||
joyEvents->OnButtonUp(i+1);
|
|
||||||
}
|
|
||||||
oldButtons = buttons;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void JoystickEvents::OnGamePadChanged(const GamePadEventData *evt)
|
|
||||||
{
|
|
||||||
Serial.print("X: ");
|
|
||||||
PrintHex<uint8_t>(evt->X);
|
|
||||||
Serial.print("\tY: ");
|
|
||||||
PrintHex<uint8_t>(evt->Y);
|
|
||||||
Serial.print("\tZ: ");
|
|
||||||
PrintHex<uint8_t>(evt->Z1);
|
|
||||||
Serial.print("\tZ: ");
|
|
||||||
PrintHex<uint8_t>(evt->Z2);
|
|
||||||
Serial.print("\tRz: ");
|
|
||||||
PrintHex<uint8_t>(evt->Rz);
|
|
||||||
Serial.println("");
|
|
||||||
}
|
|
||||||
|
|
||||||
void JoystickEvents::OnHatSwitch(uint8_t hat)
|
|
||||||
{
|
|
||||||
Serial.print("Hat Switch: ");
|
|
||||||
PrintHex<uint8_t>(hat);
|
|
||||||
Serial.println("");
|
|
||||||
}
|
|
||||||
|
|
||||||
void JoystickEvents::OnButtonUp(uint8_t but_id)
|
|
||||||
{
|
|
||||||
Serial.print("Up: ");
|
|
||||||
Serial.println(but_id, DEC);
|
|
||||||
}
|
|
||||||
|
|
||||||
void JoystickEvents::OnButtonDn(uint8_t but_id)
|
|
||||||
{
|
|
||||||
Serial.print("Dn: ");
|
|
||||||
Serial.println(but_id, DEC);
|
|
||||||
}
|
|
|
@ -1,54 +0,0 @@
|
||||||
#if !defined(__HIDJOYSTICKRPTPARSER_H__)
|
|
||||||
#define __HIDJOYSTICKRPTPARSER_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
#include "confdescparser.h"
|
|
||||||
#include "hid.h"
|
|
||||||
|
|
||||||
struct GamePadEventData
|
|
||||||
{
|
|
||||||
uint8_t X, Y, Z1, Z2, Rz;
|
|
||||||
};
|
|
||||||
|
|
||||||
class JoystickEvents
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual void OnGamePadChanged(const GamePadEventData *evt);
|
|
||||||
virtual void OnHatSwitch(uint8_t hat);
|
|
||||||
virtual void OnButtonUp(uint8_t but_id);
|
|
||||||
virtual void OnButtonDn(uint8_t but_id);
|
|
||||||
};
|
|
||||||
|
|
||||||
#define RPT_GEMEPAD_LEN 5
|
|
||||||
|
|
||||||
class JoystickReportParser : public HIDReportParser
|
|
||||||
{
|
|
||||||
JoystickEvents *joyEvents;
|
|
||||||
|
|
||||||
uint8_t oldPad[RPT_GEMEPAD_LEN];
|
|
||||||
uint8_t oldHat;
|
|
||||||
uint16_t oldButtons;
|
|
||||||
|
|
||||||
public:
|
|
||||||
JoystickReportParser(JoystickEvents *evt);
|
|
||||||
|
|
||||||
virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // __HIDJOYSTICKRPTPARSER_H__
|
|
|
@ -1,83 +0,0 @@
|
||||||
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
|
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
#include <hid.h>
|
|
||||||
#include <hiduniversal.h>
|
|
||||||
#include <hidescriptorparser.h>
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
#include "pgmstrings.h"
|
|
||||||
|
|
||||||
class HIDUniversal2 : public HIDUniversal
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
HIDUniversal2(USB *usb) : HIDUniversal(usb) {};
|
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual uint8_t OnInitSuccessful();
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t HIDUniversal2::OnInitSuccessful()
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
|
|
||||||
HexDumper<USBReadParser, uint16_t, uint16_t> Hex;
|
|
||||||
ReportDescParser Rpt;
|
|
||||||
|
|
||||||
if (rcode = GetReportDescr(0, &Hex))
|
|
||||||
goto FailGetReportDescr1;
|
|
||||||
|
|
||||||
if (rcode = GetReportDescr(0, &Rpt))
|
|
||||||
goto FailGetReportDescr2;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
FailGetReportDescr1:
|
|
||||||
USBTRACE("GetReportDescr1:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetReportDescr2:
|
|
||||||
USBTRACE("GetReportDescr2:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
Fail:
|
|
||||||
Serial.println(rcode, HEX);
|
|
||||||
Release();
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
//USBHub Hub(&Usb);
|
|
||||||
HIDUniversal2 Hid(&Usb);
|
|
||||||
UniversalReportParser Uni;
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Serial.println("Start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1)
|
|
||||||
Serial.println("OSC did not start.");
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
|
|
||||||
if (!Hid.SetReportParser(0, &Uni))
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetReportParser"), 1 );
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,52 +0,0 @@
|
||||||
#if !defined(__PGMSTRINGS_H__)
|
|
||||||
#define __PGMSTRINGS_H__
|
|
||||||
|
|
||||||
#define LOBYTE(x) ((char*)(&(x)))[0]
|
|
||||||
#define HIBYTE(x) ((char*)(&(x)))[1]
|
|
||||||
#define BUFSIZE 256 //buffer size
|
|
||||||
|
|
||||||
|
|
||||||
/* Print strings in Program Memory */
|
|
||||||
const char Gen_Error_str[] PROGMEM = "\r\nRequest error. Error code:\t";
|
|
||||||
const char Dev_Header_str[] PROGMEM ="\r\nDevice descriptor: ";
|
|
||||||
const char Dev_Length_str[] PROGMEM ="\r\nDescriptor Length:\t";
|
|
||||||
const char Dev_Type_str[] PROGMEM ="\r\nDescriptor type:\t";
|
|
||||||
const char Dev_Version_str[] PROGMEM ="\r\nUSB version:\t\t";
|
|
||||||
const char Dev_Class_str[] PROGMEM ="\r\nDevice class:\t\t";
|
|
||||||
const char Dev_Subclass_str[] PROGMEM ="\r\nDevice Subclass:\t";
|
|
||||||
const char Dev_Protocol_str[] PROGMEM ="\r\nDevice Protocol:\t";
|
|
||||||
const char Dev_Pktsize_str[] PROGMEM ="\r\nMax.packet size:\t";
|
|
||||||
const char Dev_Vendor_str[] PROGMEM ="\r\nVendor ID:\t\t";
|
|
||||||
const char Dev_Product_str[] PROGMEM ="\r\nProduct ID:\t\t";
|
|
||||||
const char Dev_Revision_str[] PROGMEM ="\r\nRevision ID:\t\t";
|
|
||||||
const char Dev_Mfg_str[] PROGMEM ="\r\nMfg.string index:\t";
|
|
||||||
const char Dev_Prod_str[] PROGMEM ="\r\nProd.string index:\t";
|
|
||||||
const char Dev_Serial_str[] PROGMEM ="\r\nSerial number index:\t";
|
|
||||||
const char Dev_Nconf_str[] PROGMEM ="\r\nNumber of conf.:\t";
|
|
||||||
const char Conf_Trunc_str[] PROGMEM ="Total length truncated to 256 bytes";
|
|
||||||
const char Conf_Header_str[] PROGMEM ="\r\nConfiguration descriptor:";
|
|
||||||
const char Conf_Totlen_str[] PROGMEM ="\r\nTotal length:\t\t";
|
|
||||||
const char Conf_Nint_str[] PROGMEM ="\r\nNum.intf:\t\t";
|
|
||||||
const char Conf_Value_str[] PROGMEM ="\r\nConf.value:\t\t";
|
|
||||||
const char Conf_String_str[] PROGMEM ="\r\nConf.string:\t\t";
|
|
||||||
const char Conf_Attr_str[] PROGMEM ="\r\nAttr.:\t\t\t";
|
|
||||||
const char Conf_Pwr_str[] PROGMEM ="\r\nMax.pwr:\t\t";
|
|
||||||
const char Int_Header_str[] PROGMEM ="\r\n\r\nInterface descriptor:";
|
|
||||||
const char Int_Number_str[] PROGMEM ="\r\nIntf.number:\t\t";
|
|
||||||
const char Int_Alt_str[] PROGMEM ="\r\nAlt.:\t\t\t";
|
|
||||||
const char Int_Endpoints_str[] PROGMEM ="\r\nEndpoints:\t\t";
|
|
||||||
const char Int_Class_str[] PROGMEM ="\r\nIntf. Class:\t\t";
|
|
||||||
const char Int_Subclass_str[] PROGMEM ="\r\nIntf. Subclass:\t\t";
|
|
||||||
const char Int_Protocol_str[] PROGMEM ="\r\nIntf. Protocol:\t\t";
|
|
||||||
const char Int_String_str[] PROGMEM ="\r\nIntf.string:\t\t";
|
|
||||||
const char End_Header_str[] PROGMEM ="\r\n\r\nEndpoint descriptor:";
|
|
||||||
const char End_Address_str[] PROGMEM ="\r\nEndpoint address:\t";
|
|
||||||
const char End_Attr_str[] PROGMEM ="\r\nAttr.:\t\t\t";
|
|
||||||
const char End_Pktsize_str[] PROGMEM ="\r\nMax.pkt size:\t\t";
|
|
||||||
const char End_Interval_str[] PROGMEM ="\r\nPolling interval:\t";
|
|
||||||
const char Unk_Header_str[] PROGMEM = "\r\nUnknown descriptor:";
|
|
||||||
const char Unk_Length_str[] PROGMEM ="\r\nLength:\t\t";
|
|
||||||
const char Unk_Type_str[] PROGMEM ="\r\nType:\t\t";
|
|
||||||
const char Unk_Contents_str[] PROGMEM ="\r\nContents:\t";
|
|
||||||
|
|
||||||
#endif // __PGMSTRINGS_H__
|
|
|
@ -1,47 +0,0 @@
|
||||||
/* Simplified Logitech Extreme 3D Pro Joystick Report Parser */
|
|
||||||
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
|
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
#include <hid.h>
|
|
||||||
#include <hiduniversal.h>
|
|
||||||
|
|
||||||
#include "le3dp_rptparser.h"
|
|
||||||
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
USBHub Hub(&Usb);
|
|
||||||
HIDUniversal Hid(&Usb);
|
|
||||||
JoystickEvents JoyEvents;
|
|
||||||
JoystickReportParser Joy(&JoyEvents);
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Serial.println("Start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1)
|
|
||||||
Serial.println("OSC did not start.");
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
|
|
||||||
if (!Hid.SetReportParser(0, &Joy))
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetReportParser"), 1 );
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
#include "le3dp_rptparser.h"
|
|
||||||
|
|
||||||
JoystickReportParser::JoystickReportParser(JoystickEvents *evt) :
|
|
||||||
joyEvents(evt)
|
|
||||||
{}
|
|
||||||
|
|
||||||
void JoystickReportParser::Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf)
|
|
||||||
{
|
|
||||||
bool match = true;
|
|
||||||
|
|
||||||
// Checking if there are changes in report since the method was last called
|
|
||||||
for (uint8_t i=0; i<RPT_GAMEPAD_LEN; i++) {
|
|
||||||
if( buf[i] != oldPad[i] ) {
|
|
||||||
match = false;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Calling Game Pad event handler
|
|
||||||
if (!match && joyEvents) {
|
|
||||||
joyEvents->OnGamePadChanged((const GamePadEventData*)buf);
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<RPT_GAMEPAD_LEN; i++) oldPad[i] = buf[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void JoystickEvents::OnGamePadChanged(const GamePadEventData *evt)
|
|
||||||
{
|
|
||||||
Serial.print("X: ");
|
|
||||||
PrintHex<uint16_t>(evt->x);
|
|
||||||
Serial.print(" Y: ");
|
|
||||||
PrintHex<uint16_t>(evt->y);
|
|
||||||
Serial.print(" Hat Switch: ");
|
|
||||||
PrintHex<uint8_t>(evt->hat);
|
|
||||||
Serial.print(" Twist: ");
|
|
||||||
PrintHex<uint8_t>(evt->twist);
|
|
||||||
Serial.print(" Slider: ");
|
|
||||||
PrintHex<uint8_t>(evt->slider);
|
|
||||||
Serial.print(" Buttons A: ");
|
|
||||||
PrintHex<uint8_t>(evt->buttons_a);
|
|
||||||
Serial.print(" Buttons B: ");
|
|
||||||
PrintHex<uint8_t>(evt->buttons_b);
|
|
||||||
Serial.println("");
|
|
||||||
}
|
|
|
@ -1,60 +0,0 @@
|
||||||
#if !defined(__HIDJOYSTICKRPTPARSER_H__)
|
|
||||||
#define __HIDJOYSTICKRPTPARSER_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
#include "confdescparser.h"
|
|
||||||
#include "hid.h"
|
|
||||||
|
|
||||||
struct GamePadEventData
|
|
||||||
{
|
|
||||||
union { //axes and hut switch
|
|
||||||
uint32_t axes;
|
|
||||||
struct {
|
|
||||||
uint32_t x : 10;
|
|
||||||
uint32_t y : 10;
|
|
||||||
uint32_t hat : 4;
|
|
||||||
uint32_t twist : 8;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
uint8_t buttons_a;
|
|
||||||
uint8_t slider;
|
|
||||||
uint8_t buttons_b;
|
|
||||||
};
|
|
||||||
|
|
||||||
class JoystickEvents
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual void OnGamePadChanged(const GamePadEventData *evt);
|
|
||||||
};
|
|
||||||
|
|
||||||
#define RPT_GAMEPAD_LEN sizeof(GamePadEventData)/sizeof(uint8_t)
|
|
||||||
|
|
||||||
class JoystickReportParser : public HIDReportParser
|
|
||||||
{
|
|
||||||
JoystickEvents *joyEvents;
|
|
||||||
|
|
||||||
uint8_t oldPad[RPT_GAMEPAD_LEN];
|
|
||||||
|
|
||||||
public:
|
|
||||||
JoystickReportParser(JoystickEvents *evt);
|
|
||||||
|
|
||||||
virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // __HIDJOYSTICKRPTPARSER_H__
|
|
|
@ -1,154 +0,0 @@
|
||||||
/*
|
|
||||||
Example sketch for the PS3 USB library - developed by Kristian Lauszus
|
|
||||||
For more information visit my blog: http://blog.tkjelectronics.dk/ or
|
|
||||||
send me an e-mail: kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <PS3USB.h>
|
|
||||||
USB Usb;
|
|
||||||
/* You can create the instance of the class in two ways */
|
|
||||||
PS3USB PS3(&Usb); // This will just create the instance
|
|
||||||
//PS3USB PS3(&Usb,0x00,0x15,0x83,0x3D,0x0A,0x57); // This will also store the bluetooth address - this can be obtained from the dongle when running the sketch
|
|
||||||
|
|
||||||
boolean printAngle;
|
|
||||||
uint8_t state = 0;
|
|
||||||
|
|
||||||
void setup() {
|
|
||||||
Serial.begin(115200);
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.print(F("\r\nOSC did not start"));
|
|
||||||
while(1); //halt
|
|
||||||
}
|
|
||||||
Serial.print(F("\r\nPS3 USB Library Started"));
|
|
||||||
}
|
|
||||||
void loop() {
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if(PS3.PS3Connected || PS3.PS3NavigationConnected) {
|
|
||||||
if(PS3.getAnalogHat(LeftHatX) > 137 || PS3.getAnalogHat(LeftHatX) < 117 || PS3.getAnalogHat(LeftHatY) > 137 || PS3.getAnalogHat(LeftHatY) < 117 || PS3.getAnalogHat(RightHatX) > 137 || PS3.getAnalogHat(RightHatX) < 117 || PS3.getAnalogHat(RightHatY) > 137 || PS3.getAnalogHat(RightHatY) < 117) {
|
|
||||||
Serial.print(F("\r\nLeftHatX: "));
|
|
||||||
Serial.print(PS3.getAnalogHat(LeftHatX));
|
|
||||||
Serial.print(F("\tLeftHatY: "));
|
|
||||||
Serial.print(PS3.getAnalogHat(LeftHatY));
|
|
||||||
Serial.print(F("\tRightHatX: "));
|
|
||||||
Serial.print(PS3.getAnalogHat(RightHatX));
|
|
||||||
Serial.print(F("\tRightHatY: "));
|
|
||||||
Serial.print(PS3.getAnalogHat(RightHatY));
|
|
||||||
}
|
|
||||||
// Analog button values can be read from almost all buttons
|
|
||||||
if(PS3.getAnalogButton(L2_ANALOG) > 0 || PS3.getAnalogButton(R2_ANALOG) > 0) {
|
|
||||||
Serial.print(F("\r\nL2: "));
|
|
||||||
Serial.print(PS3.getAnalogButton(L2_ANALOG));
|
|
||||||
Serial.print(F("\tR2: "));
|
|
||||||
Serial.print(PS3.getAnalogButton(R2_ANALOG));
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(PS))
|
|
||||||
Serial.print(F("\r\nPS"));
|
|
||||||
|
|
||||||
if(PS3.getButtonClick(TRIANGLE))
|
|
||||||
Serial.print(F("\r\nTraingle"));
|
|
||||||
if(PS3.getButtonClick(CIRCLE))
|
|
||||||
Serial.print(F("\r\nCircle"));
|
|
||||||
if(PS3.getButtonClick(CROSS))
|
|
||||||
Serial.print(F("\r\nCross"));
|
|
||||||
if(PS3.getButtonClick(SQUARE))
|
|
||||||
Serial.print(F("\r\nSquare"));
|
|
||||||
|
|
||||||
if(PS3.getButtonClick(UP)) {
|
|
||||||
Serial.print(F("\r\nUp"));
|
|
||||||
PS3.setAllOff();
|
|
||||||
PS3.setLedOn(LED4);
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(RIGHT)) {
|
|
||||||
Serial.print(F("\r\nRight"));
|
|
||||||
PS3.setAllOff();
|
|
||||||
PS3.setLedOn(LED1);
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(DOWN)) {
|
|
||||||
Serial.print(F("\r\nDown"));
|
|
||||||
PS3.setAllOff();
|
|
||||||
PS3.setLedOn(LED2);
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(LEFT)) {
|
|
||||||
Serial.print(F("\r\nLeft"));
|
|
||||||
PS3.setAllOff();
|
|
||||||
PS3.setLedOn(LED3);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(PS3.getButtonClick(L1))
|
|
||||||
Serial.print(F("\r\nL1"));
|
|
||||||
if(PS3.getButtonClick(L3))
|
|
||||||
Serial.print(F("\r\nL3"));
|
|
||||||
if(PS3.getButtonClick(R1))
|
|
||||||
Serial.print(F("\r\nR1"));
|
|
||||||
if(PS3.getButtonClick(R3))
|
|
||||||
Serial.print(F("\r\nR3"));
|
|
||||||
|
|
||||||
if(PS3.getButtonClick(SELECT)) {
|
|
||||||
Serial.print(F("\r\nSelect - "));
|
|
||||||
Serial.print(PS3.getStatusString());
|
|
||||||
}
|
|
||||||
if(PS3.getButtonClick(START)) {
|
|
||||||
Serial.print(F("\r\nStart"));
|
|
||||||
printAngle = !printAngle;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(printAngle) {
|
|
||||||
Serial.print(F("\r\nPitch: "));
|
|
||||||
Serial.print(PS3.getAngle(Pitch));
|
|
||||||
Serial.print(F("\tRoll: "));
|
|
||||||
Serial.print(PS3.getAngle(Roll));
|
|
||||||
}
|
|
||||||
else if(PS3.PS3MoveConnected) { // One can only set the color of the bulb, set the rumble, set and get the bluetooth address and calibrate the magnetometer via USB
|
|
||||||
switch(state) {
|
|
||||||
case 0:
|
|
||||||
PS3.moveSetRumble(0);
|
|
||||||
PS3.moveSetBulb(Off);
|
|
||||||
state = 1;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 1:
|
|
||||||
PS3.moveSetRumble(75);
|
|
||||||
PS3.moveSetBulb(Red);
|
|
||||||
state = 2;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 2:
|
|
||||||
PS3.moveSetRumble(125);
|
|
||||||
PS3.moveSetBulb(Green);
|
|
||||||
state = 3;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 3:
|
|
||||||
PS3.moveSetRumble(150);
|
|
||||||
PS3.moveSetBulb(Blue);
|
|
||||||
state = 4;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 4:
|
|
||||||
PS3.moveSetRumble(175);
|
|
||||||
PS3.moveSetBulb(Yellow);
|
|
||||||
state = 5;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 5:
|
|
||||||
PS3.moveSetRumble(200);
|
|
||||||
PS3.moveSetBulb(Lightblue);
|
|
||||||
state = 6;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 6:
|
|
||||||
PS3.moveSetRumble(225);
|
|
||||||
PS3.moveSetBulb(Purble);
|
|
||||||
state = 7;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 7:
|
|
||||||
PS3.moveSetRumble(250);
|
|
||||||
PS3.moveSetBulb(White);
|
|
||||||
state = 0;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
delay(1000);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,347 +0,0 @@
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
|
|
||||||
#include "pgmstrings.h"
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
//USBHub Hub1(&Usb);
|
|
||||||
//USBHub Hub2(&Usb);
|
|
||||||
//USBHub Hub3(&Usb);
|
|
||||||
//USBHub Hub4(&Usb);
|
|
||||||
//USBHub Hub5(&Usb);
|
|
||||||
//USBHub Hub6(&Usb);
|
|
||||||
//USBHub Hub7(&Usb);
|
|
||||||
|
|
||||||
uint32_t next_time;
|
|
||||||
|
|
||||||
void PrintAllAddresses(UsbDevice *pdev)
|
|
||||||
{
|
|
||||||
UsbDeviceAddress adr;
|
|
||||||
adr.devAddress = pdev->address;
|
|
||||||
Serial.print("\r\nAddr:");
|
|
||||||
Serial.print(adr.devAddress, HEX);
|
|
||||||
Serial.print("(");
|
|
||||||
Serial.print(adr.bmHub, HEX);
|
|
||||||
Serial.print(".");
|
|
||||||
Serial.print(adr.bmParent, HEX);
|
|
||||||
Serial.print(".");
|
|
||||||
Serial.print(adr.bmAddress, HEX);
|
|
||||||
Serial.println(")");
|
|
||||||
}
|
|
||||||
|
|
||||||
void PrintAddress(uint8_t addr)
|
|
||||||
{
|
|
||||||
UsbDeviceAddress adr;
|
|
||||||
adr.devAddress = addr;
|
|
||||||
Serial.print("\r\nADDR:\t");
|
|
||||||
Serial.println(adr.devAddress,HEX);
|
|
||||||
Serial.print("DEV:\t");
|
|
||||||
Serial.println(adr.bmAddress,HEX);
|
|
||||||
Serial.print("PRNT:\t");
|
|
||||||
Serial.println(adr.bmParent,HEX);
|
|
||||||
Serial.print("HUB:\t");
|
|
||||||
Serial.println(adr.bmHub,HEX);
|
|
||||||
}
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Serial.println("Start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1)
|
|
||||||
Serial.println("OSC did not start.");
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
|
|
||||||
next_time = millis() + 10000;
|
|
||||||
}
|
|
||||||
|
|
||||||
byte getdevdescr( byte addr, byte &num_conf );
|
|
||||||
|
|
||||||
void PrintDescriptors(uint8_t addr)
|
|
||||||
{
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
byte num_conf = 0;
|
|
||||||
|
|
||||||
rcode = getdevdescr( (byte)addr, num_conf );
|
|
||||||
if( rcode )
|
|
||||||
{
|
|
||||||
printProgStr(Gen_Error_str);
|
|
||||||
print_hex( rcode, 8 );
|
|
||||||
}
|
|
||||||
Serial.print("\r\n");
|
|
||||||
|
|
||||||
for (int i=0; i<num_conf; i++)
|
|
||||||
{
|
|
||||||
rcode = getconfdescr( addr, i ); // get configuration descriptor
|
|
||||||
if( rcode )
|
|
||||||
{
|
|
||||||
printProgStr(Gen_Error_str);
|
|
||||||
print_hex(rcode, 8);
|
|
||||||
}
|
|
||||||
Serial.println("\r\n");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void PrintAllDescriptors(UsbDevice *pdev)
|
|
||||||
{
|
|
||||||
Serial.println("\r\n");
|
|
||||||
print_hex(pdev->address, 8);
|
|
||||||
Serial.println("\r\n--");
|
|
||||||
PrintDescriptors( pdev->address );
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if( Usb.getUsbTaskState() == USB_STATE_RUNNING )
|
|
||||||
{
|
|
||||||
//if (millis() >= next_time)
|
|
||||||
{
|
|
||||||
Usb.ForEachUsbDevice(&PrintAllDescriptors);
|
|
||||||
Usb.ForEachUsbDevice(&PrintAllAddresses);
|
|
||||||
|
|
||||||
while( 1 ); //stop
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
byte getdevdescr( byte addr, byte &num_conf )
|
|
||||||
{
|
|
||||||
USB_DEVICE_DESCRIPTOR buf;
|
|
||||||
byte rcode;
|
|
||||||
rcode = Usb.getDevDescr( addr, 0, 0x12, ( uint8_t *)&buf );
|
|
||||||
if( rcode ) {
|
|
||||||
return( rcode );
|
|
||||||
}
|
|
||||||
printProgStr(Dev_Header_str);
|
|
||||||
printProgStr(Dev_Length_str);
|
|
||||||
print_hex( buf.bLength, 8 );
|
|
||||||
printProgStr(Dev_Type_str);
|
|
||||||
print_hex( buf.bDescriptorType, 8 );
|
|
||||||
printProgStr(Dev_Version_str);
|
|
||||||
print_hex( buf.bcdUSB, 16 );
|
|
||||||
printProgStr(Dev_Class_str);
|
|
||||||
print_hex( buf.bDeviceClass, 8 );
|
|
||||||
printProgStr(Dev_Subclass_str);
|
|
||||||
print_hex( buf.bDeviceSubClass, 8 );
|
|
||||||
printProgStr(Dev_Protocol_str);
|
|
||||||
print_hex( buf.bDeviceProtocol, 8 );
|
|
||||||
printProgStr(Dev_Pktsize_str);
|
|
||||||
print_hex( buf.bMaxPacketSize0, 8 );
|
|
||||||
printProgStr(Dev_Vendor_str);
|
|
||||||
print_hex( buf.idVendor, 16 );
|
|
||||||
printProgStr(Dev_Product_str);
|
|
||||||
print_hex( buf.idProduct, 16 );
|
|
||||||
printProgStr(Dev_Revision_str);
|
|
||||||
print_hex( buf.bcdDevice, 16 );
|
|
||||||
printProgStr(Dev_Mfg_str);
|
|
||||||
print_hex( buf.iManufacturer, 8 );
|
|
||||||
printProgStr(Dev_Prod_str);
|
|
||||||
print_hex( buf.iProduct, 8 );
|
|
||||||
printProgStr(Dev_Serial_str);
|
|
||||||
print_hex( buf.iSerialNumber, 8 );
|
|
||||||
printProgStr(Dev_Nconf_str);
|
|
||||||
print_hex( buf.bNumConfigurations, 8 );
|
|
||||||
num_conf = buf.bNumConfigurations;
|
|
||||||
return( 0 );
|
|
||||||
}
|
|
||||||
|
|
||||||
void printhubdescr(uint8_t *descrptr, uint8_t addr)
|
|
||||||
{
|
|
||||||
HubDescriptor *pHub = (HubDescriptor*) descrptr;
|
|
||||||
uint8_t len = *((uint8_t*)descrptr);
|
|
||||||
|
|
||||||
printProgStr(PSTR("\r\n\r\nHub Descriptor:\r\n"));
|
|
||||||
printProgStr(PSTR("bDescLength:\t\t"));
|
|
||||||
Serial.println(pHub->bDescLength, HEX);
|
|
||||||
|
|
||||||
printProgStr(PSTR("bDescriptorType:\t"));
|
|
||||||
Serial.println(pHub->bDescriptorType, HEX);
|
|
||||||
|
|
||||||
printProgStr(PSTR("bNbrPorts:\t\t"));
|
|
||||||
Serial.println(pHub->bNbrPorts, HEX);
|
|
||||||
|
|
||||||
printProgStr(PSTR("LogPwrSwitchMode:\t"));
|
|
||||||
Serial.println(pHub->LogPwrSwitchMode, BIN);
|
|
||||||
|
|
||||||
printProgStr(PSTR("CompoundDevice:\t\t"));
|
|
||||||
Serial.println(pHub->CompoundDevice, BIN);
|
|
||||||
|
|
||||||
printProgStr(PSTR("OverCurrentProtectMode:\t"));
|
|
||||||
Serial.println(pHub->OverCurrentProtectMode, BIN);
|
|
||||||
|
|
||||||
printProgStr(PSTR("TTThinkTime:\t\t"));
|
|
||||||
Serial.println(pHub->TTThinkTime, BIN);
|
|
||||||
|
|
||||||
printProgStr(PSTR("PortIndicatorsSupported:"));
|
|
||||||
Serial.println(pHub->PortIndicatorsSupported, BIN);
|
|
||||||
|
|
||||||
printProgStr(PSTR("Reserved:\t\t"));
|
|
||||||
Serial.println(pHub->Reserved, HEX);
|
|
||||||
|
|
||||||
printProgStr(PSTR("bPwrOn2PwrGood:\t\t"));
|
|
||||||
Serial.println(pHub->bPwrOn2PwrGood, HEX);
|
|
||||||
|
|
||||||
printProgStr(PSTR("bHubContrCurrent:\t"));
|
|
||||||
Serial.println(pHub->bHubContrCurrent, HEX);
|
|
||||||
|
|
||||||
for (uint8_t i=7; i<len; i++)
|
|
||||||
print_hex(descrptr[i], 8);
|
|
||||||
|
|
||||||
//for (uint8_t i=1; i<=pHub->bNbrPorts; i++)
|
|
||||||
// PrintHubPortStatus(&Usb, addr, i, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
byte getconfdescr( byte addr, byte conf )
|
|
||||||
{
|
|
||||||
uint8_t buf[ BUFSIZE ];
|
|
||||||
uint8_t* buf_ptr = buf;
|
|
||||||
byte rcode;
|
|
||||||
byte descr_length;
|
|
||||||
byte descr_type;
|
|
||||||
unsigned int total_length;
|
|
||||||
rcode = Usb.getConfDescr( addr, 0, 4, conf, buf ); //get total length
|
|
||||||
LOBYTE( total_length ) = buf[ 2 ];
|
|
||||||
HIBYTE( total_length ) = buf[ 3 ];
|
|
||||||
if( total_length > 256 ) { //check if total length is larger than buffer
|
|
||||||
printProgStr(Conf_Trunc_str);
|
|
||||||
total_length = 256;
|
|
||||||
}
|
|
||||||
rcode = Usb.getConfDescr( addr, 0, total_length, conf, buf ); //get the whole descriptor
|
|
||||||
while( buf_ptr < buf + total_length ) { //parsing descriptors
|
|
||||||
descr_length = *( buf_ptr );
|
|
||||||
descr_type = *( buf_ptr + 1 );
|
|
||||||
switch( descr_type ) {
|
|
||||||
case( USB_DESCRIPTOR_CONFIGURATION ):
|
|
||||||
printconfdescr( buf_ptr );
|
|
||||||
break;
|
|
||||||
case( USB_DESCRIPTOR_INTERFACE ):
|
|
||||||
printintfdescr( buf_ptr );
|
|
||||||
break;
|
|
||||||
case( USB_DESCRIPTOR_ENDPOINT ):
|
|
||||||
printepdescr( buf_ptr );
|
|
||||||
break;
|
|
||||||
case 0x29:
|
|
||||||
printhubdescr( buf_ptr, addr );
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
printunkdescr( buf_ptr );
|
|
||||||
break;
|
|
||||||
}//switch( descr_type
|
|
||||||
buf_ptr = ( buf_ptr + descr_length ); //advance buffer pointer
|
|
||||||
}//while( buf_ptr <=...
|
|
||||||
return( 0 );
|
|
||||||
}
|
|
||||||
/* prints hex numbers with leading zeroes */
|
|
||||||
// copyright, Peter H Anderson, Baltimore, MD, Nov, '07
|
|
||||||
// source: http://www.phanderson.com/arduino/arduino_display.html
|
|
||||||
void print_hex(int v, int num_places)
|
|
||||||
{
|
|
||||||
int mask=0, n, num_nibbles, digit;
|
|
||||||
|
|
||||||
for (n=1; n<=num_places; n++) {
|
|
||||||
mask = (mask << 1) | 0x0001;
|
|
||||||
}
|
|
||||||
v = v & mask; // truncate v to specified number of places
|
|
||||||
|
|
||||||
num_nibbles = num_places / 4;
|
|
||||||
if ((num_places % 4) != 0) {
|
|
||||||
++num_nibbles;
|
|
||||||
}
|
|
||||||
do {
|
|
||||||
digit = ((v >> (num_nibbles-1) * 4)) & 0x0f;
|
|
||||||
Serial.print(digit, HEX);
|
|
||||||
}
|
|
||||||
while(--num_nibbles);
|
|
||||||
}
|
|
||||||
/* function to print configuration descriptor */
|
|
||||||
void printconfdescr( uint8_t* descr_ptr )
|
|
||||||
{
|
|
||||||
USB_CONFIGURATION_DESCRIPTOR* conf_ptr = ( USB_CONFIGURATION_DESCRIPTOR* )descr_ptr;
|
|
||||||
printProgStr(Conf_Header_str);
|
|
||||||
printProgStr(Conf_Totlen_str);
|
|
||||||
print_hex( conf_ptr->wTotalLength, 16 );
|
|
||||||
printProgStr(Conf_Nint_str);
|
|
||||||
print_hex( conf_ptr->bNumInterfaces, 8 );
|
|
||||||
printProgStr(Conf_Value_str);
|
|
||||||
print_hex( conf_ptr->bConfigurationValue, 8 );
|
|
||||||
printProgStr(Conf_String_str);
|
|
||||||
print_hex( conf_ptr->iConfiguration, 8 );
|
|
||||||
printProgStr(Conf_Attr_str);
|
|
||||||
print_hex( conf_ptr->bmAttributes, 8 );
|
|
||||||
printProgStr(Conf_Pwr_str);
|
|
||||||
print_hex( conf_ptr->bMaxPower, 8 );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
/* function to print interface descriptor */
|
|
||||||
void printintfdescr( uint8_t* descr_ptr )
|
|
||||||
{
|
|
||||||
USB_INTERFACE_DESCRIPTOR* intf_ptr = ( USB_INTERFACE_DESCRIPTOR* )descr_ptr;
|
|
||||||
printProgStr(Int_Header_str);
|
|
||||||
printProgStr(Int_Number_str);
|
|
||||||
print_hex( intf_ptr->bInterfaceNumber, 8 );
|
|
||||||
printProgStr(Int_Alt_str);
|
|
||||||
print_hex( intf_ptr->bAlternateSetting, 8 );
|
|
||||||
printProgStr(Int_Endpoints_str);
|
|
||||||
print_hex( intf_ptr->bNumEndpoints, 8 );
|
|
||||||
printProgStr(Int_Class_str);
|
|
||||||
print_hex( intf_ptr->bInterfaceClass, 8 );
|
|
||||||
printProgStr(Int_Subclass_str);
|
|
||||||
print_hex( intf_ptr->bInterfaceSubClass, 8 );
|
|
||||||
printProgStr(Int_Protocol_str);
|
|
||||||
print_hex( intf_ptr->bInterfaceProtocol, 8 );
|
|
||||||
printProgStr(Int_String_str);
|
|
||||||
print_hex( intf_ptr->iInterface, 8 );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
/* function to print endpoint descriptor */
|
|
||||||
void printepdescr( uint8_t* descr_ptr )
|
|
||||||
{
|
|
||||||
USB_ENDPOINT_DESCRIPTOR* ep_ptr = ( USB_ENDPOINT_DESCRIPTOR* )descr_ptr;
|
|
||||||
printProgStr(End_Header_str);
|
|
||||||
printProgStr(End_Address_str);
|
|
||||||
print_hex( ep_ptr->bEndpointAddress, 8 );
|
|
||||||
printProgStr(End_Attr_str);
|
|
||||||
print_hex( ep_ptr->bmAttributes, 8 );
|
|
||||||
printProgStr(End_Pktsize_str);
|
|
||||||
print_hex( ep_ptr->wMaxPacketSize, 16 );
|
|
||||||
printProgStr(End_Interval_str);
|
|
||||||
print_hex( ep_ptr->bInterval, 8 );
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
/*function to print unknown descriptor */
|
|
||||||
void printunkdescr( uint8_t* descr_ptr )
|
|
||||||
{
|
|
||||||
byte length = *descr_ptr;
|
|
||||||
byte i;
|
|
||||||
printProgStr(Unk_Header_str);
|
|
||||||
printProgStr(Unk_Length_str);
|
|
||||||
print_hex( *descr_ptr, 8 );
|
|
||||||
printProgStr(Unk_Type_str);
|
|
||||||
print_hex( *(descr_ptr + 1 ), 8 );
|
|
||||||
printProgStr(Unk_Contents_str);
|
|
||||||
descr_ptr += 2;
|
|
||||||
for( i = 0; i < length; i++ ) {
|
|
||||||
print_hex( *descr_ptr, 8 );
|
|
||||||
descr_ptr++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Print a string from Program Memory directly to save RAM */
|
|
||||||
void printProgStr(const prog_char str[])
|
|
||||||
{
|
|
||||||
char c;
|
|
||||||
if(!str) return;
|
|
||||||
while((c = pgm_read_byte(str++)))
|
|
||||||
Serial.print(c);
|
|
||||||
}
|
|
|
@ -1,52 +0,0 @@
|
||||||
#if !defined(__PGMSTRINGS_H__)
|
|
||||||
#define __PGMSTRINGS_H__
|
|
||||||
|
|
||||||
#define LOBYTE(x) ((char*)(&(x)))[0]
|
|
||||||
#define HIBYTE(x) ((char*)(&(x)))[1]
|
|
||||||
#define BUFSIZE 256 //buffer size
|
|
||||||
|
|
||||||
|
|
||||||
/* Print strings in Program Memory */
|
|
||||||
const char Gen_Error_str[] PROGMEM = "\r\nRequest error. Error code:\t";
|
|
||||||
const char Dev_Header_str[] PROGMEM ="\r\nDevice descriptor: ";
|
|
||||||
const char Dev_Length_str[] PROGMEM ="\r\nDescriptor Length:\t";
|
|
||||||
const char Dev_Type_str[] PROGMEM ="\r\nDescriptor type:\t";
|
|
||||||
const char Dev_Version_str[] PROGMEM ="\r\nUSB version:\t\t";
|
|
||||||
const char Dev_Class_str[] PROGMEM ="\r\nDevice class:\t\t";
|
|
||||||
const char Dev_Subclass_str[] PROGMEM ="\r\nDevice Subclass:\t";
|
|
||||||
const char Dev_Protocol_str[] PROGMEM ="\r\nDevice Protocol:\t";
|
|
||||||
const char Dev_Pktsize_str[] PROGMEM ="\r\nMax.packet size:\t";
|
|
||||||
const char Dev_Vendor_str[] PROGMEM ="\r\nVendor ID:\t\t";
|
|
||||||
const char Dev_Product_str[] PROGMEM ="\r\nProduct ID:\t\t";
|
|
||||||
const char Dev_Revision_str[] PROGMEM ="\r\nRevision ID:\t\t";
|
|
||||||
const char Dev_Mfg_str[] PROGMEM ="\r\nMfg.string index:\t";
|
|
||||||
const char Dev_Prod_str[] PROGMEM ="\r\nProd.string index:\t";
|
|
||||||
const char Dev_Serial_str[] PROGMEM ="\r\nSerial number index:\t";
|
|
||||||
const char Dev_Nconf_str[] PROGMEM ="\r\nNumber of conf.:\t";
|
|
||||||
const char Conf_Trunc_str[] PROGMEM ="Total length truncated to 256 bytes";
|
|
||||||
const char Conf_Header_str[] PROGMEM ="\r\nConfiguration descriptor:";
|
|
||||||
const char Conf_Totlen_str[] PROGMEM ="\r\nTotal length:\t\t";
|
|
||||||
const char Conf_Nint_str[] PROGMEM ="\r\nNum.intf:\t\t";
|
|
||||||
const char Conf_Value_str[] PROGMEM ="\r\nConf.value:\t\t";
|
|
||||||
const char Conf_String_str[] PROGMEM ="\r\nConf.string:\t\t";
|
|
||||||
const char Conf_Attr_str[] PROGMEM ="\r\nAttr.:\t\t\t";
|
|
||||||
const char Conf_Pwr_str[] PROGMEM ="\r\nMax.pwr:\t\t";
|
|
||||||
const char Int_Header_str[] PROGMEM ="\r\n\r\nInterface descriptor:";
|
|
||||||
const char Int_Number_str[] PROGMEM ="\r\nIntf.number:\t\t";
|
|
||||||
const char Int_Alt_str[] PROGMEM ="\r\nAlt.:\t\t\t";
|
|
||||||
const char Int_Endpoints_str[] PROGMEM ="\r\nEndpoints:\t\t";
|
|
||||||
const char Int_Class_str[] PROGMEM ="\r\nIntf. Class:\t\t";
|
|
||||||
const char Int_Subclass_str[] PROGMEM ="\r\nIntf. Subclass:\t\t";
|
|
||||||
const char Int_Protocol_str[] PROGMEM ="\r\nIntf. Protocol:\t\t";
|
|
||||||
const char Int_String_str[] PROGMEM ="\r\nIntf.string:\t\t";
|
|
||||||
const char End_Header_str[] PROGMEM ="\r\n\r\nEndpoint descriptor:";
|
|
||||||
const char End_Address_str[] PROGMEM ="\r\nEndpoint address:\t";
|
|
||||||
const char End_Attr_str[] PROGMEM ="\r\nAttr.:\t\t\t";
|
|
||||||
const char End_Pktsize_str[] PROGMEM ="\r\nMax.pkt size:\t\t";
|
|
||||||
const char End_Interval_str[] PROGMEM ="\r\nPolling interval:\t";
|
|
||||||
const char Unk_Header_str[] PROGMEM = "\r\nUnknown descriptor:";
|
|
||||||
const char Unk_Length_str[] PROGMEM ="\r\nLength:\t\t";
|
|
||||||
const char Unk_Type_str[] PROGMEM ="\r\nType:\t\t";
|
|
||||||
const char Unk_Contents_str[] PROGMEM ="\r\nContents:\t";
|
|
||||||
|
|
||||||
#endif // __PGMSTRINGS_H__
|
|
|
@ -1,110 +0,0 @@
|
||||||
/*
|
|
||||||
Example sketch for the Xbox Wireless Reciver library - developed by Kristian Lauszus
|
|
||||||
It supports up to four controllers wirelessly
|
|
||||||
For more information see the blog post: http://blog.tkjelectronics.dk/2012/12/xbox-360-receiver-added-to-the-usb-host-library/ or
|
|
||||||
send me an e-mail: kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <XBOXRECV.h>
|
|
||||||
USB Usb;
|
|
||||||
XBOXRECV Xbox(&Usb);
|
|
||||||
|
|
||||||
void setup() {
|
|
||||||
Serial.begin(115200);
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.print(F("\r\nOSC did not start"));
|
|
||||||
while(1); //halt
|
|
||||||
}
|
|
||||||
Serial.print(F("\r\nXbox Wireless Receiver Library Started"));
|
|
||||||
}
|
|
||||||
void loop() {
|
|
||||||
Usb.Task();
|
|
||||||
if(Xbox.XboxReceiverConnected) {
|
|
||||||
for(uint8_t i=0;i<4;i++) {
|
|
||||||
if(Xbox.Xbox360Connected[i]) {
|
|
||||||
if(Xbox.getButtonPress(i,L2) || Xbox.getButtonPress(i,R2)) {
|
|
||||||
Serial.print("L2: ");
|
|
||||||
Serial.print(Xbox.getButtonPress(i,L2));
|
|
||||||
Serial.print("\tR2: ");
|
|
||||||
Serial.println(Xbox.getButtonPress(i,R2));
|
|
||||||
Xbox.setRumbleOn(i,Xbox.getButtonPress(i,L2),Xbox.getButtonPress(i,R2));
|
|
||||||
}
|
|
||||||
if(Xbox.getAnalogHat(i,LeftHatX) > 7500 || Xbox.getAnalogHat(i,LeftHatX) < -7500 || Xbox.getAnalogHat(i,LeftHatY) > 7500 || Xbox.getAnalogHat(i,LeftHatY) < -7500 || Xbox.getAnalogHat(i,RightHatX) > 7500 || Xbox.getAnalogHat(i,RightHatX) < -7500 || Xbox.getAnalogHat(i,RightHatY) > 7500 || Xbox.getAnalogHat(i,RightHatY) < -7500) {
|
|
||||||
if(Xbox.getAnalogHat(i,LeftHatX) > 7500 || Xbox.getAnalogHat(i,LeftHatX) < -7500) {
|
|
||||||
Serial.print(F("LeftHatX: "));
|
|
||||||
Serial.print(Xbox.getAnalogHat(i,LeftHatX));
|
|
||||||
Serial.print("\t");
|
|
||||||
}
|
|
||||||
if(Xbox.getAnalogHat(i,LeftHatY) > 7500 || Xbox.getAnalogHat(i,LeftHatY) < -7500) {
|
|
||||||
Serial.print(F("LeftHatY: "));
|
|
||||||
Serial.print(Xbox.getAnalogHat(i,LeftHatY));
|
|
||||||
Serial.print("\t");
|
|
||||||
}
|
|
||||||
if(Xbox.getAnalogHat(i,RightHatX) > 7500 || Xbox.getAnalogHat(i,RightHatX) < -7500) {
|
|
||||||
Serial.print(F("RightHatX: "));
|
|
||||||
Serial.print(Xbox.getAnalogHat(i,RightHatX));
|
|
||||||
Serial.print("\t");
|
|
||||||
}
|
|
||||||
if(Xbox.getAnalogHat(i,RightHatY) > 7500 || Xbox.getAnalogHat(i,RightHatY) < -7500) {
|
|
||||||
Serial.print(F("RightHatY: "));
|
|
||||||
Serial.print(Xbox.getAnalogHat(i,RightHatY));
|
|
||||||
}
|
|
||||||
Serial.println();
|
|
||||||
}
|
|
||||||
|
|
||||||
if(Xbox.getButtonClick(i,UP)) {
|
|
||||||
Xbox.setLedOn(i,LED1);
|
|
||||||
Serial.println(F("Up"));
|
|
||||||
}
|
|
||||||
if(Xbox.getButtonClick(i,DOWN)) {
|
|
||||||
Xbox.setLedOn(i,LED4);
|
|
||||||
Serial.println(F("Down"));
|
|
||||||
}
|
|
||||||
if(Xbox.getButtonClick(i,LEFT)) {
|
|
||||||
Xbox.setLedOn(i,LED3);
|
|
||||||
Serial.println(F("Left"));
|
|
||||||
}
|
|
||||||
if(Xbox.getButtonClick(i,RIGHT)) {
|
|
||||||
Xbox.setLedOn(i,LED2);
|
|
||||||
Serial.println(F("Right"));
|
|
||||||
}
|
|
||||||
|
|
||||||
if(Xbox.getButtonClick(i,START)) {
|
|
||||||
Xbox.setLedMode(i,ALTERNATING);
|
|
||||||
Serial.println(F("Start"));
|
|
||||||
}
|
|
||||||
if(Xbox.getButtonClick(i,BACK)) {
|
|
||||||
Xbox.setLedBlink(i,ALL);
|
|
||||||
Serial.println(F("Back"));
|
|
||||||
}
|
|
||||||
if(Xbox.getButtonClick(i,L3))
|
|
||||||
Serial.println(F("L3"));
|
|
||||||
if(Xbox.getButtonClick(i,R3))
|
|
||||||
Serial.println(F("R3"));
|
|
||||||
|
|
||||||
if(Xbox.getButtonClick(i,L1))
|
|
||||||
Serial.println(F("L1"));
|
|
||||||
if(Xbox.getButtonClick(i,R1))
|
|
||||||
Serial.println(F("R1"));
|
|
||||||
if(Xbox.getButtonClick(i,XBOX)) {
|
|
||||||
Xbox.setLedMode(i,ROTATING);
|
|
||||||
Serial.print(F("Xbox (Battery: "));
|
|
||||||
Serial.print(Xbox.getBatteryLevel(i));
|
|
||||||
Serial.println(F("%)"));
|
|
||||||
}
|
|
||||||
if(Xbox.getButtonClick(i,SYNC))
|
|
||||||
Serial.println(F("Sync"));
|
|
||||||
|
|
||||||
if(Xbox.getButtonClick(i,A))
|
|
||||||
Serial.println(F("A"));
|
|
||||||
if(Xbox.getButtonClick(i,B))
|
|
||||||
Serial.println(F("B"));
|
|
||||||
if(Xbox.getButtonClick(i,X))
|
|
||||||
Serial.println(F("X"));
|
|
||||||
if(Xbox.getButtonClick(i,Y))
|
|
||||||
Serial.println(F("Y"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
delay(1);
|
|
||||||
}
|
|
|
@ -1,109 +0,0 @@
|
||||||
/*
|
|
||||||
Example sketch for the Xbox 360 USB library - developed by Kristian Lauszus
|
|
||||||
For more information visit my blog: http://blog.tkjelectronics.dk/ or
|
|
||||||
send me an e-mail: kristianl@tkjelectronics.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <XBOXUSB.h>
|
|
||||||
USB Usb;
|
|
||||||
XBOXUSB Xbox(&Usb);
|
|
||||||
|
|
||||||
void setup() {
|
|
||||||
Serial.begin(115200);
|
|
||||||
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.print(F("\r\nOSC did not start"));
|
|
||||||
while(1); //halt
|
|
||||||
}
|
|
||||||
Serial.print(F("\r\nXBOX USB Library Started"));
|
|
||||||
}
|
|
||||||
void loop() {
|
|
||||||
Usb.Task();
|
|
||||||
if(Xbox.Xbox360Connected) {
|
|
||||||
Xbox.setRumbleOn(Xbox.getButton(L2),Xbox.getButton(R2));
|
|
||||||
if(Xbox.getAnalogHat(LeftHatX) > 7500 || Xbox.getAnalogHat(LeftHatX) < -7500 || Xbox.getAnalogHat(LeftHatY) > 7500 || Xbox.getAnalogHat(LeftHatY) < -7500 || Xbox.getAnalogHat(RightHatX) > 7500 || Xbox.getAnalogHat(RightHatX) < -7500 || Xbox.getAnalogHat(RightHatY) > 7500 || Xbox.getAnalogHat(RightHatY) < -7500) {
|
|
||||||
if(Xbox.getAnalogHat(LeftHatX) > 7500 || Xbox.getAnalogHat(LeftHatX) < -7500) {
|
|
||||||
Serial.print(F("LeftHatX: "));
|
|
||||||
Serial.print(Xbox.getAnalogHat(LeftHatX));
|
|
||||||
Serial.print("\t");
|
|
||||||
}
|
|
||||||
if(Xbox.getAnalogHat(LeftHatY) > 7500 || Xbox.getAnalogHat(LeftHatY) < -7500) {
|
|
||||||
Serial.print(F("LeftHatY: "));
|
|
||||||
Serial.print(Xbox.getAnalogHat(LeftHatY));
|
|
||||||
Serial.print("\t");
|
|
||||||
}
|
|
||||||
if(Xbox.getAnalogHat(RightHatX) > 7500 || Xbox.getAnalogHat(RightHatX) < -7500) {
|
|
||||||
Serial.print(F("RightHatX: "));
|
|
||||||
Serial.print(Xbox.getAnalogHat(RightHatX));
|
|
||||||
Serial.print("\t");
|
|
||||||
}
|
|
||||||
if(Xbox.getAnalogHat(RightHatY) > 7500 || Xbox.getAnalogHat(RightHatY) < -7500) {
|
|
||||||
Serial.print(F("RightHatY: "));
|
|
||||||
Serial.print(Xbox.getAnalogHat(RightHatY));
|
|
||||||
}
|
|
||||||
Serial.println("");
|
|
||||||
}
|
|
||||||
|
|
||||||
if(Xbox.buttonPressed) {
|
|
||||||
Serial.print(F("Xbox 360 Controller"));
|
|
||||||
if(Xbox.getButton(UP)) {
|
|
||||||
Xbox.setLedOn(LED1);
|
|
||||||
Serial.print(F(" - UP"));
|
|
||||||
}
|
|
||||||
if(Xbox.getButton(DOWN)) {
|
|
||||||
Xbox.setLedOn(LED4);
|
|
||||||
Serial.print(F(" - DOWN"));
|
|
||||||
}
|
|
||||||
if(Xbox.getButton(LEFT)) {
|
|
||||||
Xbox.setLedOn(LED3);
|
|
||||||
Serial.print(F(" - LEFT"));
|
|
||||||
}
|
|
||||||
if(Xbox.getButton(RIGHT)) {
|
|
||||||
Xbox.setLedOn(LED2);
|
|
||||||
Serial.print(F(" - RIGHT"));
|
|
||||||
}
|
|
||||||
|
|
||||||
if(Xbox.getButton(START)) {
|
|
||||||
Xbox.setLedMode(ALTERNATING);
|
|
||||||
Serial.print(F(" - START"));
|
|
||||||
}
|
|
||||||
if(Xbox.getButton(BACK)) {
|
|
||||||
Xbox.setLedBlink(ALL);
|
|
||||||
Serial.print(F(" - BACK"));
|
|
||||||
}
|
|
||||||
if(Xbox.getButton(L3))
|
|
||||||
Serial.print(F(" - L3"));
|
|
||||||
if(Xbox.getButton(R3))
|
|
||||||
Serial.print(F(" - R3"));
|
|
||||||
|
|
||||||
if(Xbox.getButton(L1))
|
|
||||||
Serial.print(F(" - L1"));
|
|
||||||
if(Xbox.getButton(R1))
|
|
||||||
Serial.print(F(" - R1"));
|
|
||||||
if(Xbox.getButton(XBOX)) {
|
|
||||||
Xbox.setLedMode(ROTATING);
|
|
||||||
Serial.print(F(" - XBOX"));
|
|
||||||
}
|
|
||||||
|
|
||||||
if(Xbox.getButton(A))
|
|
||||||
Serial.print(F(" - A"));
|
|
||||||
if(Xbox.getButton(B))
|
|
||||||
Serial.print(F(" - B"));
|
|
||||||
if(Xbox.getButton(X))
|
|
||||||
Serial.print(F(" - X"));
|
|
||||||
if(Xbox.getButton(Y))
|
|
||||||
Serial.print(F(" - Y"));
|
|
||||||
|
|
||||||
if(Xbox.getButton(L2)) {
|
|
||||||
Serial.print(F(" - L2:"));
|
|
||||||
Serial.print(Xbox.getButton(L2));
|
|
||||||
}
|
|
||||||
if(Xbox.getButton(R2)) {
|
|
||||||
Serial.print(F(" - R2:"));
|
|
||||||
Serial.print(Xbox.getButton(R2));
|
|
||||||
}
|
|
||||||
Serial.println();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
delay(1);
|
|
||||||
}
|
|
|
@ -1,104 +0,0 @@
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
|
|
||||||
#include <cdcacm.h>
|
|
||||||
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
#include "pgmstrings.h"
|
|
||||||
|
|
||||||
class ACMAsyncOper : public CDCAsyncOper
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual uint8_t OnInit(ACM *pacm);
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t ACMAsyncOper::OnInit(ACM *pacm)
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
// Set DTR = 1 RTS=1
|
|
||||||
rcode = pacm->SetControlLineState(3);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetControlLineState"), rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
LINE_CODING lc;
|
|
||||||
lc.dwDTERate = 115200;
|
|
||||||
lc.bCharFormat = 0;
|
|
||||||
lc.bParityType = 0;
|
|
||||||
lc.bDataBits = 8;
|
|
||||||
|
|
||||||
rcode = pacm->SetLineCoding(&lc);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetLineCoding"), rcode);
|
|
||||||
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
//USBHub Hub(&Usb);
|
|
||||||
ACMAsyncOper AsyncOper;
|
|
||||||
ACM Acm(&Usb, &AsyncOper);
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Serial.println("Start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1)
|
|
||||||
Serial.println("OSCOKIRQ failed to assert");
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if( Acm.isReady()) {
|
|
||||||
uint8_t rcode;
|
|
||||||
|
|
||||||
/* reading the keyboard */
|
|
||||||
if(Serial.available()) {
|
|
||||||
uint8_t data= Serial.read();
|
|
||||||
/* sending to the phone */
|
|
||||||
rcode = Acm.SndData(1, &data);
|
|
||||||
if (rcode)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SndData"), rcode);
|
|
||||||
}//if(Serial.available()...
|
|
||||||
|
|
||||||
delay(50);
|
|
||||||
|
|
||||||
/* reading the phone */
|
|
||||||
/* buffer size must be greater or equal to max.packet size */
|
|
||||||
/* it it set to 64 (largest possible max.packet size) here, can be tuned down
|
|
||||||
for particular endpoint */
|
|
||||||
uint8_t buf[64];
|
|
||||||
uint16_t rcvd = 64;
|
|
||||||
rcode = Acm.RcvData(&rcvd, buf);
|
|
||||||
if (rcode && rcode != hrNAK)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("Ret"), rcode);
|
|
||||||
|
|
||||||
if( rcvd ) { //more than zero bytes received
|
|
||||||
for(uint16_t i=0; i < rcvd; i++ ) {
|
|
||||||
Serial.print((char)buf[i]); //printing on the screen
|
|
||||||
}
|
|
||||||
}
|
|
||||||
delay(10);
|
|
||||||
}//if( Usb.getUsbTaskState() == USB_STATE_RUNNING..
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
|
@ -1,52 +0,0 @@
|
||||||
#if !defined(__PGMSTRINGS_H__)
|
|
||||||
#define __PGMSTRINGS_H__
|
|
||||||
|
|
||||||
#define LOBYTE(x) ((char*)(&(x)))[0]
|
|
||||||
#define HIBYTE(x) ((char*)(&(x)))[1]
|
|
||||||
#define BUFSIZE 256 //buffer size
|
|
||||||
|
|
||||||
|
|
||||||
/* Print strings in Program Memory */
|
|
||||||
const char Gen_Error_str[] PROGMEM = "\r\nRequest error. Error code:\t";
|
|
||||||
const char Dev_Header_str[] PROGMEM ="\r\nDevice descriptor: ";
|
|
||||||
const char Dev_Length_str[] PROGMEM ="\r\nDescriptor Length:\t";
|
|
||||||
const char Dev_Type_str[] PROGMEM ="\r\nDescriptor type:\t";
|
|
||||||
const char Dev_Version_str[] PROGMEM ="\r\nUSB version:\t\t";
|
|
||||||
const char Dev_Class_str[] PROGMEM ="\r\nDevice class:\t\t";
|
|
||||||
const char Dev_Subclass_str[] PROGMEM ="\r\nDevice Subclass:\t";
|
|
||||||
const char Dev_Protocol_str[] PROGMEM ="\r\nDevice Protocol:\t";
|
|
||||||
const char Dev_Pktsize_str[] PROGMEM ="\r\nMax.packet size:\t";
|
|
||||||
const char Dev_Vendor_str[] PROGMEM ="\r\nVendor ID:\t\t";
|
|
||||||
const char Dev_Product_str[] PROGMEM ="\r\nProduct ID:\t\t";
|
|
||||||
const char Dev_Revision_str[] PROGMEM ="\r\nRevision ID:\t\t";
|
|
||||||
const char Dev_Mfg_str[] PROGMEM ="\r\nMfg.string index:\t";
|
|
||||||
const char Dev_Prod_str[] PROGMEM ="\r\nProd.string index:\t";
|
|
||||||
const char Dev_Serial_str[] PROGMEM ="\r\nSerial number index:\t";
|
|
||||||
const char Dev_Nconf_str[] PROGMEM ="\r\nNumber of conf.:\t";
|
|
||||||
const char Conf_Trunc_str[] PROGMEM ="Total length truncated to 256 bytes";
|
|
||||||
const char Conf_Header_str[] PROGMEM ="\r\nConfiguration descriptor:";
|
|
||||||
const char Conf_Totlen_str[] PROGMEM ="\r\nTotal length:\t\t";
|
|
||||||
const char Conf_Nint_str[] PROGMEM ="\r\nNum.intf:\t\t";
|
|
||||||
const char Conf_Value_str[] PROGMEM ="\r\nConf.value:\t\t";
|
|
||||||
const char Conf_String_str[] PROGMEM ="\r\nConf.string:\t\t";
|
|
||||||
const char Conf_Attr_str[] PROGMEM ="\r\nAttr.:\t\t\t";
|
|
||||||
const char Conf_Pwr_str[] PROGMEM ="\r\nMax.pwr:\t\t";
|
|
||||||
const char Int_Header_str[] PROGMEM ="\r\n\r\nInterface descriptor:";
|
|
||||||
const char Int_Number_str[] PROGMEM ="\r\nIntf.number:\t\t";
|
|
||||||
const char Int_Alt_str[] PROGMEM ="\r\nAlt.:\t\t\t";
|
|
||||||
const char Int_Endpoints_str[] PROGMEM ="\r\nEndpoints:\t\t";
|
|
||||||
const char Int_Class_str[] PROGMEM ="\r\nIntf. Class:\t\t";
|
|
||||||
const char Int_Subclass_str[] PROGMEM ="\r\nIntf. Subclass:\t\t";
|
|
||||||
const char Int_Protocol_str[] PROGMEM ="\r\nIntf. Protocol:\t\t";
|
|
||||||
const char Int_String_str[] PROGMEM ="\r\nIntf.string:\t\t";
|
|
||||||
const char End_Header_str[] PROGMEM ="\r\n\r\nEndpoint descriptor:";
|
|
||||||
const char End_Address_str[] PROGMEM ="\r\nEndpoint address:\t";
|
|
||||||
const char End_Attr_str[] PROGMEM ="\r\nAttr.:\t\t\t";
|
|
||||||
const char End_Pktsize_str[] PROGMEM ="\r\nMax.pkt size:\t\t";
|
|
||||||
const char End_Interval_str[] PROGMEM ="\r\nPolling interval:\t";
|
|
||||||
const char Unk_Header_str[] PROGMEM = "\r\nUnknown descriptor:";
|
|
||||||
const char Unk_Length_str[] PROGMEM ="\r\nLength:\t\t";
|
|
||||||
const char Unk_Type_str[] PROGMEM ="\r\nType:\t\t";
|
|
||||||
const char Unk_Contents_str[] PROGMEM ="\r\nContents:\t";
|
|
||||||
|
|
||||||
#endif // __PGMSTRINGS_H__
|
|
|
@ -1,45 +0,0 @@
|
||||||
// The source for the Android application can be found at the following link: https://github.com/Lauszus/ArduinoBlinkLED
|
|
||||||
// The code for the Android application is heavily based on this guide: http://allaboutee.com/2011/12/31/arduino-adk-board-blink-an-led-with-your-phone-code-and-explanation/ by Miguel
|
|
||||||
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <adk.h>
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
ADK adk(&Usb,"TKJElectronics", // Manufacturer Name
|
|
||||||
"ArduinoBlinkLED", // Model Name
|
|
||||||
"Example sketch for the USB Host Shield", // Description (user-visible string)
|
|
||||||
"1.0", // Version
|
|
||||||
"http://www.tkjelectronics.dk/uploads/ArduinoBlinkLED.apk", // URL (web page to visit if no installed apps support the accessory)
|
|
||||||
"123456789"); // Serial Number (optional)
|
|
||||||
|
|
||||||
#define LED 13 // Pin 13 is occupied by the SCK pin on a normal Arduino (Uno, Duemilanove etc.), so use a different pin
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin(115200);
|
|
||||||
Serial.print("\r\nADK demo start");
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.print("\r\nOSCOKIRQ failed to assert");
|
|
||||||
while(1); //halt
|
|
||||||
}
|
|
||||||
pinMode(LED, OUTPUT);
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
if(adk.isReady()) {
|
|
||||||
uint8_t msg[1];
|
|
||||||
uint16_t len = sizeof(msg);
|
|
||||||
uint8_t rcode = adk.RcvData(&len, msg);
|
|
||||||
if(rcode && rcode != hrNAK)
|
|
||||||
USBTRACE2("Data rcv. :", rcode);
|
|
||||||
if(len > 0) {
|
|
||||||
Serial.print(F("\r\nData Packet: "));
|
|
||||||
Serial.print(msg[0]);
|
|
||||||
digitalWrite(LED,msg[0] ? HIGH : LOW);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
digitalWrite(LED, LOW);
|
|
||||||
}
|
|
|
@ -1,91 +0,0 @@
|
||||||
/**/
|
|
||||||
/* A sketch demonstrating data exchange between two USB devices - a HID barcode scanner and ADK-compatible Android phone */
|
|
||||||
/**/
|
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
|
|
||||||
#include <adk.h>
|
|
||||||
|
|
||||||
#include <hidboot.h>
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
USBHub Hub1(&Usb);
|
|
||||||
USBHub Hub2(&Usb);
|
|
||||||
HIDBoot<HID_PROTOCOL_KEYBOARD> Keyboard(&Usb);
|
|
||||||
|
|
||||||
ADK adk(&Usb,"Circuits@Home, ltd.",
|
|
||||||
"USB Host Shield",
|
|
||||||
"Arduino Terminal for Android",
|
|
||||||
"1.0",
|
|
||||||
"http://www.circuitsathome.com",
|
|
||||||
"0000000000000001");
|
|
||||||
|
|
||||||
|
|
||||||
class KbdRptParser : public KeyboardReportParser
|
|
||||||
{
|
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void OnKeyDown (uint8_t mod, uint8_t key);
|
|
||||||
virtual void OnKeyPressed(uint8_t key);
|
|
||||||
};
|
|
||||||
|
|
||||||
void KbdRptParser::OnKeyDown(uint8_t mod, uint8_t key)
|
|
||||||
{
|
|
||||||
uint8_t c = OemToAscii(mod, key);
|
|
||||||
|
|
||||||
if (c)
|
|
||||||
OnKeyPressed(c);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* what to do when symbol arrives */
|
|
||||||
void KbdRptParser::OnKeyPressed(uint8_t key)
|
|
||||||
{
|
|
||||||
const char* new_line = "\n";
|
|
||||||
uint8_t rcode;
|
|
||||||
uint8_t keylcl;
|
|
||||||
|
|
||||||
if( adk.isReady() == false ) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
keylcl = key;
|
|
||||||
|
|
||||||
if( keylcl == 0x13 ) {
|
|
||||||
rcode = adk.SndData( strlen( new_line ), (uint8_t *)new_line );
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
rcode = adk.SndData( 1, &keylcl );
|
|
||||||
}
|
|
||||||
|
|
||||||
Serial.print((char) keylcl );
|
|
||||||
Serial.print(" : ");
|
|
||||||
Serial.println( keylcl, HEX );
|
|
||||||
};
|
|
||||||
|
|
||||||
KbdRptParser Prs;
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin(115200);
|
|
||||||
Serial.println("\r\nADK demo start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.println("OSCOKIRQ failed to assert");
|
|
||||||
while(1); //halt
|
|
||||||
}//if (Usb.Init() == -1...
|
|
||||||
|
|
||||||
Keyboard.SetReportParser(0, (HIDReportParser*)&Prs);
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
}
|
|
|
@ -1,110 +0,0 @@
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
|
|
||||||
#include <adk.h>
|
|
||||||
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
USBHub hub0(&Usb);
|
|
||||||
USBHub hub1(&Usb);
|
|
||||||
ADK adk(&Usb,"Google, Inc.",
|
|
||||||
"DemoKit",
|
|
||||||
"DemoKit Arduino Board",
|
|
||||||
"1.0",
|
|
||||||
"http://www.android.com",
|
|
||||||
"0000000012345678");
|
|
||||||
uint8_t b, b1;
|
|
||||||
|
|
||||||
|
|
||||||
#define LED1_RED 3
|
|
||||||
#define BUTTON1 2
|
|
||||||
|
|
||||||
void setup();
|
|
||||||
void loop();
|
|
||||||
|
|
||||||
void init_buttons()
|
|
||||||
{
|
|
||||||
pinMode(BUTTON1, INPUT);
|
|
||||||
|
|
||||||
// enable the internal pullups
|
|
||||||
digitalWrite(BUTTON1, HIGH);
|
|
||||||
}
|
|
||||||
|
|
||||||
void init_leds()
|
|
||||||
{
|
|
||||||
digitalWrite(LED1_RED, 0);
|
|
||||||
|
|
||||||
pinMode(LED1_RED, OUTPUT);
|
|
||||||
}
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin(115200);
|
|
||||||
Serial.println("\r\nADK demo start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.println("OSCOKIRQ failed to assert");
|
|
||||||
while(1); //halt
|
|
||||||
}//if (Usb.Init() == -1...
|
|
||||||
|
|
||||||
|
|
||||||
init_leds();
|
|
||||||
init_buttons();
|
|
||||||
b1 = digitalRead(BUTTON1);
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
uint8_t msg[3] = { 0x00 };
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if( adk.isReady() == false ) {
|
|
||||||
analogWrite(LED1_RED, 255);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
uint16_t len = sizeof(msg);
|
|
||||||
|
|
||||||
rcode = adk.RcvData(&len, msg);
|
|
||||||
if( rcode ) {
|
|
||||||
USBTRACE2("Data rcv. :", rcode );
|
|
||||||
}
|
|
||||||
if(len > 0) {
|
|
||||||
USBTRACE("\r\nData Packet.");
|
|
||||||
// assumes only one command per packet
|
|
||||||
if (msg[0] == 0x2) {
|
|
||||||
switch( msg[1] ) {
|
|
||||||
case 0:
|
|
||||||
analogWrite(LED1_RED, 255 - msg[2]);
|
|
||||||
break;
|
|
||||||
}//switch( msg[1]...
|
|
||||||
}//if (msg[0] == 0x2...
|
|
||||||
}//if( len > 0...
|
|
||||||
|
|
||||||
msg[0] = 0x1;
|
|
||||||
|
|
||||||
b = digitalRead(BUTTON1);
|
|
||||||
if (b != b1) {
|
|
||||||
USBTRACE("\r\nButton state changed");
|
|
||||||
msg[1] = 0;
|
|
||||||
msg[2] = b ? 0 : 1;
|
|
||||||
rcode = adk.SndData( 3, msg );
|
|
||||||
if( rcode ) {
|
|
||||||
USBTRACE2("Button send: ", rcode );
|
|
||||||
}
|
|
||||||
b1 = b;
|
|
||||||
}//if (b != b1...
|
|
||||||
|
|
||||||
|
|
||||||
delay( 10 );
|
|
||||||
}
|
|
|
@ -1,64 +0,0 @@
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
|
|
||||||
#include <adk.h>
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
//USBHub Hub(&Usb);
|
|
||||||
|
|
||||||
ADK adk(&Usb,"Circuits@Home, ltd.",
|
|
||||||
"USB Host Shield",
|
|
||||||
"Arduino Terminal for Android",
|
|
||||||
"1.0",
|
|
||||||
"http://www.circuitsathome.com",
|
|
||||||
"0000000000000001");
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin(115200);
|
|
||||||
Serial.println("\r\nADK demo start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.println("OSCOKIRQ failed to assert");
|
|
||||||
while(1); //halt
|
|
||||||
}//if (Usb.Init() == -1...
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
uint8_t msg[64] = { 0x00 };
|
|
||||||
const char* recv = "Received: ";
|
|
||||||
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if( adk.isReady() == false ) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
uint16_t len = 64;
|
|
||||||
|
|
||||||
rcode = adk.RcvData(&len, msg);
|
|
||||||
if( rcode & ( rcode != hrNAK )) {
|
|
||||||
USBTRACE2("Data rcv. :", rcode );
|
|
||||||
}
|
|
||||||
if(len > 0) {
|
|
||||||
USBTRACE("\r\nData Packet.");
|
|
||||||
|
|
||||||
for( uint8_t i = 0; i < len; i++ ) {
|
|
||||||
Serial.print((char)msg[i]);
|
|
||||||
}
|
|
||||||
/* sending back what was received */
|
|
||||||
rcode = adk.SndData( strlen( recv ), (uint8_t *)recv );
|
|
||||||
rcode = adk.SndData( strlen(( char * )msg ), msg );
|
|
||||||
|
|
||||||
}//if( len > 0 )...
|
|
||||||
|
|
||||||
delay( 1000 );
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,49 +0,0 @@
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
|
|
||||||
#include <adk.h>
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
|
|
||||||
ADK adk(&Usb,"Circuits@Home, ltd.",
|
|
||||||
"USB Host Shield",
|
|
||||||
"Arduino Terminal for Android",
|
|
||||||
"1.0",
|
|
||||||
"http://www.circuitsathome.com",
|
|
||||||
"0000000000000001");
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin(115200);
|
|
||||||
Serial.println("\r\nADK demo start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.println("OSCOKIRQ failed to assert");
|
|
||||||
while(1); //halt
|
|
||||||
}//if (Usb.Init() == -1...
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
uint8_t buf[ 12 ] = { 0 }; //buffer to convert unsigned long to ASCII
|
|
||||||
const char* sec_ela = " seconds elapsed\r";
|
|
||||||
uint8_t rcode;
|
|
||||||
|
|
||||||
Usb.Task();
|
|
||||||
if( adk.isReady() == false ) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ultoa( millis()/1000, (char *)buf, 10 );
|
|
||||||
|
|
||||||
rcode = adk.SndData( strlen((char *)buf), buf );
|
|
||||||
rcode = adk.SndData( strlen( sec_ela), (uint8_t *)sec_ela );
|
|
||||||
|
|
||||||
delay( 1000 );
|
|
||||||
}
|
|
|
@ -1,266 +0,0 @@
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
/* variables */
|
|
||||||
uint8_t rcode;
|
|
||||||
uint8_t usbstate;
|
|
||||||
//uint8_t buf[sizeof(USB_DEVICE_DESCRIPTOR)];
|
|
||||||
USB_DEVICE_DESCRIPTOR buf;
|
|
||||||
|
|
||||||
/* objects */
|
|
||||||
USB Usb;
|
|
||||||
//USBHub hub(&Usb);
|
|
||||||
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Notify(PSTR("\r\nCircuits At Home 2011"));
|
|
||||||
Notify(PSTR("\r\nUSB Host Shield Quality Control Routine"));
|
|
||||||
/* check init */
|
|
||||||
// if (Usb.Init() == -1) {
|
|
||||||
// Notify(PSTR("\r\nOSCOKIRQ failed to assert"));
|
|
||||||
// halt55();
|
|
||||||
// }
|
|
||||||
/* SPI quick test - check revision register */
|
|
||||||
Notify(PSTR("\r\nReading REVISION register... Die revision "));
|
|
||||||
{
|
|
||||||
uint8_t tmpbyte = Usb.regRd( rREVISION );
|
|
||||||
switch( tmpbyte ) {
|
|
||||||
case( 0x01): //rev.01
|
|
||||||
Notify(PSTR("01"));
|
|
||||||
break;
|
|
||||||
case( 0x12): //rev.02
|
|
||||||
Notify(PSTR("02"));
|
|
||||||
break;
|
|
||||||
case( 0x13): //rev.03
|
|
||||||
Notify(PSTR("03"));
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
Notify(PSTR("invalid. Value returned: "));
|
|
||||||
print_hex( tmpbyte, 8 );
|
|
||||||
halt55();
|
|
||||||
break;
|
|
||||||
}//switch( tmpbyte...
|
|
||||||
}//check revision register
|
|
||||||
/* SPI long test */
|
|
||||||
{
|
|
||||||
Notify(PSTR("\r\nSPI long test. Transfers 1MB of data. Each dot is 64K"));
|
|
||||||
uint8_t sample_wr = 0;
|
|
||||||
uint8_t sample_rd = 0;
|
|
||||||
uint8_t gpinpol_copy = Usb.regRd( rGPINPOL );
|
|
||||||
for( uint8_t i = 0; i < 16; i++ ) {
|
|
||||||
for( uint16_t j = 0; j < 65535; j++ ) {
|
|
||||||
Usb.regWr( rGPINPOL, sample_wr );
|
|
||||||
sample_rd = Usb.regRd( rGPINPOL );
|
|
||||||
if( sample_rd != sample_wr ) {
|
|
||||||
Notify(PSTR("\r\nTest failed. "));
|
|
||||||
Notify(PSTR("Value written: "));
|
|
||||||
print_hex( sample_wr, 8 );
|
|
||||||
Notify(PSTR(" read: "));
|
|
||||||
print_hex( sample_rd, 8 );
|
|
||||||
halt55();
|
|
||||||
}//if( sample_rd != sample_wr..
|
|
||||||
sample_wr++;
|
|
||||||
}//for( uint16_t j...
|
|
||||||
Notify(PSTR("."));
|
|
||||||
}//for( uint8_t i...
|
|
||||||
Usb.regWr( rGPINPOL, gpinpol_copy );
|
|
||||||
Notify(PSTR(" SPI long test passed"));
|
|
||||||
}//SPI long test
|
|
||||||
/* GPIO test */
|
|
||||||
/* in order to simplify board layout, GPIN pins on text fixture are connected to GPOUT */
|
|
||||||
/* in reverse order, i.e, GPIN0 is connected to GPOUT7, GPIN1 to GPOUT6, etc. */
|
|
||||||
{
|
|
||||||
uint8_t tmpbyte;
|
|
||||||
Notify(PSTR("\r\nGPIO test. Connect GPIN0 to GPOUT7, GPIN1 to GPOUT6, and so on"));
|
|
||||||
for( uint8_t sample_gpio = 0; sample_gpio < 255; sample_gpio++ ) {
|
|
||||||
Usb.gpioWr( sample_gpio );
|
|
||||||
tmpbyte = Usb.gpioRd();
|
|
||||||
/* bit reversing code copied vetbatim from http://graphics.stanford.edu/~seander/bithacks.html#BitReverseObvious */
|
|
||||||
tmpbyte = ((tmpbyte * 0x0802LU & 0x22110LU) | (tmpbyte * 0x8020LU & 0x88440LU)) * 0x10101LU >> 16;
|
|
||||||
if( sample_gpio != tmpbyte ) {
|
|
||||||
Notify(PSTR("\r\nTest failed. Value written: "));
|
|
||||||
print_hex( sample_gpio, 8 );
|
|
||||||
Notify(PSTR(" Value read: "));
|
|
||||||
print_hex( tmpbyte , 8 );
|
|
||||||
Notify(PSTR(" "));
|
|
||||||
press_any_key();
|
|
||||||
break;
|
|
||||||
}//if( sample_gpio != tmpbyte...
|
|
||||||
}//for( uint8_t sample_gpio...
|
|
||||||
Notify(PSTR("\r\nGPIO test passed."));
|
|
||||||
}//GPIO test
|
|
||||||
/* PLL test. Stops/starts MAX3421E oscillator several times */
|
|
||||||
{
|
|
||||||
Notify(PSTR("\r\nPLL test. 100 chip resets will be performed"));
|
|
||||||
/* check current state of the oscillator */
|
|
||||||
if(!( Usb.regRd( rUSBIRQ ) & bmOSCOKIRQ )) { //wrong state - should be on
|
|
||||||
Notify(PSTR("\r\nCurrent oscillator state unexpected."));
|
|
||||||
press_any_key();
|
|
||||||
}
|
|
||||||
/* Restart oscillator */
|
|
||||||
Notify(PSTR("\r\nResetting oscillator"));
|
|
||||||
for( uint16_t i = 0; i < 101; i++ ) {
|
|
||||||
Notify(PSTR("\rReset number "));
|
|
||||||
Serial.print( i, DEC );
|
|
||||||
Usb.regWr( rUSBCTL, bmCHIPRES ); //reset
|
|
||||||
if( Usb.regRd( rUSBIRQ ) & bmOSCOKIRQ ) { //wrong state - should be off
|
|
||||||
Notify(PSTR("\r\nCurrent oscillator state unexpected."));
|
|
||||||
halt55();
|
|
||||||
}
|
|
||||||
Usb.regWr( rUSBCTL, 0x00 ); //release from reset
|
|
||||||
uint16_t j = 0;
|
|
||||||
for( j = 0; j < 65535; j++ ) { //tracking off to on time
|
|
||||||
if( Usb.regRd( rUSBIRQ ) & bmOSCOKIRQ ) {
|
|
||||||
Notify(PSTR(" Time to stabilize - "));
|
|
||||||
Serial.print( j, DEC );
|
|
||||||
Notify(PSTR(" cycles"));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}//for( uint16_t j = 0; j < 65535; j++
|
|
||||||
if( j == 0 ) {
|
|
||||||
Notify(PSTR("PLL failed to stabilize"));
|
|
||||||
press_any_key();
|
|
||||||
}
|
|
||||||
}//for( uint8_t i = 0; i < 255; i++
|
|
||||||
|
|
||||||
}//PLL test
|
|
||||||
/* initializing USB stack */
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Notify(PSTR("\r\nOSCOKIRQ failed to assert"));
|
|
||||||
halt55();
|
|
||||||
}
|
|
||||||
Notify(PSTR("\r\nChecking USB device communication.\r\n"));
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
delay( 200 );
|
|
||||||
Usb.Task();
|
|
||||||
usbstate = Usb.getUsbTaskState();
|
|
||||||
//usbstate = Usb.getVbusState();
|
|
||||||
//Notify(PSTR("\r\nUSB Task State: "));
|
|
||||||
//print_hex( usbstate, 8 );
|
|
||||||
/**/
|
|
||||||
|
|
||||||
switch( usbstate ) {
|
|
||||||
case( USB_DETACHED_SUBSTATE_WAIT_FOR_DEVICE ):
|
|
||||||
Notify(PSTR("\rWaiting for device ..."));
|
|
||||||
break;
|
|
||||||
case( USB_ATTACHED_SUBSTATE_RESET_DEVICE ):
|
|
||||||
Notify(PSTR("\r\nDevice connected. Resetting"));
|
|
||||||
break;
|
|
||||||
case( USB_ATTACHED_SUBSTATE_WAIT_SOF ):
|
|
||||||
Notify(PSTR("\rReset complete. Waiting for the first SOF..."));
|
|
||||||
break;
|
|
||||||
case( USB_ATTACHED_SUBSTATE_GET_DEVICE_DESCRIPTOR_SIZE ):
|
|
||||||
Notify(PSTR("\r\nSOF generation started. Enumerating device."));
|
|
||||||
break;
|
|
||||||
case( USB_STATE_ADDRESSING ):
|
|
||||||
Notify(PSTR("\r\nSetting device address"));
|
|
||||||
break;
|
|
||||||
case( USB_STATE_RUNNING ):
|
|
||||||
Notify(PSTR("\r\nGetting device descriptor"));
|
|
||||||
rcode = Usb.getDevDescr( 1, 0, sizeof(USB_DEVICE_DESCRIPTOR), (uint8_t*)&buf );
|
|
||||||
|
|
||||||
if( rcode ) {
|
|
||||||
Notify(PSTR("\rError reading device descriptor. Error code "));
|
|
||||||
print_hex( rcode, 8 );
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
/**/
|
|
||||||
Notify(PSTR("\r\nDescriptor Length:\t"));
|
|
||||||
print_hex( buf.bLength, 8 );
|
|
||||||
Notify(PSTR("\r\nDescriptor type:\t"));
|
|
||||||
print_hex( buf.bDescriptorType, 8 );
|
|
||||||
Notify(PSTR("\r\nUSB version:\t\t"));
|
|
||||||
print_hex( buf.bcdUSB, 16 );
|
|
||||||
Notify(PSTR("\r\nDevice class:\t\t"));
|
|
||||||
print_hex( buf.bDeviceClass, 8 );
|
|
||||||
Notify(PSTR("\r\nDevice Subclass:\t"));
|
|
||||||
print_hex( buf.bDeviceSubClass, 8 );
|
|
||||||
Notify(PSTR("\r\nDevice Protocol:\t"));
|
|
||||||
print_hex( buf.bDeviceProtocol, 8 );
|
|
||||||
Notify(PSTR("\r\nMax.packet size:\t"));
|
|
||||||
print_hex( buf.bMaxPacketSize0, 8 );
|
|
||||||
Notify(PSTR("\r\nVendor ID:\t\t"));
|
|
||||||
print_hex( buf.idVendor, 16 );
|
|
||||||
Notify(PSTR("\r\nProduct ID:\t\t"));
|
|
||||||
print_hex( buf.idProduct, 16 );
|
|
||||||
Notify(PSTR("\r\nRevision ID:\t\t"));
|
|
||||||
print_hex( buf.bcdDevice, 16 );
|
|
||||||
Notify(PSTR("\r\nMfg.string index:\t"));
|
|
||||||
print_hex( buf.iManufacturer, 8 );
|
|
||||||
Notify(PSTR("\r\nProd.string index:\t"));
|
|
||||||
print_hex( buf.iProduct, 8 );
|
|
||||||
Notify(PSTR("\r\nSerial number index:\t"));
|
|
||||||
print_hex( buf.iSerialNumber, 8 );
|
|
||||||
Notify(PSTR("\r\nNumber of conf.:\t"));
|
|
||||||
print_hex( buf.bNumConfigurations, 8 );
|
|
||||||
/**/
|
|
||||||
Notify(PSTR("\r\n\nAll tests passed. Press RESET to restart test"));
|
|
||||||
while(1);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case( USB_STATE_ERROR ):
|
|
||||||
Notify(PSTR("\rUSB state machine reached error state"));
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
//Notify(PSTR("\rUndefined State"));
|
|
||||||
break;
|
|
||||||
}//switch( usbstate...
|
|
||||||
|
|
||||||
}//loop()...
|
|
||||||
|
|
||||||
/* constantly transmits 0x55 via SPI to aid probing */
|
|
||||||
void halt55()
|
|
||||||
{
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nUnrecoverable error - test halted!!"));
|
|
||||||
Notify(PSTR("\r\n0x55 pattern is transmitted via SPI"));
|
|
||||||
Notify(PSTR("\r\nPress RESET to restart test"));
|
|
||||||
|
|
||||||
while( 1 ) {
|
|
||||||
Usb.regWr( 0x55, 0x55 );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* prints hex numbers with leading zeroes */
|
|
||||||
void print_hex(int v, int num_places)
|
|
||||||
{
|
|
||||||
int mask=0, n, num_nibbles, digit;
|
|
||||||
|
|
||||||
for (n=1; n<=num_places; n++) {
|
|
||||||
mask = (mask << 1) | 0x0001;
|
|
||||||
}
|
|
||||||
v = v & mask; // truncate v to specified number of places
|
|
||||||
|
|
||||||
num_nibbles = num_places / 4;
|
|
||||||
if ((num_places % 4) != 0) {
|
|
||||||
++num_nibbles;
|
|
||||||
}
|
|
||||||
do {
|
|
||||||
digit = ((v >> (num_nibbles-1) * 4)) & 0x0f;
|
|
||||||
Serial.print(digit, HEX);
|
|
||||||
} while(--num_nibbles);
|
|
||||||
}
|
|
||||||
/* prints "Press any key" and returns when key is pressed */
|
|
||||||
void press_any_key()
|
|
||||||
{
|
|
||||||
Notify(PSTR("\r\nPress any key to continue..."));
|
|
||||||
while( Serial.available() <= 0 ); //wait for input
|
|
||||||
Serial.read(); //empty input buffer
|
|
||||||
return;
|
|
||||||
}
|
|
|
@ -1,102 +0,0 @@
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
|
|
||||||
#include <cdcftdi.h>
|
|
||||||
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
#include "pgmstrings.h"
|
|
||||||
|
|
||||||
class FTDIAsync : public FTDIAsyncOper
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual uint8_t OnInit(FTDI *pftdi);
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t FTDIAsync::OnInit(FTDI *pftdi)
|
|
||||||
{
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
|
|
||||||
rcode = pftdi->SetBaudRate(115200);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetBaudRate"), rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
rcode = pftdi->SetFlowControl(FTDI_SIO_DISABLE_FLOW_CTRL);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetFlowControl"), rcode);
|
|
||||||
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
//USBHub Hub(&Usb);
|
|
||||||
FTDIAsync FtdiAsync;
|
|
||||||
FTDI Ftdi(&Usb, &FtdiAsync);
|
|
||||||
|
|
||||||
uint32_t next_time;
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Serial.println("Start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1)
|
|
||||||
Serial.println("OSC did not start.");
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
|
|
||||||
next_time = millis() + 5000;
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if( Usb.getUsbTaskState() == USB_STATE_RUNNING )
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
char strbuf[] = "DEADBEEF";
|
|
||||||
//char strbuf[] = "The quick brown fox jumps over the lazy dog";
|
|
||||||
//char strbuf[] = "This string contains 61 character to demonstrate FTDI buffers"; //add one symbol to it to see some garbage
|
|
||||||
Serial.print(".");
|
|
||||||
|
|
||||||
rcode = Ftdi.SndData(strlen(strbuf), (uint8_t*)strbuf);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SndData"), rcode);
|
|
||||||
|
|
||||||
delay(50);
|
|
||||||
|
|
||||||
uint8_t buf[64];
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<64; i++)
|
|
||||||
buf[i] = 0;
|
|
||||||
|
|
||||||
uint16_t rcvd = 64;
|
|
||||||
rcode = Ftdi.RcvData(&rcvd, buf);
|
|
||||||
|
|
||||||
if (rcode && rcode != hrNAK)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("Ret"), rcode);
|
|
||||||
|
|
||||||
// The device reserves the first two bytes of data
|
|
||||||
// to contain the current values of the modem and line status registers.
|
|
||||||
if (rcvd > 2)
|
|
||||||
Serial.print((char*)(buf+2));
|
|
||||||
|
|
||||||
delay(10);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,52 +0,0 @@
|
||||||
#if !defined(__PGMSTRINGS_H__)
|
|
||||||
#define __PGMSTRINGS_H__
|
|
||||||
|
|
||||||
#define LOBYTE(x) ((char*)(&(x)))[0]
|
|
||||||
#define HIBYTE(x) ((char*)(&(x)))[1]
|
|
||||||
#define BUFSIZE 256 //buffer size
|
|
||||||
|
|
||||||
|
|
||||||
/* Print strings in Program Memory */
|
|
||||||
const char Gen_Error_str[] PROGMEM = "\r\nRequest error. Error code:\t";
|
|
||||||
const char Dev_Header_str[] PROGMEM ="\r\nDevice descriptor: ";
|
|
||||||
const char Dev_Length_str[] PROGMEM ="\r\nDescriptor Length:\t";
|
|
||||||
const char Dev_Type_str[] PROGMEM ="\r\nDescriptor type:\t";
|
|
||||||
const char Dev_Version_str[] PROGMEM ="\r\nUSB version:\t\t";
|
|
||||||
const char Dev_Class_str[] PROGMEM ="\r\nDevice class:\t\t";
|
|
||||||
const char Dev_Subclass_str[] PROGMEM ="\r\nDevice Subclass:\t";
|
|
||||||
const char Dev_Protocol_str[] PROGMEM ="\r\nDevice Protocol:\t";
|
|
||||||
const char Dev_Pktsize_str[] PROGMEM ="\r\nMax.packet size:\t";
|
|
||||||
const char Dev_Vendor_str[] PROGMEM ="\r\nVendor ID:\t\t";
|
|
||||||
const char Dev_Product_str[] PROGMEM ="\r\nProduct ID:\t\t";
|
|
||||||
const char Dev_Revision_str[] PROGMEM ="\r\nRevision ID:\t\t";
|
|
||||||
const char Dev_Mfg_str[] PROGMEM ="\r\nMfg.string index:\t";
|
|
||||||
const char Dev_Prod_str[] PROGMEM ="\r\nProd.string index:\t";
|
|
||||||
const char Dev_Serial_str[] PROGMEM ="\r\nSerial number index:\t";
|
|
||||||
const char Dev_Nconf_str[] PROGMEM ="\r\nNumber of conf.:\t";
|
|
||||||
const char Conf_Trunc_str[] PROGMEM ="Total length truncated to 256 bytes";
|
|
||||||
const char Conf_Header_str[] PROGMEM ="\r\nConfiguration descriptor:";
|
|
||||||
const char Conf_Totlen_str[] PROGMEM ="\r\nTotal length:\t\t";
|
|
||||||
const char Conf_Nint_str[] PROGMEM ="\r\nNum.intf:\t\t";
|
|
||||||
const char Conf_Value_str[] PROGMEM ="\r\nConf.value:\t\t";
|
|
||||||
const char Conf_String_str[] PROGMEM ="\r\nConf.string:\t\t";
|
|
||||||
const char Conf_Attr_str[] PROGMEM ="\r\nAttr.:\t\t\t";
|
|
||||||
const char Conf_Pwr_str[] PROGMEM ="\r\nMax.pwr:\t\t";
|
|
||||||
const char Int_Header_str[] PROGMEM ="\r\n\r\nInterface descriptor:";
|
|
||||||
const char Int_Number_str[] PROGMEM ="\r\nIntf.number:\t\t";
|
|
||||||
const char Int_Alt_str[] PROGMEM ="\r\nAlt.:\t\t\t";
|
|
||||||
const char Int_Endpoints_str[] PROGMEM ="\r\nEndpoints:\t\t";
|
|
||||||
const char Int_Class_str[] PROGMEM ="\r\nIntf. Class:\t\t";
|
|
||||||
const char Int_Subclass_str[] PROGMEM ="\r\nIntf. Subclass:\t\t";
|
|
||||||
const char Int_Protocol_str[] PROGMEM ="\r\nIntf. Protocol:\t\t";
|
|
||||||
const char Int_String_str[] PROGMEM ="\r\nIntf.string:\t\t";
|
|
||||||
const char End_Header_str[] PROGMEM ="\r\n\r\nEndpoint descriptor:";
|
|
||||||
const char End_Address_str[] PROGMEM ="\r\nEndpoint address:\t";
|
|
||||||
const char End_Attr_str[] PROGMEM ="\r\nAttr.:\t\t\t";
|
|
||||||
const char End_Pktsize_str[] PROGMEM ="\r\nMax.pkt size:\t\t";
|
|
||||||
const char End_Interval_str[] PROGMEM ="\r\nPolling interval:\t";
|
|
||||||
const char Unk_Header_str[] PROGMEM = "\r\nUnknown descriptor:";
|
|
||||||
const char Unk_Length_str[] PROGMEM ="\r\nLength:\t\t";
|
|
||||||
const char Unk_Type_str[] PROGMEM ="\r\nType:\t\t";
|
|
||||||
const char Unk_Contents_str[] PROGMEM ="\r\nContents:\t";
|
|
||||||
|
|
||||||
#endif // __PGMSTRINGS_H__
|
|
|
@ -1,343 +0,0 @@
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
#include "pgmstrings.h"
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
USBHub Hub1(&Usb);
|
|
||||||
USBHub Hub2(&Usb);
|
|
||||||
USBHub Hub3(&Usb);
|
|
||||||
USBHub Hub4(&Usb);
|
|
||||||
|
|
||||||
uint32_t next_time;
|
|
||||||
|
|
||||||
void PrintAllAddresses(UsbDevice *pdev)
|
|
||||||
{
|
|
||||||
UsbDeviceAddress adr;
|
|
||||||
adr.devAddress = pdev->address;
|
|
||||||
Serial.print("\r\nAddr:");
|
|
||||||
Serial.print(adr.devAddress, HEX);
|
|
||||||
Serial.print("(");
|
|
||||||
Serial.print(adr.bmHub, HEX);
|
|
||||||
Serial.print(".");
|
|
||||||
Serial.print(adr.bmParent, HEX);
|
|
||||||
Serial.print(".");
|
|
||||||
Serial.print(adr.bmAddress, HEX);
|
|
||||||
Serial.println(")");
|
|
||||||
}
|
|
||||||
|
|
||||||
void PrintAddress(uint8_t addr)
|
|
||||||
{
|
|
||||||
UsbDeviceAddress adr;
|
|
||||||
adr.devAddress = addr;
|
|
||||||
Serial.print("\r\nADDR:\t");
|
|
||||||
Serial.println(adr.devAddress,HEX);
|
|
||||||
Serial.print("DEV:\t");
|
|
||||||
Serial.println(adr.bmAddress,HEX);
|
|
||||||
Serial.print("PRNT:\t");
|
|
||||||
Serial.println(adr.bmParent,HEX);
|
|
||||||
Serial.print("HUB:\t");
|
|
||||||
Serial.println(adr.bmHub,HEX);
|
|
||||||
}
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Serial.println("Start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1)
|
|
||||||
Serial.println("OSC did not start.");
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
|
|
||||||
next_time = millis() + 10000;
|
|
||||||
}
|
|
||||||
|
|
||||||
byte getdevdescr( byte addr, byte &num_conf );
|
|
||||||
|
|
||||||
void PrintDescriptors(uint8_t addr)
|
|
||||||
{
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
byte num_conf = 0;
|
|
||||||
|
|
||||||
rcode = getdevdescr( (byte)addr, num_conf );
|
|
||||||
if( rcode )
|
|
||||||
{
|
|
||||||
printProgStr(Gen_Error_str);
|
|
||||||
print_hex( rcode, 8 );
|
|
||||||
}
|
|
||||||
Serial.print("\r\n");
|
|
||||||
|
|
||||||
for (int i=0; i<num_conf; i++)
|
|
||||||
{
|
|
||||||
rcode = getconfdescr( addr, i ); // get configuration descriptor
|
|
||||||
if( rcode )
|
|
||||||
{
|
|
||||||
printProgStr(Gen_Error_str);
|
|
||||||
print_hex(rcode, 8);
|
|
||||||
}
|
|
||||||
Serial.println("\r\n");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void PrintAllDescriptors(UsbDevice *pdev)
|
|
||||||
{
|
|
||||||
Serial.println("\r\n");
|
|
||||||
print_hex(pdev->address, 8);
|
|
||||||
Serial.println("\r\n--");
|
|
||||||
PrintDescriptors( pdev->address );
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if( Usb.getUsbTaskState() == USB_STATE_RUNNING )
|
|
||||||
{
|
|
||||||
if (millis() >= next_time)
|
|
||||||
{
|
|
||||||
Usb.ForEachUsbDevice(&PrintAllDescriptors);
|
|
||||||
Usb.ForEachUsbDevice(&PrintAllAddresses);
|
|
||||||
|
|
||||||
while( 1 ); //stop
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
byte getdevdescr( byte addr, byte &num_conf )
|
|
||||||
{
|
|
||||||
USB_DEVICE_DESCRIPTOR buf;
|
|
||||||
byte rcode;
|
|
||||||
rcode = Usb.getDevDescr( addr, 0, 0x12, ( uint8_t *)&buf );
|
|
||||||
if( rcode ) {
|
|
||||||
return( rcode );
|
|
||||||
}
|
|
||||||
printProgStr(Dev_Header_str);
|
|
||||||
printProgStr(Dev_Length_str);
|
|
||||||
print_hex( buf.bLength, 8 );
|
|
||||||
printProgStr(Dev_Type_str);
|
|
||||||
print_hex( buf.bDescriptorType, 8 );
|
|
||||||
printProgStr(Dev_Version_str);
|
|
||||||
print_hex( buf.bcdUSB, 16 );
|
|
||||||
printProgStr(Dev_Class_str);
|
|
||||||
print_hex( buf.bDeviceClass, 8 );
|
|
||||||
printProgStr(Dev_Subclass_str);
|
|
||||||
print_hex( buf.bDeviceSubClass, 8 );
|
|
||||||
printProgStr(Dev_Protocol_str);
|
|
||||||
print_hex( buf.bDeviceProtocol, 8 );
|
|
||||||
printProgStr(Dev_Pktsize_str);
|
|
||||||
print_hex( buf.bMaxPacketSize0, 8 );
|
|
||||||
printProgStr(Dev_Vendor_str);
|
|
||||||
print_hex( buf.idVendor, 16 );
|
|
||||||
printProgStr(Dev_Product_str);
|
|
||||||
print_hex( buf.idProduct, 16 );
|
|
||||||
printProgStr(Dev_Revision_str);
|
|
||||||
print_hex( buf.bcdDevice, 16 );
|
|
||||||
printProgStr(Dev_Mfg_str);
|
|
||||||
print_hex( buf.iManufacturer, 8 );
|
|
||||||
printProgStr(Dev_Prod_str);
|
|
||||||
print_hex( buf.iProduct, 8 );
|
|
||||||
printProgStr(Dev_Serial_str);
|
|
||||||
print_hex( buf.iSerialNumber, 8 );
|
|
||||||
printProgStr(Dev_Nconf_str);
|
|
||||||
print_hex( buf.bNumConfigurations, 8 );
|
|
||||||
num_conf = buf.bNumConfigurations;
|
|
||||||
return( 0 );
|
|
||||||
}
|
|
||||||
|
|
||||||
void printhubdescr(uint8_t *descrptr, uint8_t addr)
|
|
||||||
{
|
|
||||||
HubDescriptor *pHub = (HubDescriptor*) descrptr;
|
|
||||||
uint8_t len = *((uint8_t*)descrptr);
|
|
||||||
|
|
||||||
printProgStr(PSTR("\r\n\r\nHub Descriptor:\r\n"));
|
|
||||||
printProgStr(PSTR("bDescLength:\t\t"));
|
|
||||||
Serial.println(pHub->bDescLength, HEX);
|
|
||||||
|
|
||||||
printProgStr(PSTR("bDescriptorType:\t"));
|
|
||||||
Serial.println(pHub->bDescriptorType, HEX);
|
|
||||||
|
|
||||||
printProgStr(PSTR("bNbrPorts:\t\t"));
|
|
||||||
Serial.println(pHub->bNbrPorts, HEX);
|
|
||||||
|
|
||||||
printProgStr(PSTR("LogPwrSwitchMode:\t"));
|
|
||||||
Serial.println(pHub->LogPwrSwitchMode, BIN);
|
|
||||||
|
|
||||||
printProgStr(PSTR("CompoundDevice:\t\t"));
|
|
||||||
Serial.println(pHub->CompoundDevice, BIN);
|
|
||||||
|
|
||||||
printProgStr(PSTR("OverCurrentProtectMode:\t"));
|
|
||||||
Serial.println(pHub->OverCurrentProtectMode, BIN);
|
|
||||||
|
|
||||||
printProgStr(PSTR("TTThinkTime:\t\t"));
|
|
||||||
Serial.println(pHub->TTThinkTime, BIN);
|
|
||||||
|
|
||||||
printProgStr(PSTR("PortIndicatorsSupported:"));
|
|
||||||
Serial.println(pHub->PortIndicatorsSupported, BIN);
|
|
||||||
|
|
||||||
printProgStr(PSTR("Reserved:\t\t"));
|
|
||||||
Serial.println(pHub->Reserved, HEX);
|
|
||||||
|
|
||||||
printProgStr(PSTR("bPwrOn2PwrGood:\t\t"));
|
|
||||||
Serial.println(pHub->bPwrOn2PwrGood, HEX);
|
|
||||||
|
|
||||||
printProgStr(PSTR("bHubContrCurrent:\t"));
|
|
||||||
Serial.println(pHub->bHubContrCurrent, HEX);
|
|
||||||
|
|
||||||
for (uint8_t i=7; i<len; i++)
|
|
||||||
print_hex(descrptr[i], 8);
|
|
||||||
|
|
||||||
//for (uint8_t i=1; i<=pHub->bNbrPorts; i++)
|
|
||||||
// PrintHubPortStatus(&Usb, addr, i, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
byte getconfdescr( byte addr, byte conf )
|
|
||||||
{
|
|
||||||
uint8_t buf[ BUFSIZE ];
|
|
||||||
uint8_t* buf_ptr = buf;
|
|
||||||
byte rcode;
|
|
||||||
byte descr_length;
|
|
||||||
byte descr_type;
|
|
||||||
unsigned int total_length;
|
|
||||||
rcode = Usb.getConfDescr( addr, 0, 4, conf, buf ); //get total length
|
|
||||||
LOBYTE( total_length ) = buf[ 2 ];
|
|
||||||
HIBYTE( total_length ) = buf[ 3 ];
|
|
||||||
if( total_length > 256 ) { //check if total length is larger than buffer
|
|
||||||
printProgStr(Conf_Trunc_str);
|
|
||||||
total_length = 256;
|
|
||||||
}
|
|
||||||
rcode = Usb.getConfDescr( addr, 0, total_length, conf, buf ); //get the whole descriptor
|
|
||||||
while( buf_ptr < buf + total_length ) { //parsing descriptors
|
|
||||||
descr_length = *( buf_ptr );
|
|
||||||
descr_type = *( buf_ptr + 1 );
|
|
||||||
switch( descr_type ) {
|
|
||||||
case( USB_DESCRIPTOR_CONFIGURATION ):
|
|
||||||
printconfdescr( buf_ptr );
|
|
||||||
break;
|
|
||||||
case( USB_DESCRIPTOR_INTERFACE ):
|
|
||||||
printintfdescr( buf_ptr );
|
|
||||||
break;
|
|
||||||
case( USB_DESCRIPTOR_ENDPOINT ):
|
|
||||||
printepdescr( buf_ptr );
|
|
||||||
break;
|
|
||||||
case 0x29:
|
|
||||||
printhubdescr( buf_ptr, addr );
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
printunkdescr( buf_ptr );
|
|
||||||
break;
|
|
||||||
}//switch( descr_type
|
|
||||||
buf_ptr = ( buf_ptr + descr_length ); //advance buffer pointer
|
|
||||||
}//while( buf_ptr <=...
|
|
||||||
return( 0 );
|
|
||||||
}
|
|
||||||
/* prints hex numbers with leading zeroes */
|
|
||||||
// copyright, Peter H Anderson, Baltimore, MD, Nov, '07
|
|
||||||
// source: http://www.phanderson.com/arduino/arduino_display.html
|
|
||||||
void print_hex(int v, int num_places)
|
|
||||||
{
|
|
||||||
int mask=0, n, num_nibbles, digit;
|
|
||||||
|
|
||||||
for (n=1; n<=num_places; n++) {
|
|
||||||
mask = (mask << 1) | 0x0001;
|
|
||||||
}
|
|
||||||
v = v & mask; // truncate v to specified number of places
|
|
||||||
|
|
||||||
num_nibbles = num_places / 4;
|
|
||||||
if ((num_places % 4) != 0) {
|
|
||||||
++num_nibbles;
|
|
||||||
}
|
|
||||||
do {
|
|
||||||
digit = ((v >> (num_nibbles-1) * 4)) & 0x0f;
|
|
||||||
Serial.print(digit, HEX);
|
|
||||||
}
|
|
||||||
while(--num_nibbles);
|
|
||||||
}
|
|
||||||
/* function to print configuration descriptor */
|
|
||||||
void printconfdescr( uint8_t* descr_ptr )
|
|
||||||
{
|
|
||||||
USB_CONFIGURATION_DESCRIPTOR* conf_ptr = ( USB_CONFIGURATION_DESCRIPTOR* )descr_ptr;
|
|
||||||
printProgStr(Conf_Header_str);
|
|
||||||
printProgStr(Conf_Totlen_str);
|
|
||||||
print_hex( conf_ptr->wTotalLength, 16 );
|
|
||||||
printProgStr(Conf_Nint_str);
|
|
||||||
print_hex( conf_ptr->bNumInterfaces, 8 );
|
|
||||||
printProgStr(Conf_Value_str);
|
|
||||||
print_hex( conf_ptr->bConfigurationValue, 8 );
|
|
||||||
printProgStr(Conf_String_str);
|
|
||||||
print_hex( conf_ptr->iConfiguration, 8 );
|
|
||||||
printProgStr(Conf_Attr_str);
|
|
||||||
print_hex( conf_ptr->bmAttributes, 8 );
|
|
||||||
printProgStr(Conf_Pwr_str);
|
|
||||||
print_hex( conf_ptr->bMaxPower, 8 );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
/* function to print interface descriptor */
|
|
||||||
void printintfdescr( uint8_t* descr_ptr )
|
|
||||||
{
|
|
||||||
USB_INTERFACE_DESCRIPTOR* intf_ptr = ( USB_INTERFACE_DESCRIPTOR* )descr_ptr;
|
|
||||||
printProgStr(Int_Header_str);
|
|
||||||
printProgStr(Int_Number_str);
|
|
||||||
print_hex( intf_ptr->bInterfaceNumber, 8 );
|
|
||||||
printProgStr(Int_Alt_str);
|
|
||||||
print_hex( intf_ptr->bAlternateSetting, 8 );
|
|
||||||
printProgStr(Int_Endpoints_str);
|
|
||||||
print_hex( intf_ptr->bNumEndpoints, 8 );
|
|
||||||
printProgStr(Int_Class_str);
|
|
||||||
print_hex( intf_ptr->bInterfaceClass, 8 );
|
|
||||||
printProgStr(Int_Subclass_str);
|
|
||||||
print_hex( intf_ptr->bInterfaceSubClass, 8 );
|
|
||||||
printProgStr(Int_Protocol_str);
|
|
||||||
print_hex( intf_ptr->bInterfaceProtocol, 8 );
|
|
||||||
printProgStr(Int_String_str);
|
|
||||||
print_hex( intf_ptr->iInterface, 8 );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
/* function to print endpoint descriptor */
|
|
||||||
void printepdescr( uint8_t* descr_ptr )
|
|
||||||
{
|
|
||||||
USB_ENDPOINT_DESCRIPTOR* ep_ptr = ( USB_ENDPOINT_DESCRIPTOR* )descr_ptr;
|
|
||||||
printProgStr(End_Header_str);
|
|
||||||
printProgStr(End_Address_str);
|
|
||||||
print_hex( ep_ptr->bEndpointAddress, 8 );
|
|
||||||
printProgStr(End_Attr_str);
|
|
||||||
print_hex( ep_ptr->bmAttributes, 8 );
|
|
||||||
printProgStr(End_Pktsize_str);
|
|
||||||
print_hex( ep_ptr->wMaxPacketSize, 16 );
|
|
||||||
printProgStr(End_Interval_str);
|
|
||||||
print_hex( ep_ptr->bInterval, 8 );
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
/*function to print unknown descriptor */
|
|
||||||
void printunkdescr( uint8_t* descr_ptr )
|
|
||||||
{
|
|
||||||
byte length = *descr_ptr;
|
|
||||||
byte i;
|
|
||||||
printProgStr(Unk_Header_str);
|
|
||||||
printProgStr(Unk_Length_str);
|
|
||||||
print_hex( *descr_ptr, 8 );
|
|
||||||
printProgStr(Unk_Type_str);
|
|
||||||
print_hex( *(descr_ptr + 1 ), 8 );
|
|
||||||
printProgStr(Unk_Contents_str);
|
|
||||||
descr_ptr += 2;
|
|
||||||
for( i = 0; i < length; i++ ) {
|
|
||||||
print_hex( *descr_ptr, 8 );
|
|
||||||
descr_ptr++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Print a string from Program Memory directly to save RAM */
|
|
||||||
void printProgStr(const prog_char str[])
|
|
||||||
{
|
|
||||||
char c;
|
|
||||||
if(!str) return;
|
|
||||||
while((c = pgm_read_byte(str++)))
|
|
||||||
Serial.print(c);
|
|
||||||
}
|
|
|
@ -1,52 +0,0 @@
|
||||||
#if !defined(__PGMSTRINGS_H__)
|
|
||||||
#define __PGMSTRINGS_H__
|
|
||||||
|
|
||||||
#define LOBYTE(x) ((char*)(&(x)))[0]
|
|
||||||
#define HIBYTE(x) ((char*)(&(x)))[1]
|
|
||||||
#define BUFSIZE 256 //buffer size
|
|
||||||
|
|
||||||
|
|
||||||
/* Print strings in Program Memory */
|
|
||||||
const char Gen_Error_str[] PROGMEM = "\r\nRequest error. Error code:\t";
|
|
||||||
const char Dev_Header_str[] PROGMEM ="\r\nDevice descriptor: ";
|
|
||||||
const char Dev_Length_str[] PROGMEM ="\r\nDescriptor Length:\t";
|
|
||||||
const char Dev_Type_str[] PROGMEM ="\r\nDescriptor type:\t";
|
|
||||||
const char Dev_Version_str[] PROGMEM ="\r\nUSB version:\t\t";
|
|
||||||
const char Dev_Class_str[] PROGMEM ="\r\nDevice class:\t\t";
|
|
||||||
const char Dev_Subclass_str[] PROGMEM ="\r\nDevice Subclass:\t";
|
|
||||||
const char Dev_Protocol_str[] PROGMEM ="\r\nDevice Protocol:\t";
|
|
||||||
const char Dev_Pktsize_str[] PROGMEM ="\r\nMax.packet size:\t";
|
|
||||||
const char Dev_Vendor_str[] PROGMEM ="\r\nVendor ID:\t\t";
|
|
||||||
const char Dev_Product_str[] PROGMEM ="\r\nProduct ID:\t\t";
|
|
||||||
const char Dev_Revision_str[] PROGMEM ="\r\nRevision ID:\t\t";
|
|
||||||
const char Dev_Mfg_str[] PROGMEM ="\r\nMfg.string index:\t";
|
|
||||||
const char Dev_Prod_str[] PROGMEM ="\r\nProd.string index:\t";
|
|
||||||
const char Dev_Serial_str[] PROGMEM ="\r\nSerial number index:\t";
|
|
||||||
const char Dev_Nconf_str[] PROGMEM ="\r\nNumber of conf.:\t";
|
|
||||||
const char Conf_Trunc_str[] PROGMEM ="Total length truncated to 256 bytes";
|
|
||||||
const char Conf_Header_str[] PROGMEM ="\r\nConfiguration descriptor:";
|
|
||||||
const char Conf_Totlen_str[] PROGMEM ="\r\nTotal length:\t\t";
|
|
||||||
const char Conf_Nint_str[] PROGMEM ="\r\nNum.intf:\t\t";
|
|
||||||
const char Conf_Value_str[] PROGMEM ="\r\nConf.value:\t\t";
|
|
||||||
const char Conf_String_str[] PROGMEM ="\r\nConf.string:\t\t";
|
|
||||||
const char Conf_Attr_str[] PROGMEM ="\r\nAttr.:\t\t\t";
|
|
||||||
const char Conf_Pwr_str[] PROGMEM ="\r\nMax.pwr:\t\t";
|
|
||||||
const char Int_Header_str[] PROGMEM ="\r\n\r\nInterface descriptor:";
|
|
||||||
const char Int_Number_str[] PROGMEM ="\r\nIntf.number:\t\t";
|
|
||||||
const char Int_Alt_str[] PROGMEM ="\r\nAlt.:\t\t\t";
|
|
||||||
const char Int_Endpoints_str[] PROGMEM ="\r\nEndpoints:\t\t";
|
|
||||||
const char Int_Class_str[] PROGMEM ="\r\nIntf. Class:\t\t";
|
|
||||||
const char Int_Subclass_str[] PROGMEM ="\r\nIntf. Subclass:\t\t";
|
|
||||||
const char Int_Protocol_str[] PROGMEM ="\r\nIntf. Protocol:\t\t";
|
|
||||||
const char Int_String_str[] PROGMEM ="\r\nIntf.string:\t\t";
|
|
||||||
const char End_Header_str[] PROGMEM ="\r\n\r\nEndpoint descriptor:";
|
|
||||||
const char End_Address_str[] PROGMEM ="\r\nEndpoint address:\t";
|
|
||||||
const char End_Attr_str[] PROGMEM ="\r\nAttr.:\t\t\t";
|
|
||||||
const char End_Pktsize_str[] PROGMEM ="\r\nMax.pkt size:\t\t";
|
|
||||||
const char End_Interval_str[] PROGMEM ="\r\nPolling interval:\t";
|
|
||||||
const char Unk_Header_str[] PROGMEM = "\r\nUnknown descriptor:";
|
|
||||||
const char Unk_Length_str[] PROGMEM ="\r\nLength:\t\t";
|
|
||||||
const char Unk_Type_str[] PROGMEM ="\r\nType:\t\t";
|
|
||||||
const char Unk_Contents_str[] PROGMEM ="\r\nContents:\t";
|
|
||||||
|
|
||||||
#endif // __PGMSTRINGS_H__
|
|
|
@ -1,104 +0,0 @@
|
||||||
/* Arduino terminal for PL2303 USB to serial converter and DealeXtreme GPRS modem. */
|
|
||||||
/* USB support */
|
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
/* CDC support */
|
|
||||||
#include <cdcacm.h>
|
|
||||||
#include <cdcprolific.h>
|
|
||||||
/* Debug support */
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
class PLAsyncOper : public CDCAsyncOper
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual uint8_t OnInit(ACM *pacm);
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t PLAsyncOper::OnInit(ACM *pacm)
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
|
|
||||||
// Set DTR = 1
|
|
||||||
rcode = pacm->SetControlLineState(1);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetControlLineState"), rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
LINE_CODING lc;
|
|
||||||
//lc.dwDTERate = 9600;
|
|
||||||
lc.dwDTERate = 115200;
|
|
||||||
lc.bCharFormat = 0;
|
|
||||||
lc.bParityType = 0;
|
|
||||||
lc.bDataBits = 8;
|
|
||||||
|
|
||||||
rcode = pacm->SetLineCoding(&lc);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetLineCoding"), rcode);
|
|
||||||
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
USB Usb;
|
|
||||||
//USBHub Hub(&Usb);
|
|
||||||
PLAsyncOper AsyncOper;
|
|
||||||
PL2303 Pl(&Usb, &AsyncOper);
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Serial.println("Start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1)
|
|
||||||
Serial.println("OSCOKIRQ failed to assert");
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if( Usb.getUsbTaskState() == USB_STATE_RUNNING )
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
|
|
||||||
/* reading the keyboard */
|
|
||||||
if(Serial.available()) {
|
|
||||||
uint8_t data= Serial.read();
|
|
||||||
|
|
||||||
/* sending to the phone */
|
|
||||||
rcode = Pl.SndData(1, &data);
|
|
||||||
if (rcode)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SndData"), rcode);
|
|
||||||
}//if(Serial.available()...
|
|
||||||
|
|
||||||
/* reading the converter */
|
|
||||||
/* buffer size must be greater or equal to max.packet size */
|
|
||||||
/* it it set to 64 (largest possible max.packet size) here, can be tuned down
|
|
||||||
for particular endpoint */
|
|
||||||
uint8_t buf[64];
|
|
||||||
uint16_t rcvd = 64;
|
|
||||||
rcode = Pl.RcvData(&rcvd, buf);
|
|
||||||
if (rcode && rcode != hrNAK)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("Ret"), rcode);
|
|
||||||
|
|
||||||
if( rcvd ) { //more than zero bytes received
|
|
||||||
for(uint16_t i=0; i < rcvd; i++ ) {
|
|
||||||
Serial.print((char)buf[i]); //printing on the screen
|
|
||||||
}
|
|
||||||
}//if( rcvd ...
|
|
||||||
}//if( Usb.getUsbTaskState() == USB_STATE_RUNNING..
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,96 +0,0 @@
|
||||||
/* USB Host to PL2303-based USB GPS unit interface */
|
|
||||||
/* Navibee GM720 receiver - Sirf Star III */
|
|
||||||
/* USB support */
|
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
/* CDC support */
|
|
||||||
#include <cdcacm.h>
|
|
||||||
#include <cdcprolific.h>
|
|
||||||
/* Debug support */
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
class PLAsyncOper : public CDCAsyncOper
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual uint8_t OnInit(ACM *pacm);
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t PLAsyncOper::OnInit(ACM *pacm)
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
|
|
||||||
// Set DTR = 1
|
|
||||||
rcode = pacm->SetControlLineState(1);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetControlLineState"), rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
LINE_CODING lc;
|
|
||||||
lc.dwDTERate = 4800; //default serial speed of GPS unit
|
|
||||||
lc.bCharFormat = 0;
|
|
||||||
lc.bParityType = 0;
|
|
||||||
lc.bDataBits = 8;
|
|
||||||
|
|
||||||
rcode = pacm->SetLineCoding(&lc);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetLineCoding"), rcode);
|
|
||||||
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
USBHub Hub(&Usb);
|
|
||||||
PLAsyncOper AsyncOper;
|
|
||||||
PL2303 Pl(&Usb, &AsyncOper);
|
|
||||||
uint32_t read_delay;
|
|
||||||
#define READ_DELAY 100
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Serial.println("Start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1)
|
|
||||||
Serial.println("OSCOKIRQ failed to assert");
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
uint8_t buf[64]; //serial buffer equals Max.packet size of bulk-IN endpoint
|
|
||||||
uint16_t rcvd = 64;
|
|
||||||
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if( Pl.isReady()) {
|
|
||||||
/* reading the GPS */
|
|
||||||
if( read_delay < millis() ){
|
|
||||||
read_delay += READ_DELAY;
|
|
||||||
rcode = Pl.RcvData(&rcvd, buf);
|
|
||||||
if ( rcode && rcode != hrNAK )
|
|
||||||
ErrorMessage<uint8_t>(PSTR("Ret"), rcode);
|
|
||||||
if( rcvd ) { //more than zero bytes received
|
|
||||||
for( uint16_t i=0; i < rcvd; i++ ) {
|
|
||||||
Serial.print((char)buf[i]); //printing on the screen
|
|
||||||
}//for( uint16_t i=0; i < rcvd; i++...
|
|
||||||
}//if( rcvd
|
|
||||||
}//if( read_delay > millis()...
|
|
||||||
}//if( Usb.getUsbTaskState() == USB_STATE_RUNNING..
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
|
@ -1,221 +0,0 @@
|
||||||
/* USB Host to PL2303-based USB GPS unit interface */
|
|
||||||
/* Navibee GM720 receiver - Sirf Star III */
|
|
||||||
/* Mikal Hart's TinyGPS library */
|
|
||||||
/* test_with_gps_device library example modified for PL2302 access */
|
|
||||||
|
|
||||||
/* USB support */
|
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
|
|
||||||
/* CDC support */
|
|
||||||
#include <cdcacm.h>
|
|
||||||
#include <cdcprolific.h>
|
|
||||||
|
|
||||||
/* Debug support */
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
#include <TinyGPS.h>
|
|
||||||
|
|
||||||
/* This sample code demonstrates the normal use of a TinyGPS object.
|
|
||||||
Modified to be used with USB Host Shield Library r2.0
|
|
||||||
and USB Host Shield 2.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
class PLAsyncOper : public CDCAsyncOper
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual uint8_t OnInit(ACM *pacm);
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t PLAsyncOper::OnInit(ACM *pacm)
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
|
|
||||||
// Set DTR = 1
|
|
||||||
rcode = pacm->SetControlLineState(1);
|
|
||||||
|
|
||||||
if (rcode) {
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetControlLineState"), rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
LINE_CODING lc;
|
|
||||||
lc.dwDTERate = 4800; //default serial speed of GPS unit
|
|
||||||
lc.bCharFormat = 0;
|
|
||||||
lc.bParityType = 0;
|
|
||||||
lc.bDataBits = 8;
|
|
||||||
|
|
||||||
rcode = pacm->SetLineCoding(&lc);
|
|
||||||
|
|
||||||
if (rcode) {
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetLineCoding"), rcode);
|
|
||||||
}
|
|
||||||
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
USB Usb;
|
|
||||||
//USBHub Hub(&Usb);
|
|
||||||
PLAsyncOper AsyncOper;
|
|
||||||
PL2303 Pl(&Usb, &AsyncOper);
|
|
||||||
TinyGPS gps;
|
|
||||||
|
|
||||||
void gpsdump(TinyGPS &gps);
|
|
||||||
bool feedgps();
|
|
||||||
void printFloat(double f, int digits = 2);
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
|
|
||||||
Serial.begin(115200);
|
|
||||||
|
|
||||||
Serial.print("Testing TinyGPS library v. "); Serial.println(TinyGPS::library_version());
|
|
||||||
Serial.println("by Mikal Hart");
|
|
||||||
Serial.println();
|
|
||||||
Serial.print("Sizeof(gpsobject) = "); Serial.println(sizeof(TinyGPS));
|
|
||||||
Serial.println();
|
|
||||||
/* USB Initialization */
|
|
||||||
if (Usb.Init() == -1) {
|
|
||||||
Serial.println("OSCOKIRQ failed to assert");
|
|
||||||
}
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if( Pl.isReady()) {
|
|
||||||
|
|
||||||
bool newdata = false;
|
|
||||||
unsigned long start = millis();
|
|
||||||
|
|
||||||
// Every 5 seconds we print an update
|
|
||||||
while (millis() - start < 5000) {
|
|
||||||
if( feedgps()) {
|
|
||||||
newdata = true;
|
|
||||||
}
|
|
||||||
}//while (millis()...
|
|
||||||
|
|
||||||
if (newdata) {
|
|
||||||
Serial.println("Acquired Data");
|
|
||||||
Serial.println("-------------");
|
|
||||||
gpsdump(gps);
|
|
||||||
Serial.println("-------------");
|
|
||||||
Serial.println();
|
|
||||||
}//if( newdata...
|
|
||||||
}//if( Usb.getUsbTaskState() == USB_STATE_RUNNING...
|
|
||||||
}
|
|
||||||
|
|
||||||
void printFloat(double number, int digits)
|
|
||||||
{
|
|
||||||
// Handle negative numbers
|
|
||||||
if (number < 0.0)
|
|
||||||
{
|
|
||||||
Serial.print('-');
|
|
||||||
number = -number;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Round correctly so that print(1.999, 2) prints as "2.00"
|
|
||||||
double rounding = 0.5;
|
|
||||||
for (uint8_t i=0; i<digits; ++i)
|
|
||||||
rounding /= 10.0;
|
|
||||||
|
|
||||||
number += rounding;
|
|
||||||
|
|
||||||
// Extract the integer part of the number and print it
|
|
||||||
unsigned long int_part = (unsigned long)number;
|
|
||||||
double remainder = number - (double)int_part;
|
|
||||||
Serial.print(int_part);
|
|
||||||
|
|
||||||
// Print the decimal point, but only if there are digits beyond
|
|
||||||
if (digits > 0)
|
|
||||||
Serial.print(".");
|
|
||||||
|
|
||||||
// Extract digits from the remainder one at a time
|
|
||||||
while (digits-- > 0)
|
|
||||||
{
|
|
||||||
remainder *= 10.0;
|
|
||||||
int toPrint = int(remainder);
|
|
||||||
Serial.print(toPrint);
|
|
||||||
remainder -= toPrint;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void gpsdump(TinyGPS &gps)
|
|
||||||
{
|
|
||||||
long lat, lon;
|
|
||||||
float flat, flon;
|
|
||||||
unsigned long age, date, time, chars;
|
|
||||||
int year;
|
|
||||||
byte month, day, hour, minute, second, hundredths;
|
|
||||||
unsigned short sentences, failed;
|
|
||||||
|
|
||||||
gps.get_position(&lat, &lon, &age);
|
|
||||||
Serial.print("Lat/Long(10^-5 deg): "); Serial.print(lat); Serial.print(", "); Serial.print(lon);
|
|
||||||
Serial.print(" Fix age: "); Serial.print(age); Serial.println("ms.");
|
|
||||||
|
|
||||||
feedgps(); // If we don't feed the gps during this long routine, we may drop characters and get checksum errors
|
|
||||||
|
|
||||||
gps.f_get_position(&flat, &flon, &age);
|
|
||||||
Serial.print("Lat/Long(float): "); printFloat(flat, 5); Serial.print(", "); printFloat(flon, 5);
|
|
||||||
Serial.print(" Fix age: "); Serial.print(age); Serial.println("ms.");
|
|
||||||
|
|
||||||
feedgps();
|
|
||||||
|
|
||||||
gps.get_datetime(&date, &time, &age);
|
|
||||||
Serial.print("Date(ddmmyy): "); Serial.print(date); Serial.print(" Time(hhmmsscc): "); Serial.print(time);
|
|
||||||
Serial.print(" Fix age: "); Serial.print(age); Serial.println("ms.");
|
|
||||||
|
|
||||||
feedgps();
|
|
||||||
|
|
||||||
gps.crack_datetime(&year, &month, &day, &hour, &minute, &second, &hundredths, &age);
|
|
||||||
Serial.print("Date: "); Serial.print(static_cast<int>(month)); Serial.print("/"); Serial.print(static_cast<int>(day)); Serial.print("/"); Serial.print(year);
|
|
||||||
Serial.print(" Time: "); Serial.print(static_cast<int>(hour)); Serial.print(":"); Serial.print(static_cast<int>(minute)); Serial.print(":"); Serial.print(static_cast<int>(second)); Serial.print("."); Serial.print(static_cast<int>(hundredths));
|
|
||||||
Serial.print(" Fix age: "); Serial.print(age); Serial.println("ms.");
|
|
||||||
|
|
||||||
feedgps();
|
|
||||||
|
|
||||||
Serial.print("Alt(cm): "); Serial.print(gps.altitude()); Serial.print(" Course(10^-2 deg): "); Serial.print(gps.course()); Serial.print(" Speed(10^-2 knots): "); Serial.println(gps.speed());
|
|
||||||
Serial.print("Alt(float): "); printFloat(gps.f_altitude()); Serial.print(" Course(float): "); printFloat(gps.f_course()); Serial.println();
|
|
||||||
Serial.print("Speed(knots): "); printFloat(gps.f_speed_knots()); Serial.print(" (mph): "); printFloat(gps.f_speed_mph());
|
|
||||||
Serial.print(" (mps): "); printFloat(gps.f_speed_mps()); Serial.print(" (kmph): "); printFloat(gps.f_speed_kmph()); Serial.println();
|
|
||||||
|
|
||||||
feedgps();
|
|
||||||
|
|
||||||
gps.stats(&chars, &sentences, &failed);
|
|
||||||
Serial.print("Stats: characters: "); Serial.print(chars); Serial.print(" sentences: "); Serial.print(sentences); Serial.print(" failed checksum: "); Serial.println(failed);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool feedgps()
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
uint8_t buf[64]; //serial buffer equals Max.packet size of bulk-IN endpoint
|
|
||||||
uint16_t rcvd = 64;
|
|
||||||
{
|
|
||||||
/* reading the GPS */
|
|
||||||
rcode = Pl.RcvData(&rcvd, buf);
|
|
||||||
if (rcode && rcode != hrNAK)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("Ret"), rcode);
|
|
||||||
rcode = false;
|
|
||||||
if( rcvd ) { //more than zero bytes received
|
|
||||||
for( uint16_t i=0; i < rcvd; i++ ) {
|
|
||||||
if( gps.encode((char)buf[i])) { //feed a character to gps object
|
|
||||||
rcode = true;
|
|
||||||
}//if( gps.encode(buf[i]...
|
|
||||||
}//for( uint16_t i=0; i < rcvd; i++...
|
|
||||||
}//if( rcvd...
|
|
||||||
}
|
|
||||||
return( rcode );
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,120 +0,0 @@
|
||||||
/* Arduino terminal for PL2303 USB to serial converter and XBee radio. */
|
|
||||||
/* Inserts linefeed after carriage return in data sent to and received from Xbee */
|
|
||||||
/* USB support */
|
|
||||||
#include <avrpins.h>
|
|
||||||
#include <max3421e.h>
|
|
||||||
#include <usbhost.h>
|
|
||||||
#include <usb_ch9.h>
|
|
||||||
#include <Usb.h>
|
|
||||||
#include <usbhub.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include <address.h>
|
|
||||||
/* CDC support */
|
|
||||||
#include <cdcacm.h>
|
|
||||||
#include <cdcprolific.h>
|
|
||||||
/* Debug support */
|
|
||||||
#include <printhex.h>
|
|
||||||
#include <message.h>
|
|
||||||
#include <hexdump.h>
|
|
||||||
#include <parsetools.h>
|
|
||||||
|
|
||||||
class PLAsyncOper : public CDCAsyncOper
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual uint8_t OnInit(ACM *pacm);
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t PLAsyncOper::OnInit(ACM *pacm)
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
|
|
||||||
// Set DTR = 1
|
|
||||||
rcode = pacm->SetControlLineState(1);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetControlLineState"), rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
LINE_CODING lc;
|
|
||||||
lc.dwDTERate = 115200;
|
|
||||||
lc.bCharFormat = 0;
|
|
||||||
lc.bParityType = 0;
|
|
||||||
lc.bDataBits = 8;
|
|
||||||
|
|
||||||
rcode = pacm->SetLineCoding(&lc);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SetLineCoding"), rcode);
|
|
||||||
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
USB Usb;
|
|
||||||
//USBHub Hub(&Usb);
|
|
||||||
PLAsyncOper AsyncOper;
|
|
||||||
PL2303 Pl(&Usb, &AsyncOper);
|
|
||||||
|
|
||||||
void setup()
|
|
||||||
{
|
|
||||||
Serial.begin( 115200 );
|
|
||||||
Serial.println("Start");
|
|
||||||
|
|
||||||
if (Usb.Init() == -1)
|
|
||||||
Serial.println("OSCOKIRQ failed to assert");
|
|
||||||
|
|
||||||
delay( 200 );
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
Usb.Task();
|
|
||||||
|
|
||||||
if( Usb.getUsbTaskState() == USB_STATE_RUNNING )
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
|
|
||||||
/* reading the keyboard */
|
|
||||||
if(Serial.available()) {
|
|
||||||
uint8_t data= Serial.read();
|
|
||||||
|
|
||||||
if ( data == '\r' ) {
|
|
||||||
Serial.print("\r\n"); //insert linefeed
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Serial.print( data ); //echo back to the screen
|
|
||||||
}
|
|
||||||
|
|
||||||
/* sending to the phone */
|
|
||||||
rcode = Pl.SndData(1, &data);
|
|
||||||
if (rcode)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("SndData"), rcode);
|
|
||||||
}//if(Serial.available()...
|
|
||||||
|
|
||||||
delay(50);
|
|
||||||
|
|
||||||
/* reading the converter */
|
|
||||||
/* buffer size must be greater or equal to max.packet size */
|
|
||||||
/* it it set to 64 (largest possible max.packet size) here, can be tuned down
|
|
||||||
for particular endpoint */
|
|
||||||
uint8_t buf[64];
|
|
||||||
uint16_t rcvd = 64;
|
|
||||||
rcode = Pl.RcvData(&rcvd, buf);
|
|
||||||
if (rcode && rcode != hrNAK)
|
|
||||||
ErrorMessage<uint8_t>(PSTR("Ret"), rcode);
|
|
||||||
|
|
||||||
if( rcvd ) { //more than zero bytes received
|
|
||||||
for(uint16_t i=0; i < rcvd; i++ ) {
|
|
||||||
if( buf[i] =='\r' ) {
|
|
||||||
Serial.print("\r\n"); //insert linefeed
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Serial.print((char)buf[i]); //printing on the screen
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
delay(10);
|
|
||||||
}//if( Usb.getUsbTaskState() == USB_STATE_RUNNING..
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
340
gpl2.txt
340
gpl2.txt
|
@ -1,340 +0,0 @@
|
||||||
GNU GENERAL PUBLIC LICENSE
|
|
||||||
Version 2, June 1991
|
|
||||||
|
|
||||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
|
||||||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
|
||||||
of this license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
Preamble
|
|
||||||
|
|
||||||
The licenses for most software are designed to take away your
|
|
||||||
freedom to share and change it. By contrast, the GNU General Public
|
|
||||||
License is intended to guarantee your freedom to share and change free
|
|
||||||
software--to make sure the software is free for all its users. This
|
|
||||||
General Public License applies to most of the Free Software
|
|
||||||
Foundation's software and to any other program whose authors commit to
|
|
||||||
using it. (Some other Free Software Foundation software is covered by
|
|
||||||
the GNU Library General Public License instead.) You can apply it to
|
|
||||||
your programs, too.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom, not
|
|
||||||
price. Our General Public Licenses are designed to make sure that you
|
|
||||||
have the freedom to distribute copies of free software (and charge for
|
|
||||||
this service if you wish), that you receive source code or can get it
|
|
||||||
if you want it, that you can change the software or use pieces of it
|
|
||||||
in new free programs; and that you know you can do these things.
|
|
||||||
|
|
||||||
To protect your rights, we need to make restrictions that forbid
|
|
||||||
anyone to deny you these rights or to ask you to surrender the rights.
|
|
||||||
These restrictions translate to certain responsibilities for you if you
|
|
||||||
distribute copies of the software, or if you modify it.
|
|
||||||
|
|
||||||
For example, if you distribute copies of such a program, whether
|
|
||||||
gratis or for a fee, you must give the recipients all the rights that
|
|
||||||
you have. You must make sure that they, too, receive or can get the
|
|
||||||
source code. And you must show them these terms so they know their
|
|
||||||
rights.
|
|
||||||
|
|
||||||
We protect your rights with two steps: (1) copyright the software, and
|
|
||||||
(2) offer you this license which gives you legal permission to copy,
|
|
||||||
distribute and/or modify the software.
|
|
||||||
|
|
||||||
Also, for each author's protection and ours, we want to make certain
|
|
||||||
that everyone understands that there is no warranty for this free
|
|
||||||
software. If the software is modified by someone else and passed on, we
|
|
||||||
want its recipients to know that what they have is not the original, so
|
|
||||||
that any problems introduced by others will not reflect on the original
|
|
||||||
authors' reputations.
|
|
||||||
|
|
||||||
Finally, any free program is threatened constantly by software
|
|
||||||
patents. We wish to avoid the danger that redistributors of a free
|
|
||||||
program will individually obtain patent licenses, in effect making the
|
|
||||||
program proprietary. To prevent this, we have made it clear that any
|
|
||||||
patent must be licensed for everyone's free use or not licensed at all.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow.
|
|
||||||
|
|
||||||
GNU GENERAL PUBLIC LICENSE
|
|
||||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
||||||
|
|
||||||
0. This License applies to any program or other work which contains
|
|
||||||
a notice placed by the copyright holder saying it may be distributed
|
|
||||||
under the terms of this General Public License. The "Program", below,
|
|
||||||
refers to any such program or work, and a "work based on the Program"
|
|
||||||
means either the Program or any derivative work under copyright law:
|
|
||||||
that is to say, a work containing the Program or a portion of it,
|
|
||||||
either verbatim or with modifications and/or translated into another
|
|
||||||
language. (Hereinafter, translation is included without limitation in
|
|
||||||
the term "modification".) Each licensee is addressed as "you".
|
|
||||||
|
|
||||||
Activities other than copying, distribution and modification are not
|
|
||||||
covered by this License; they are outside its scope. The act of
|
|
||||||
running the Program is not restricted, and the output from the Program
|
|
||||||
is covered only if its contents constitute a work based on the
|
|
||||||
Program (independent of having been made by running the Program).
|
|
||||||
Whether that is true depends on what the Program does.
|
|
||||||
|
|
||||||
1. You may copy and distribute verbatim copies of the Program's
|
|
||||||
source code as you receive it, in any medium, provided that you
|
|
||||||
conspicuously and appropriately publish on each copy an appropriate
|
|
||||||
copyright notice and disclaimer of warranty; keep intact all the
|
|
||||||
notices that refer to this License and to the absence of any warranty;
|
|
||||||
and give any other recipients of the Program a copy of this License
|
|
||||||
along with the Program.
|
|
||||||
|
|
||||||
You may charge a fee for the physical act of transferring a copy, and
|
|
||||||
you may at your option offer warranty protection in exchange for a fee.
|
|
||||||
|
|
||||||
2. You may modify your copy or copies of the Program or any portion
|
|
||||||
of it, thus forming a work based on the Program, and copy and
|
|
||||||
distribute such modifications or work under the terms of Section 1
|
|
||||||
above, provided that you also meet all of these conditions:
|
|
||||||
|
|
||||||
a) You must cause the modified files to carry prominent notices
|
|
||||||
stating that you changed the files and the date of any change.
|
|
||||||
|
|
||||||
b) You must cause any work that you distribute or publish, that in
|
|
||||||
whole or in part contains or is derived from the Program or any
|
|
||||||
part thereof, to be licensed as a whole at no charge to all third
|
|
||||||
parties under the terms of this License.
|
|
||||||
|
|
||||||
c) If the modified program normally reads commands interactively
|
|
||||||
when run, you must cause it, when started running for such
|
|
||||||
interactive use in the most ordinary way, to print or display an
|
|
||||||
announcement including an appropriate copyright notice and a
|
|
||||||
notice that there is no warranty (or else, saying that you provide
|
|
||||||
a warranty) and that users may redistribute the program under
|
|
||||||
these conditions, and telling the user how to view a copy of this
|
|
||||||
License. (Exception: if the Program itself is interactive but
|
|
||||||
does not normally print such an announcement, your work based on
|
|
||||||
the Program is not required to print an announcement.)
|
|
||||||
|
|
||||||
These requirements apply to the modified work as a whole. If
|
|
||||||
identifiable sections of that work are not derived from the Program,
|
|
||||||
and can be reasonably considered independent and separate works in
|
|
||||||
themselves, then this License, and its terms, do not apply to those
|
|
||||||
sections when you distribute them as separate works. But when you
|
|
||||||
distribute the same sections as part of a whole which is a work based
|
|
||||||
on the Program, the distribution of the whole must be on the terms of
|
|
||||||
this License, whose permissions for other licensees extend to the
|
|
||||||
entire whole, and thus to each and every part regardless of who wrote it.
|
|
||||||
|
|
||||||
Thus, it is not the intent of this section to claim rights or contest
|
|
||||||
your rights to work written entirely by you; rather, the intent is to
|
|
||||||
exercise the right to control the distribution of derivative or
|
|
||||||
collective works based on the Program.
|
|
||||||
|
|
||||||
In addition, mere aggregation of another work not based on the Program
|
|
||||||
with the Program (or with a work based on the Program) on a volume of
|
|
||||||
a storage or distribution medium does not bring the other work under
|
|
||||||
the scope of this License.
|
|
||||||
|
|
||||||
3. You may copy and distribute the Program (or a work based on it,
|
|
||||||
under Section 2) in object code or executable form under the terms of
|
|
||||||
Sections 1 and 2 above provided that you also do one of the following:
|
|
||||||
|
|
||||||
a) Accompany it with the complete corresponding machine-readable
|
|
||||||
source code, which must be distributed under the terms of Sections
|
|
||||||
1 and 2 above on a medium customarily used for software interchange; or,
|
|
||||||
|
|
||||||
b) Accompany it with a written offer, valid for at least three
|
|
||||||
years, to give any third party, for a charge no more than your
|
|
||||||
cost of physically performing source distribution, a complete
|
|
||||||
machine-readable copy of the corresponding source code, to be
|
|
||||||
distributed under the terms of Sections 1 and 2 above on a medium
|
|
||||||
customarily used for software interchange; or,
|
|
||||||
|
|
||||||
c) Accompany it with the information you received as to the offer
|
|
||||||
to distribute corresponding source code. (This alternative is
|
|
||||||
allowed only for noncommercial distribution and only if you
|
|
||||||
received the program in object code or executable form with such
|
|
||||||
an offer, in accord with Subsection b above.)
|
|
||||||
|
|
||||||
The source code for a work means the preferred form of the work for
|
|
||||||
making modifications to it. For an executable work, complete source
|
|
||||||
code means all the source code for all modules it contains, plus any
|
|
||||||
associated interface definition files, plus the scripts used to
|
|
||||||
control compilation and installation of the executable. However, as a
|
|
||||||
special exception, the source code distributed need not include
|
|
||||||
anything that is normally distributed (in either source or binary
|
|
||||||
form) with the major components (compiler, kernel, and so on) of the
|
|
||||||
operating system on which the executable runs, unless that component
|
|
||||||
itself accompanies the executable.
|
|
||||||
|
|
||||||
If distribution of executable or object code is made by offering
|
|
||||||
access to copy from a designated place, then offering equivalent
|
|
||||||
access to copy the source code from the same place counts as
|
|
||||||
distribution of the source code, even though third parties are not
|
|
||||||
compelled to copy the source along with the object code.
|
|
||||||
|
|
||||||
4. You may not copy, modify, sublicense, or distribute the Program
|
|
||||||
except as expressly provided under this License. Any attempt
|
|
||||||
otherwise to copy, modify, sublicense or distribute the Program is
|
|
||||||
void, and will automatically terminate your rights under this License.
|
|
||||||
However, parties who have received copies, or rights, from you under
|
|
||||||
this License will not have their licenses terminated so long as such
|
|
||||||
parties remain in full compliance.
|
|
||||||
|
|
||||||
5. You are not required to accept this License, since you have not
|
|
||||||
signed it. However, nothing else grants you permission to modify or
|
|
||||||
distribute the Program or its derivative works. These actions are
|
|
||||||
prohibited by law if you do not accept this License. Therefore, by
|
|
||||||
modifying or distributing the Program (or any work based on the
|
|
||||||
Program), you indicate your acceptance of this License to do so, and
|
|
||||||
all its terms and conditions for copying, distributing or modifying
|
|
||||||
the Program or works based on it.
|
|
||||||
|
|
||||||
6. Each time you redistribute the Program (or any work based on the
|
|
||||||
Program), the recipient automatically receives a license from the
|
|
||||||
original licensor to copy, distribute or modify the Program subject to
|
|
||||||
these terms and conditions. You may not impose any further
|
|
||||||
restrictions on the recipients' exercise of the rights granted herein.
|
|
||||||
You are not responsible for enforcing compliance by third parties to
|
|
||||||
this License.
|
|
||||||
|
|
||||||
7. If, as a consequence of a court judgment or allegation of patent
|
|
||||||
infringement or for any other reason (not limited to patent issues),
|
|
||||||
conditions are imposed on you (whether by court order, agreement or
|
|
||||||
otherwise) that contradict the conditions of this License, they do not
|
|
||||||
excuse you from the conditions of this License. If you cannot
|
|
||||||
distribute so as to satisfy simultaneously your obligations under this
|
|
||||||
License and any other pertinent obligations, then as a consequence you
|
|
||||||
may not distribute the Program at all. For example, if a patent
|
|
||||||
license would not permit royalty-free redistribution of the Program by
|
|
||||||
all those who receive copies directly or indirectly through you, then
|
|
||||||
the only way you could satisfy both it and this License would be to
|
|
||||||
refrain entirely from distribution of the Program.
|
|
||||||
|
|
||||||
If any portion of this section is held invalid or unenforceable under
|
|
||||||
any particular circumstance, the balance of the section is intended to
|
|
||||||
apply and the section as a whole is intended to apply in other
|
|
||||||
circumstances.
|
|
||||||
|
|
||||||
It is not the purpose of this section to induce you to infringe any
|
|
||||||
patents or other property right claims or to contest validity of any
|
|
||||||
such claims; this section has the sole purpose of protecting the
|
|
||||||
integrity of the free software distribution system, which is
|
|
||||||
implemented by public license practices. Many people have made
|
|
||||||
generous contributions to the wide range of software distributed
|
|
||||||
through that system in reliance on consistent application of that
|
|
||||||
system; it is up to the author/donor to decide if he or she is willing
|
|
||||||
to distribute software through any other system and a licensee cannot
|
|
||||||
impose that choice.
|
|
||||||
|
|
||||||
This section is intended to make thoroughly clear what is believed to
|
|
||||||
be a consequence of the rest of this License.
|
|
||||||
|
|
||||||
8. If the distribution and/or use of the Program is restricted in
|
|
||||||
certain countries either by patents or by copyrighted interfaces, the
|
|
||||||
original copyright holder who places the Program under this License
|
|
||||||
may add an explicit geographical distribution limitation excluding
|
|
||||||
those countries, so that distribution is permitted only in or among
|
|
||||||
countries not thus excluded. In such case, this License incorporates
|
|
||||||
the limitation as if written in the body of this License.
|
|
||||||
|
|
||||||
9. The Free Software Foundation may publish revised and/or new versions
|
|
||||||
of the General Public License from time to time. Such new versions will
|
|
||||||
be similar in spirit to the present version, but may differ in detail to
|
|
||||||
address new problems or concerns.
|
|
||||||
|
|
||||||
Each version is given a distinguishing version number. If the Program
|
|
||||||
specifies a version number of this License which applies to it and "any
|
|
||||||
later version", you have the option of following the terms and conditions
|
|
||||||
either of that version or of any later version published by the Free
|
|
||||||
Software Foundation. If the Program does not specify a version number of
|
|
||||||
this License, you may choose any version ever published by the Free Software
|
|
||||||
Foundation.
|
|
||||||
|
|
||||||
10. If you wish to incorporate parts of the Program into other free
|
|
||||||
programs whose distribution conditions are different, write to the author
|
|
||||||
to ask for permission. For software which is copyrighted by the Free
|
|
||||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
|
||||||
make exceptions for this. Our decision will be guided by the two goals
|
|
||||||
of preserving the free status of all derivatives of our free software and
|
|
||||||
of promoting the sharing and reuse of software generally.
|
|
||||||
|
|
||||||
NO WARRANTY
|
|
||||||
|
|
||||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
|
||||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
|
||||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
|
||||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
|
||||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
||||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
|
||||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
|
||||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
|
||||||
REPAIR OR CORRECTION.
|
|
||||||
|
|
||||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
||||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
|
||||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
|
||||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
|
||||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
|
||||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
|
||||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
|
||||||
POSSIBILITY OF SUCH DAMAGES.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
How to Apply These Terms to Your New Programs
|
|
||||||
|
|
||||||
If you develop a new program, and you want it to be of the greatest
|
|
||||||
possible use to the public, the best way to achieve this is to make it
|
|
||||||
free software which everyone can redistribute and change under these terms.
|
|
||||||
|
|
||||||
To do so, attach the following notices to the program. It is safest
|
|
||||||
to attach them to the start of each source file to most effectively
|
|
||||||
convey the exclusion of warranty; and each file should have at least
|
|
||||||
the "copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
<one line to give the program's name and a brief idea of what it does.>
|
|
||||||
Copyright (C) <year> <name of author>
|
|
||||||
|
|
||||||
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 2 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.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
|
||||||
|
|
||||||
If the program is interactive, make it output a short notice like this
|
|
||||||
when it starts in an interactive mode:
|
|
||||||
|
|
||||||
Gnomovision version 69, Copyright (C) year name of author
|
|
||||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
||||||
This is free software, and you are welcome to redistribute it
|
|
||||||
under certain conditions; type `show c' for details.
|
|
||||||
|
|
||||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
||||||
parts of the General Public License. Of course, the commands you use may
|
|
||||||
be called something other than `show w' and `show c'; they could even be
|
|
||||||
mouse-clicks or menu items--whatever suits your program.
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or your
|
|
||||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
|
||||||
necessary. Here is a sample; alter the names:
|
|
||||||
|
|
||||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
|
||||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
|
||||||
|
|
||||||
<signature of Ty Coon>, 1 April 1989
|
|
||||||
Ty Coon, President of Vice
|
|
||||||
|
|
||||||
This General Public License does not permit incorporating your program into
|
|
||||||
proprietary programs. If your program is a subroutine library, you may
|
|
||||||
consider it more useful to permit linking proprietary applications with the
|
|
||||||
library. If this is what you want to do, use the GNU Library General
|
|
||||||
Public License instead of this License.
|
|
58
hexdump.h
58
hexdump.h
|
@ -1,58 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__HEXDUMP_H__)
|
|
||||||
#define __HEXDUMP_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "printhex.h"
|
|
||||||
|
|
||||||
template <class BASE_CLASS, class LEN_TYPE, class OFFSET_TYPE>
|
|
||||||
class HexDumper : public BASE_CLASS
|
|
||||||
{
|
|
||||||
uint8_t byteCount;
|
|
||||||
OFFSET_TYPE byteTotal;
|
|
||||||
|
|
||||||
public:
|
|
||||||
HexDumper() : byteCount(0), byteTotal(0) {};
|
|
||||||
void Initialize() { byteCount = 0; byteTotal = 0; };
|
|
||||||
|
|
||||||
virtual void Parse(const LEN_TYPE len, const uint8_t *pbuf, const OFFSET_TYPE &offset);
|
|
||||||
};
|
|
||||||
|
|
||||||
template <class BASE_CLASS, class LEN_TYPE, class OFFSET_TYPE>
|
|
||||||
void HexDumper<BASE_CLASS, LEN_TYPE, OFFSET_TYPE>::Parse(const LEN_TYPE len, const uint8_t *pbuf, const OFFSET_TYPE &offset)
|
|
||||||
{
|
|
||||||
for (LEN_TYPE j=0; j<len; j++, byteCount++, byteTotal++)
|
|
||||||
{
|
|
||||||
if (!byteCount)
|
|
||||||
{
|
|
||||||
PrintHex<OFFSET_TYPE>(byteTotal);
|
|
||||||
Serial.print(": ");
|
|
||||||
}
|
|
||||||
PrintHex<uint8_t>(pbuf[j]);
|
|
||||||
Serial.print(" ");
|
|
||||||
|
|
||||||
if (byteCount == 15)
|
|
||||||
{
|
|
||||||
Serial.println("");
|
|
||||||
byteCount = 0xFF;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // __HEXDUMP_H__
|
|
84
hid.cpp
84
hid.cpp
|
@ -1,84 +0,0 @@
|
||||||
#include "hid.h"
|
|
||||||
|
|
||||||
//get HID report descriptor
|
|
||||||
uint8_t HID::GetReportDescr( uint8_t ep, USBReadParser *parser )
|
|
||||||
{
|
|
||||||
const uint8_t constBufLen = 64;
|
|
||||||
uint8_t buf[constBufLen];
|
|
||||||
|
|
||||||
uint8_t rcode = pUsb->ctrlReq( bAddress, ep, bmREQ_HIDREPORT, USB_REQUEST_GET_DESCRIPTOR, 0x00,
|
|
||||||
HID_DESCRIPTOR_REPORT, 0x0000, 128, constBufLen, buf, (USBReadParser*)parser );
|
|
||||||
|
|
||||||
//return ((rcode != hrSTALL) ? rcode : 0);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
//uint8_t HID::getHidDescr( uint8_t ep, uint16_t nbytes, uint8_t* dataptr )
|
|
||||||
//{
|
|
||||||
// return( pUsb->ctrlReq( bAddress, ep, bmREQ_GET_DESCR, USB_REQUEST_GET_DESCRIPTOR, 0x00, HID_DESCRIPTOR_HID, 0x0000, nbytes, dataptr ));
|
|
||||||
//}
|
|
||||||
uint8_t HID::SetReport( uint8_t ep, uint8_t iface, uint8_t report_type, uint8_t report_id, uint16_t nbytes, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, ep, bmREQ_HIDOUT, HID_REQUEST_SET_REPORT, report_id, report_type, iface, nbytes, nbytes, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
uint8_t HID::GetReport( uint8_t ep, uint8_t iface, uint8_t report_type, uint8_t report_id, uint16_t nbytes, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, ep, bmREQ_HIDIN, HID_REQUEST_GET_REPORT, report_id, report_type, iface, nbytes, nbytes, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
uint8_t HID::GetIdle( uint8_t iface, uint8_t reportID, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_HIDIN, HID_REQUEST_GET_IDLE, reportID, 0, iface, 0x0001, 0x0001, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
uint8_t HID::SetIdle( uint8_t iface, uint8_t reportID, uint8_t duration )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_HIDOUT, HID_REQUEST_SET_IDLE, reportID, duration, iface, 0x0000, 0x0000, NULL, NULL ));
|
|
||||||
}
|
|
||||||
uint8_t HID::SetProtocol( uint8_t iface, uint8_t protocol )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_HIDOUT, HID_REQUEST_SET_PROTOCOL, protocol, 0x00, iface, 0x0000, 0x0000, NULL, NULL ));
|
|
||||||
}
|
|
||||||
uint8_t HID::GetProtocol( uint8_t iface, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_HIDIN, HID_REQUEST_GET_PROTOCOL, 0x00, 0x00, iface, 0x0001, 0x0001, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
void HID::PrintEndpointDescriptor( const USB_ENDPOINT_DESCRIPTOR* ep_ptr )
|
|
||||||
{
|
|
||||||
Notify(PSTR("Endpoint descriptor:"));
|
|
||||||
Notify(PSTR("\r\nLength:\t\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bLength);
|
|
||||||
Notify(PSTR("\r\nType:\t\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bDescriptorType);
|
|
||||||
Notify(PSTR("\r\nAddress:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bEndpointAddress);
|
|
||||||
Notify(PSTR("\r\nAttributes:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bmAttributes);
|
|
||||||
Notify(PSTR("\r\nMaxPktSize:\t"));
|
|
||||||
PrintHex<uint16_t>(ep_ptr->wMaxPacketSize);
|
|
||||||
Notify(PSTR("\r\nPoll Intrv:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bInterval);
|
|
||||||
}
|
|
||||||
|
|
||||||
void HID::PrintHidDescriptor(const USB_HID_DESCRIPTOR *pDesc)
|
|
||||||
{
|
|
||||||
Notify(PSTR("\r\n\r\nHID Descriptor:\r\n"));
|
|
||||||
Notify(PSTR("bDescLength:\t\t"));
|
|
||||||
PrintHex<uint8_t>(pDesc->bLength);
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nbDescriptorType:\t"));
|
|
||||||
PrintHex<uint8_t>(pDesc->bDescriptorType);
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nbcdHID:\t\t\t"));
|
|
||||||
PrintHex<uint16_t>(pDesc->bcdHID);
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nbCountryCode:\t\t"));
|
|
||||||
PrintHex<uint8_t>(pDesc->bCountryCode);
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nbNumDescriptors:\t"));
|
|
||||||
PrintHex<uint8_t>(pDesc->bNumDescriptors);
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nbDescrType:\t\t"));
|
|
||||||
PrintHex<uint8_t>(pDesc->bDescrType);
|
|
||||||
|
|
||||||
Notify(PSTR("\r\nwDescriptorLength:\t"));
|
|
||||||
PrintHex<uint16_t>(pDesc->wDescriptorLength);
|
|
||||||
}
|
|
201
hid.h
201
hid.h
|
@ -1,201 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__HID_H__)
|
|
||||||
#define __HID_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
|
|
||||||
#include "confdescparser.h"
|
|
||||||
#include "hidusagestr.h"
|
|
||||||
|
|
||||||
#define DATA_SIZE_MASK 0x03
|
|
||||||
#define TYPE_MASK 0x0C
|
|
||||||
#define TAG_MASK 0xF0
|
|
||||||
|
|
||||||
#define DATA_SIZE_0 0x00
|
|
||||||
#define DATA_SIZE_1 0x01
|
|
||||||
#define DATA_SIZE_2 0x02
|
|
||||||
#define DATA_SIZE_4 0x03
|
|
||||||
|
|
||||||
#define TYPE_MAIN 0x00
|
|
||||||
#define TYPE_GLOBAL 0x04
|
|
||||||
#define TYPE_LOCAL 0x08
|
|
||||||
|
|
||||||
#define TAG_MAIN_INPUT 0x80
|
|
||||||
#define TAG_MAIN_OUTPUT 0x90
|
|
||||||
#define TAG_MAIN_COLLECTION 0xA0
|
|
||||||
#define TAG_MAIN_FEATURE 0xB0
|
|
||||||
#define TAG_MAIN_ENDCOLLECTION 0xC0
|
|
||||||
|
|
||||||
#define TAG_GLOBAL_USAGEPAGE 0x00
|
|
||||||
#define TAG_GLOBAL_LOGICALMIN 0x10
|
|
||||||
#define TAG_GLOBAL_LOGICALMAX 0x20
|
|
||||||
#define TAG_GLOBAL_PHYSMIN 0x30
|
|
||||||
#define TAG_GLOBAL_PHYSMAX 0x40
|
|
||||||
#define TAG_GLOBAL_UNITEXP 0x50
|
|
||||||
#define TAG_GLOBAL_UNIT 0x60
|
|
||||||
#define TAG_GLOBAL_REPORTSIZE 0x70
|
|
||||||
#define TAG_GLOBAL_REPORTID 0x80
|
|
||||||
#define TAG_GLOBAL_REPORTCOUNT 0x90
|
|
||||||
#define TAG_GLOBAL_PUSH 0xA0
|
|
||||||
#define TAG_GLOBAL_POP 0xB0
|
|
||||||
|
|
||||||
#define TAG_LOCAL_USAGE 0x00
|
|
||||||
#define TAG_LOCAL_USAGEMIN 0x10
|
|
||||||
#define TAG_LOCAL_USAGEMAX 0x20
|
|
||||||
|
|
||||||
/* HID requests */
|
|
||||||
#define bmREQ_HIDOUT USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
|
|
||||||
#define bmREQ_HIDIN USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
|
|
||||||
#define bmREQ_HIDREPORT USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_STANDARD|USB_SETUP_RECIPIENT_INTERFACE
|
|
||||||
|
|
||||||
/* HID constants. Not part of chapter 9 */
|
|
||||||
/* Class-Specific Requests */
|
|
||||||
#define HID_REQUEST_GET_REPORT 0x01
|
|
||||||
#define HID_REQUEST_GET_IDLE 0x02
|
|
||||||
#define HID_REQUEST_GET_PROTOCOL 0x03
|
|
||||||
#define HID_REQUEST_SET_REPORT 0x09
|
|
||||||
#define HID_REQUEST_SET_IDLE 0x0A
|
|
||||||
#define HID_REQUEST_SET_PROTOCOL 0x0B
|
|
||||||
|
|
||||||
/* Class Descriptor Types */
|
|
||||||
#define HID_DESCRIPTOR_HID 0x21
|
|
||||||
#define HID_DESCRIPTOR_REPORT 0x22
|
|
||||||
#define HID_DESRIPTOR_PHY 0x23
|
|
||||||
|
|
||||||
/* Protocol Selection */
|
|
||||||
#define HID_BOOT_PROTOCOL 0x00
|
|
||||||
#define HID_RPT_PROTOCOL 0x01
|
|
||||||
|
|
||||||
/* HID Interface Class Code */
|
|
||||||
#define HID_INTF 0x03
|
|
||||||
|
|
||||||
/* HID Interface Class SubClass Codes */
|
|
||||||
#define HID_BOOT_INTF_SUBCLASS 0x01
|
|
||||||
|
|
||||||
/* HID Interface Class Protocol Codes */
|
|
||||||
#define HID_PROTOCOL_NONE 0x00
|
|
||||||
#define HID_PROTOCOL_KEYBOARD 0x01
|
|
||||||
#define HID_PROTOCOL_MOUSE 0x02
|
|
||||||
|
|
||||||
struct HidItemPrefix
|
|
||||||
{
|
|
||||||
uint8_t bSize : 2;
|
|
||||||
uint8_t bType : 2;
|
|
||||||
uint8_t bTag : 4;
|
|
||||||
};
|
|
||||||
|
|
||||||
#define HID_ITEM_TYPE_MAIN 0
|
|
||||||
#define HID_ITEM_TYPE_GLOBAL 1
|
|
||||||
#define HID_ITEM_TYPE_LOCAL 2
|
|
||||||
#define HID_ITEM_TYPE_RESERVED 3
|
|
||||||
|
|
||||||
#define HID_LONG_ITEM_PREFIX 0xfe // Long item prefix value
|
|
||||||
|
|
||||||
#define bmHID_MAIN_ITEM_TAG 0xfc // Main item tag mask
|
|
||||||
|
|
||||||
#define bmHID_MAIN_ITEM_INPUT 0x80 // Main item Input tag value
|
|
||||||
#define bmHID_MAIN_ITEM_OUTPUT 0x90 // Main item Output tag value
|
|
||||||
#define bmHID_MAIN_ITEM_FEATURE 0xb0 // Main item Feature tag value
|
|
||||||
#define bmHID_MAIN_ITEM_COLLECTION 0xa0 // Main item Collection tag value
|
|
||||||
#define bmHID_MAIN_ITEM_END_COLLECTION 0xce // Main item End Collection tag value
|
|
||||||
|
|
||||||
#define HID_MAIN_ITEM_COLLECTION_PHYSICAL 0
|
|
||||||
#define HID_MAIN_ITEM_COLLECTION_APPLICATION 1
|
|
||||||
#define HID_MAIN_ITEM_COLLECTION_LOGICAL 2
|
|
||||||
#define HID_MAIN_ITEM_COLLECTION_REPORT 3
|
|
||||||
#define HID_MAIN_ITEM_COLLECTION_NAMED_ARRAY 4
|
|
||||||
#define HID_MAIN_ITEM_COLLECTION_USAGE_SWITCH 5
|
|
||||||
#define HID_MAIN_ITEM_COLLECTION_USAGE_MODIFIER 6
|
|
||||||
|
|
||||||
struct MainItemIOFeature
|
|
||||||
{
|
|
||||||
uint8_t bmIsConstantOrData : 1;
|
|
||||||
uint8_t bmIsArrayOrVariable : 1;
|
|
||||||
uint8_t bmIsRelativeOrAbsolute : 1;
|
|
||||||
uint8_t bmIsWrapOrNoWrap : 1;
|
|
||||||
uint8_t bmIsNonLonearOrLinear : 1;
|
|
||||||
uint8_t bmIsNoPreferedOrPrefered : 1;
|
|
||||||
uint8_t bmIsNullOrNoNull : 1;
|
|
||||||
uint8_t bmIsVolatileOrNonVolatile : 1;
|
|
||||||
};
|
|
||||||
|
|
||||||
class HID;
|
|
||||||
|
|
||||||
class HIDReportParser
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf) = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
#define MAX_REPORT_PARSERS 2
|
|
||||||
#define HID_MAX_HID_CLASS_DESCRIPTORS 5
|
|
||||||
|
|
||||||
class HID : public USBDeviceConfig, public UsbConfigXtracter
|
|
||||||
{
|
|
||||||
protected:
|
|
||||||
USB *pUsb; // USB class instance pointer
|
|
||||||
uint8_t bAddress; // address
|
|
||||||
|
|
||||||
protected:
|
|
||||||
static const uint8_t epInterruptInIndex = 1; // InterruptIN endpoint index
|
|
||||||
static const uint8_t epInterruptOutIndex = 2; // InterruptOUT endpoint index
|
|
||||||
|
|
||||||
static const uint8_t maxHidInterfaces = 3;
|
|
||||||
static const uint8_t maxEpPerInterface = 2;
|
|
||||||
static const uint8_t totalEndpoints = (maxHidInterfaces * maxEpPerInterface + 1);
|
|
||||||
|
|
||||||
void PrintEndpointDescriptor(const USB_ENDPOINT_DESCRIPTOR* ep_ptr);
|
|
||||||
void PrintHidDescriptor(const USB_HID_DESCRIPTOR *pDesc);
|
|
||||||
|
|
||||||
virtual HIDReportParser* GetReportParser(uint8_t id);
|
|
||||||
|
|
||||||
public:
|
|
||||||
HID(USB *pusb) : pUsb(pusb) {};
|
|
||||||
|
|
||||||
const USB* GetUsb() { return pUsb; };
|
|
||||||
virtual bool SetReportParser(uint8_t id, HIDReportParser *prs);
|
|
||||||
|
|
||||||
uint8_t SetProtocol( uint8_t iface, uint8_t protocol );
|
|
||||||
uint8_t GetProtocol( uint8_t iface, uint8_t* dataptr );
|
|
||||||
uint8_t GetIdle( uint8_t iface, uint8_t reportID, uint8_t* dataptr );
|
|
||||||
uint8_t SetIdle( uint8_t iface, uint8_t reportID, uint8_t duration );
|
|
||||||
|
|
||||||
uint8_t GetReportDescr( uint8_t ep, USBReadParser *parser = NULL);
|
|
||||||
|
|
||||||
uint8_t GetHidDescr( uint8_t ep, uint16_t nbytes, uint8_t* dataptr );
|
|
||||||
uint8_t GetReport( uint8_t ep, uint8_t iface, uint8_t report_type, uint8_t report_id, uint16_t nbytes, uint8_t* dataptr );
|
|
||||||
uint8_t SetReport( uint8_t ep, uint8_t iface, uint8_t report_type, uint8_t report_id, uint16_t nbytes, uint8_t* dataptr );
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // __HID_H__
|
|
154
hidboot.cpp
154
hidboot.cpp
|
@ -1,154 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#include "hidboot.h"
|
|
||||||
|
|
||||||
void MouseReportParser::Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf)
|
|
||||||
{
|
|
||||||
MOUSEINFO *pmi = (MOUSEINFO*)buf;
|
|
||||||
|
|
||||||
if (prevState.mouseInfo.bmLeftButton == 0 && pmi->bmLeftButton == 1)
|
|
||||||
OnLeftButtonDown(pmi);
|
|
||||||
|
|
||||||
if (prevState.mouseInfo.bmLeftButton == 1 && pmi->bmLeftButton == 0)
|
|
||||||
OnLeftButtonUp(pmi);
|
|
||||||
|
|
||||||
if (prevState.mouseInfo.bmRightButton == 0 && pmi->bmRightButton == 1)
|
|
||||||
OnRightButtonDown(pmi);
|
|
||||||
|
|
||||||
if (prevState.mouseInfo.bmRightButton == 1 && pmi->bmRightButton == 0)
|
|
||||||
OnRightButtonUp(pmi);
|
|
||||||
|
|
||||||
if (prevState.mouseInfo.bmMiddleButton == 0 && pmi->bmMiddleButton == 1)
|
|
||||||
OnMiddleButtonDown(pmi);
|
|
||||||
|
|
||||||
if (prevState.mouseInfo.bmMiddleButton == 1 && pmi->bmMiddleButton == 0)
|
|
||||||
OnMiddleButtonUp(pmi);
|
|
||||||
|
|
||||||
if (prevState.mouseInfo.dX != pmi->dX || prevState.mouseInfo.dY != pmi->dY)
|
|
||||||
OnMouseMove(pmi);
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<3; i++)
|
|
||||||
prevState.bInfo[i] = buf[i];
|
|
||||||
};
|
|
||||||
|
|
||||||
void KeyboardReportParser::Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf)
|
|
||||||
{
|
|
||||||
// On error - return
|
|
||||||
if (buf[2] == 1)
|
|
||||||
return;
|
|
||||||
|
|
||||||
KBDINFO *pki = (KBDINFO*)buf;
|
|
||||||
|
|
||||||
for (uint8_t i=2; i<8; i++)
|
|
||||||
{
|
|
||||||
bool down = false;
|
|
||||||
bool up = false;
|
|
||||||
|
|
||||||
for (uint8_t j=2; j<8; j++)
|
|
||||||
{
|
|
||||||
if (buf[i] == prevState.bInfo[j] && buf[i] != 1)
|
|
||||||
down = true;
|
|
||||||
if (buf[j] == prevState.bInfo[i] && prevState.bInfo[i] != 1)
|
|
||||||
up = true;
|
|
||||||
}
|
|
||||||
if (!down)
|
|
||||||
{
|
|
||||||
HandleLockingKeys(hid, buf[i]);
|
|
||||||
OnKeyDown(*buf, buf[i]);
|
|
||||||
}
|
|
||||||
if (!up)
|
|
||||||
OnKeyUp(prevState.bInfo[0], prevState.bInfo[i]);
|
|
||||||
}
|
|
||||||
for (uint8_t i=0; i<8; i++)
|
|
||||||
prevState.bInfo[i] = buf[i];
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t KeyboardReportParser::HandleLockingKeys(HID *hid, uint8_t key)
|
|
||||||
{
|
|
||||||
uint8_t old_keys = kbdLockingKeys.bLeds;
|
|
||||||
|
|
||||||
switch (key)
|
|
||||||
{
|
|
||||||
case KEY_NUM_LOCK:
|
|
||||||
kbdLockingKeys.kbdLeds.bmNumLock = ~kbdLockingKeys.kbdLeds.bmNumLock;
|
|
||||||
break;
|
|
||||||
case KEY_CAPS_LOCK:
|
|
||||||
kbdLockingKeys.kbdLeds.bmCapsLock = ~kbdLockingKeys.kbdLeds.bmCapsLock;
|
|
||||||
break;
|
|
||||||
case KEY_SCROLL_LOCK:
|
|
||||||
kbdLockingKeys.kbdLeds.bmScrollLock = ~kbdLockingKeys.kbdLeds.bmScrollLock;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (old_keys != kbdLockingKeys.bLeds && hid)
|
|
||||||
return (hid->SetReport(0, 0/*hid->GetIface()*/, 2, 0, 1, &kbdLockingKeys.bLeds));
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
const uint8_t KeyboardReportParser::numKeys[] PROGMEM = { '!', '@', '#', '$', '%', '^', '&', '*', '(', ')' };
|
|
||||||
const uint8_t KeyboardReportParser::symKeysUp[] PROGMEM = { '_', '+', '{', '}', '|', '~', ':', '"', '~', '<', '>', '?' };
|
|
||||||
const uint8_t KeyboardReportParser::symKeysLo[] PROGMEM = { '-', '=', '[', ']', '\\', ' ', ';', '\'', '`', ',', '.', '/' };
|
|
||||||
const uint8_t KeyboardReportParser::padKeys[] PROGMEM = { '/', '*', '-', '+', 0x13 };
|
|
||||||
|
|
||||||
uint8_t KeyboardReportParser::OemToAscii(uint8_t mod, uint8_t key)
|
|
||||||
{
|
|
||||||
uint8_t shift = (mod & 0x22);
|
|
||||||
|
|
||||||
// [a-z]
|
|
||||||
if (key > 0x03 && key < 0x1e)
|
|
||||||
{
|
|
||||||
// Upper case letters
|
|
||||||
if ( (kbdLockingKeys.kbdLeds.bmCapsLock == 0 && (mod & 2)) ||
|
|
||||||
(kbdLockingKeys.kbdLeds.bmCapsLock == 1 && (mod & 2) == 0) )
|
|
||||||
return (key - 4 + 'A');
|
|
||||||
|
|
||||||
// Lower case letters
|
|
||||||
else
|
|
||||||
return (key - 4 + 'a');
|
|
||||||
}
|
|
||||||
// Numbers
|
|
||||||
else if (key > 0x1d && key < 0x27)
|
|
||||||
{
|
|
||||||
if (shift)
|
|
||||||
return ((uint8_t)pgm_read_byte(&numKeys[key - 0x1e]));
|
|
||||||
else
|
|
||||||
return (key - 0x1e + '1');
|
|
||||||
}
|
|
||||||
// Keypad Numbers
|
|
||||||
else if (key > 0x58 && key < 0x62)
|
|
||||||
{
|
|
||||||
if (kbdLockingKeys.kbdLeds.bmNumLock == 1)
|
|
||||||
return (key - 0x59 + '1');
|
|
||||||
}
|
|
||||||
else if (key > 0x2c && key < 0x39)
|
|
||||||
return ((shift) ? (uint8_t)pgm_read_byte(&symKeysUp[key-0x2d]) : (uint8_t)pgm_read_byte(&symKeysLo[key-0x2d]));
|
|
||||||
else if (key > 0x53 && key < 0x59)
|
|
||||||
return (uint8_t)pgm_read_byte(&padKeys[key - 0x54]);
|
|
||||||
else
|
|
||||||
{
|
|
||||||
switch (key)
|
|
||||||
{
|
|
||||||
case KEY_SPACE: return(0x20);
|
|
||||||
case KEY_ENTER: return(0x13);
|
|
||||||
case KEY_ZERO: return((shift) ? ')' : '0');
|
|
||||||
case KEY_ZERO2: return((kbdLockingKeys.kbdLeds.bmNumLock == 1) ? '0' : 0);
|
|
||||||
case KEY_PERIOD: return((kbdLockingKeys.kbdLeds.bmNumLock == 1) ? '.' : 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return( 0 );
|
|
||||||
}
|
|
495
hidboot.h
495
hidboot.h
|
@ -1,495 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__HIDBOOT_H__)
|
|
||||||
#define __HIDBOOT_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
#include "hid.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
|
|
||||||
#include "confdescparser.h"
|
|
||||||
|
|
||||||
#define KEY_SPACE 0x2c
|
|
||||||
#define KEY_ZERO 0x27
|
|
||||||
#define KEY_ZERO2 0x62
|
|
||||||
#define KEY_ENTER 0x28
|
|
||||||
#define KEY_PERIOD 0x63
|
|
||||||
|
|
||||||
struct MOUSEINFO
|
|
||||||
{
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
uint8_t bmLeftButton : 1;
|
|
||||||
uint8_t bmRightButton : 1;
|
|
||||||
uint8_t bmMiddleButton : 1;
|
|
||||||
uint8_t bmDummy : 1;
|
|
||||||
};
|
|
||||||
int8_t dX;
|
|
||||||
int8_t dY;
|
|
||||||
};
|
|
||||||
|
|
||||||
class MouseReportParser : public HIDReportParser
|
|
||||||
{
|
|
||||||
union
|
|
||||||
{
|
|
||||||
MOUSEINFO mouseInfo;
|
|
||||||
uint8_t bInfo[3];
|
|
||||||
} prevState;
|
|
||||||
|
|
||||||
public:
|
|
||||||
virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
|
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void OnMouseMove (MOUSEINFO *mi) {};
|
|
||||||
virtual void OnLeftButtonUp (MOUSEINFO *mi) {};
|
|
||||||
virtual void OnLeftButtonDown (MOUSEINFO *mi) {};
|
|
||||||
virtual void OnRightButtonUp (MOUSEINFO *mi) {};
|
|
||||||
virtual void OnRightButtonDown (MOUSEINFO *mi) {};
|
|
||||||
virtual void OnMiddleButtonUp (MOUSEINFO *mi) {};
|
|
||||||
virtual void OnMiddleButtonDown (MOUSEINFO *mi) {};
|
|
||||||
};
|
|
||||||
|
|
||||||
struct MODIFIERKEYS
|
|
||||||
{
|
|
||||||
uint8_t bmLeftCtrl : 1;
|
|
||||||
uint8_t bmLeftShift : 1;
|
|
||||||
uint8_t bmLeftAlt : 1;
|
|
||||||
uint8_t bmLeftGUI : 1;
|
|
||||||
uint8_t bmRightCtrl : 1;
|
|
||||||
uint8_t bmRightShift : 1;
|
|
||||||
uint8_t bmRightAlt : 1;
|
|
||||||
uint8_t bmRightGUI : 1;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct KBDINFO
|
|
||||||
{
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
uint8_t bmLeftCtrl : 1;
|
|
||||||
uint8_t bmLeftShift : 1;
|
|
||||||
uint8_t bmLeftAlt : 1;
|
|
||||||
uint8_t bmLeftGUI : 1;
|
|
||||||
uint8_t bmRightCtrl : 1;
|
|
||||||
uint8_t bmRightShift : 1;
|
|
||||||
uint8_t bmRightAlt : 1;
|
|
||||||
uint8_t bmRightGUI : 1;
|
|
||||||
};
|
|
||||||
uint8_t bReserved;
|
|
||||||
uint8_t Keys[6];
|
|
||||||
};
|
|
||||||
|
|
||||||
struct KBDLEDS
|
|
||||||
{
|
|
||||||
uint8_t bmNumLock : 1;
|
|
||||||
uint8_t bmCapsLock : 1;
|
|
||||||
uint8_t bmScrollLock : 1;
|
|
||||||
uint8_t bmCompose : 1;
|
|
||||||
uint8_t bmKana : 1;
|
|
||||||
uint8_t bmReserved : 3;
|
|
||||||
};
|
|
||||||
|
|
||||||
#define KEY_NUM_LOCK 0x53
|
|
||||||
#define KEY_CAPS_LOCK 0x39
|
|
||||||
#define KEY_SCROLL_LOCK 0x47
|
|
||||||
|
|
||||||
class KeyboardReportParser : public HIDReportParser
|
|
||||||
{
|
|
||||||
static const uint8_t numKeys[];
|
|
||||||
static const uint8_t symKeysUp[];
|
|
||||||
static const uint8_t symKeysLo[];
|
|
||||||
static const uint8_t padKeys[];
|
|
||||||
|
|
||||||
protected:
|
|
||||||
union
|
|
||||||
{
|
|
||||||
KBDINFO kbdInfo;
|
|
||||||
uint8_t bInfo[sizeof(KBDINFO)];
|
|
||||||
} prevState;
|
|
||||||
|
|
||||||
union
|
|
||||||
{
|
|
||||||
KBDLEDS kbdLeds;
|
|
||||||
uint8_t bLeds;
|
|
||||||
} kbdLockingKeys;
|
|
||||||
|
|
||||||
uint8_t OemToAscii(uint8_t mod, uint8_t key);
|
|
||||||
|
|
||||||
public:
|
|
||||||
KeyboardReportParser() { kbdLockingKeys.bLeds = 0; };
|
|
||||||
|
|
||||||
virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
|
|
||||||
|
|
||||||
protected:
|
|
||||||
uint8_t HandleLockingKeys(HID* hid, uint8_t key);
|
|
||||||
|
|
||||||
virtual void OnKeyDown (uint8_t mod, uint8_t key) {};
|
|
||||||
virtual void OnKeyUp (uint8_t mod, uint8_t key) {};
|
|
||||||
};
|
|
||||||
|
|
||||||
#define totalEndpoints 2
|
|
||||||
|
|
||||||
#define HID_MAX_HID_CLASS_DESCRIPTORS 5
|
|
||||||
|
|
||||||
template <const uint8_t BOOT_PROTOCOL>
|
|
||||||
class HIDBoot : public HID //public USBDeviceConfig, public UsbConfigXtracter
|
|
||||||
{
|
|
||||||
EpInfo epInfo[totalEndpoints];
|
|
||||||
|
|
||||||
HIDReportParser *pRptParser;
|
|
||||||
|
|
||||||
uint8_t bConfNum; // configuration number
|
|
||||||
uint8_t bIfaceNum; // Interface Number
|
|
||||||
uint8_t bNumIface; // number of interfaces in the configuration
|
|
||||||
uint8_t bNumEP; // total number of EP in the configuration
|
|
||||||
uint32_t qNextPollTime; // next poll time
|
|
||||||
bool bPollEnable; // poll enable flag
|
|
||||||
|
|
||||||
void Initialize();
|
|
||||||
|
|
||||||
virtual HIDReportParser* GetReportParser(uint8_t id) { return pRptParser; };
|
|
||||||
|
|
||||||
public:
|
|
||||||
HIDBoot(USB *p);
|
|
||||||
|
|
||||||
virtual bool SetReportParser(uint8_t id, HIDReportParser *prs) { pRptParser = prs; };
|
|
||||||
|
|
||||||
// USBDeviceConfig implementation
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
virtual uint8_t Release();
|
|
||||||
virtual uint8_t Poll();
|
|
||||||
virtual uint8_t GetAddress() { return bAddress; };
|
|
||||||
|
|
||||||
// UsbConfigXtracter implementation
|
|
||||||
virtual void EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *ep);
|
|
||||||
};
|
|
||||||
|
|
||||||
template <const uint8_t BOOT_PROTOCOL>
|
|
||||||
HIDBoot<BOOT_PROTOCOL>::HIDBoot(USB *p) :
|
|
||||||
HID(p),
|
|
||||||
qNextPollTime(0),
|
|
||||||
bPollEnable(false),
|
|
||||||
pRptParser(NULL)
|
|
||||||
{
|
|
||||||
Initialize();
|
|
||||||
|
|
||||||
if (pUsb)
|
|
||||||
pUsb->RegisterDeviceClass(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
template <const uint8_t BOOT_PROTOCOL>
|
|
||||||
void HIDBoot<BOOT_PROTOCOL>::Initialize()
|
|
||||||
{
|
|
||||||
for(uint8_t i=0; i<totalEndpoints; i++)
|
|
||||||
{
|
|
||||||
epInfo[i].epAddr = 0;
|
|
||||||
epInfo[i].maxPktSize = (i) ? 0 : 8;
|
|
||||||
epInfo[i].epAttribs = 0;
|
|
||||||
epInfo[i].bmNakPower = (i) ? USB_NAK_NOWAIT : USB_NAK_MAX_POWER;
|
|
||||||
}
|
|
||||||
bNumEP = 1;
|
|
||||||
bNumIface = 0;
|
|
||||||
bConfNum = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
template <const uint8_t BOOT_PROTOCOL>
|
|
||||||
uint8_t HIDBoot<BOOT_PROTOCOL>::Init(uint8_t parent, uint8_t port, bool lowspeed)
|
|
||||||
{
|
|
||||||
const uint8_t constBufSize = sizeof(USB_DEVICE_DESCRIPTOR);
|
|
||||||
|
|
||||||
uint8_t buf[constBufSize];
|
|
||||||
uint8_t rcode;
|
|
||||||
UsbDevice *p = NULL;
|
|
||||||
EpInfo *oldep_ptr = NULL;
|
|
||||||
uint8_t len = 0;
|
|
||||||
uint16_t cd_len = 0;
|
|
||||||
|
|
||||||
uint8_t num_of_conf; // number of configurations
|
|
||||||
uint8_t num_of_intf; // number of interfaces
|
|
||||||
|
|
||||||
AddressPool &addrPool = pUsb->GetAddressPool();
|
|
||||||
|
|
||||||
USBTRACE("BM Init\r\n");
|
|
||||||
|
|
||||||
if (bAddress)
|
|
||||||
return USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE;
|
|
||||||
|
|
||||||
// Get pointer to pseudo device with address 0 assigned
|
|
||||||
p = addrPool.GetUsbDevicePtr(0);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
if (!p->epinfo)
|
|
||||||
{
|
|
||||||
USBTRACE("epinfo\r\n");
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save old pointer to EP_RECORD of address 0
|
|
||||||
oldep_ptr = p->epinfo;
|
|
||||||
|
|
||||||
// Temporary assign new pointer to epInfo to p->epinfo in order to avoid toggle inconsistence
|
|
||||||
p->epinfo = epInfo;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Get device descriptor
|
|
||||||
rcode = pUsb->getDevDescr( 0, 0, 8, (uint8_t*)buf );
|
|
||||||
|
|
||||||
if (!rcode)
|
|
||||||
len = (buf[0] > constBufSize) ? constBufSize : buf[0];
|
|
||||||
|
|
||||||
if( rcode )
|
|
||||||
{
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
// Allocate new address according to device class
|
|
||||||
bAddress = addrPool.AllocAddress(parent, false, port);
|
|
||||||
|
|
||||||
if (!bAddress)
|
|
||||||
return USB_ERROR_OUT_OF_ADDRESS_SPACE_IN_POOL;
|
|
||||||
|
|
||||||
// Extract Max Packet Size from the device descriptor
|
|
||||||
epInfo[0].maxPktSize = (uint8_t)((USB_DEVICE_DESCRIPTOR*)buf)->bMaxPacketSize0;
|
|
||||||
|
|
||||||
// Assign new address to the device
|
|
||||||
rcode = pUsb->setAddr( 0, 0, bAddress );
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
p->lowspeed = false;
|
|
||||||
addrPool.FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
USBTRACE2("setAddr:",rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
USBTRACE2("Addr:", bAddress);
|
|
||||||
|
|
||||||
p->lowspeed = false;
|
|
||||||
|
|
||||||
p = addrPool.GetUsbDevicePtr(bAddress);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
if (len)
|
|
||||||
rcode = pUsb->getDevDescr( bAddress, 0, len, (uint8_t*)buf );
|
|
||||||
|
|
||||||
if(rcode)
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
|
|
||||||
num_of_conf = ((USB_DEVICE_DESCRIPTOR*)buf)->bNumConfigurations;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 1, epInfo);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
//USBTRACE2("NC:", num_of_conf);
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<num_of_conf; i++)
|
|
||||||
{
|
|
||||||
//HexDumper<USBReadParser, uint16_t, uint16_t> HexDump;
|
|
||||||
ConfigDescParser<
|
|
||||||
USB_CLASS_HID,
|
|
||||||
HID_BOOT_INTF_SUBCLASS,
|
|
||||||
BOOT_PROTOCOL,
|
|
||||||
CP_MASK_COMPARE_ALL> confDescrParser(this);
|
|
||||||
|
|
||||||
//rcode = pUsb->getConfDescr(bAddress, 0, i, &HexDump);
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, i, &confDescrParser);
|
|
||||||
|
|
||||||
if (bNumEP > 1)
|
|
||||||
break;
|
|
||||||
} // for
|
|
||||||
|
|
||||||
if (bNumEP < 2)
|
|
||||||
return USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED;
|
|
||||||
|
|
||||||
//USBTRACE2("\r\nbAddr:", bAddress);
|
|
||||||
//USBTRACE2("\r\nbNumEP:", bNumEP);
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, bNumEP, epInfo);
|
|
||||||
|
|
||||||
//USBTRACE2("\r\nCnf:", bConfNum);
|
|
||||||
|
|
||||||
// Set Configuration Value
|
|
||||||
rcode = pUsb->setConf(bAddress, 0, bConfNum);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetConfDescr;
|
|
||||||
|
|
||||||
//USBTRACE2("\r\nIf:", bIfaceNum);
|
|
||||||
|
|
||||||
rcode = SetProtocol(bIfaceNum, HID_BOOT_PROTOCOL);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetProtocol;
|
|
||||||
|
|
||||||
if (BOOT_PROTOCOL == 1)
|
|
||||||
{
|
|
||||||
rcode = SetIdle(bIfaceNum, 0, 0);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetIdle;
|
|
||||||
}
|
|
||||||
USBTRACE("BM configured\r\n");
|
|
||||||
|
|
||||||
bPollEnable = true;
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
FailGetDevDescr:
|
|
||||||
USBTRACE("getDevDescr:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetDevTblEntry:
|
|
||||||
USBTRACE("setDevTblEn:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetConfDescr:
|
|
||||||
USBTRACE("getConf:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetProtocol:
|
|
||||||
USBTRACE("SetProto:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetIdle:
|
|
||||||
USBTRACE("SetIdle:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetConfDescr:
|
|
||||||
USBTRACE("setConf:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
Fail:
|
|
||||||
Serial.println(rcode, HEX);
|
|
||||||
Release();
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
template <const uint8_t BOOT_PROTOCOL>
|
|
||||||
void HIDBoot<BOOT_PROTOCOL>::EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *pep)
|
|
||||||
{
|
|
||||||
// If the first configuration satisfies, the others are not concidered.
|
|
||||||
if (bNumEP > 1 && conf != bConfNum)
|
|
||||||
return;
|
|
||||||
|
|
||||||
//ErrorMessage<uint8_t>(PSTR("\r\nConf.Val"), conf);
|
|
||||||
//ErrorMessage<uint8_t>(PSTR("Iface Num"), iface);
|
|
||||||
//ErrorMessage<uint8_t>(PSTR("Alt.Set"), alt);
|
|
||||||
|
|
||||||
bConfNum = conf;
|
|
||||||
bIfaceNum = iface;
|
|
||||||
|
|
||||||
uint8_t index;
|
|
||||||
|
|
||||||
if ((pep->bmAttributes & 0x03) == 3 && (pep->bEndpointAddress & 0x80) == 0x80)
|
|
||||||
{
|
|
||||||
index = epInterruptInIndex;
|
|
||||||
|
|
||||||
// Fill in the endpoint info structure
|
|
||||||
epInfo[index].epAddr = (pep->bEndpointAddress & 0x0F);
|
|
||||||
epInfo[index].maxPktSize = (uint8_t)pep->wMaxPacketSize;
|
|
||||||
epInfo[index].epAttribs = 0;
|
|
||||||
|
|
||||||
bNumEP ++;
|
|
||||||
|
|
||||||
//PrintEndpointDescriptor(pep);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
template <const uint8_t BOOT_PROTOCOL>
|
|
||||||
uint8_t HIDBoot<BOOT_PROTOCOL>::Release()
|
|
||||||
{
|
|
||||||
pUsb->GetAddressPool().FreeAddress(bAddress);
|
|
||||||
|
|
||||||
bConfNum = 0;
|
|
||||||
bIfaceNum = 0;
|
|
||||||
bNumEP = 1;
|
|
||||||
bAddress = 0;
|
|
||||||
qNextPollTime = 0;
|
|
||||||
bPollEnable = false;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
template <const uint8_t BOOT_PROTOCOL>
|
|
||||||
uint8_t HIDBoot<BOOT_PROTOCOL>::Poll()
|
|
||||||
{
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
|
|
||||||
if (!bPollEnable)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
if (qNextPollTime <= millis())
|
|
||||||
{
|
|
||||||
qNextPollTime = millis() + 10;
|
|
||||||
|
|
||||||
const uint8_t const_buff_len = 16;
|
|
||||||
uint8_t buf[const_buff_len];
|
|
||||||
|
|
||||||
uint16_t read = (uint16_t)epInfo[epInterruptInIndex].maxPktSize;
|
|
||||||
|
|
||||||
uint8_t rcode = pUsb->inTransfer(bAddress, epInfo[epInterruptInIndex].epAddr, &read, buf);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
if (rcode != hrNAK)
|
|
||||||
USBTRACE2("Poll:", rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
//for (uint8_t i=0; i<read; i++)
|
|
||||||
// PrintHex<uint8_t>(buf[i]);
|
|
||||||
//if (read)
|
|
||||||
// Serial.println("");
|
|
||||||
|
|
||||||
if (pRptParser)
|
|
||||||
pRptParser->Parse((HID*)this, 0, (uint8_t)read, buf);
|
|
||||||
}
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#endif // __HIDBOOTMOUSE_H__
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,195 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__HIDDESCRIPTORPARSER_H__)
|
|
||||||
#define __HIDDESCRIPTORPARSER_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
#include "confdescparser.h"
|
|
||||||
#include "hid.h"
|
|
||||||
|
|
||||||
class ReportDescParserBase : public USBReadParser
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
typedef void (*UsagePageFunc)(uint16_t usage);
|
|
||||||
|
|
||||||
static void PrintGenericDesktopPageUsage(uint16_t usage);
|
|
||||||
static void PrintSimulationControlsPageUsage(uint16_t usage);
|
|
||||||
static void PrintVRControlsPageUsage(uint16_t usage);
|
|
||||||
static void PrintSportsControlsPageUsage(uint16_t usage);
|
|
||||||
static void PrintGameControlsPageUsage(uint16_t usage);
|
|
||||||
static void PrintGenericDeviceControlsPageUsage(uint16_t usage);
|
|
||||||
static void PrintLEDPageUsage(uint16_t usage);
|
|
||||||
static void PrintButtonPageUsage(uint16_t usage);
|
|
||||||
static void PrintOrdinalPageUsage(uint16_t usage);
|
|
||||||
static void PrintTelephonyPageUsage(uint16_t usage);
|
|
||||||
static void PrintConsumerPageUsage(uint16_t usage);
|
|
||||||
static void PrintDigitizerPageUsage(uint16_t usage);
|
|
||||||
static void PrintAlphanumDisplayPageUsage(uint16_t usage);
|
|
||||||
static void PrintMedicalInstrumentPageUsage(uint16_t usage);
|
|
||||||
|
|
||||||
static void PrintValue(uint8_t *p, uint8_t len);
|
|
||||||
static void PrintByteValue(uint8_t data);
|
|
||||||
|
|
||||||
static void PrintItemTitle(uint8_t prefix);
|
|
||||||
|
|
||||||
static const char *usagePageTitles0[];
|
|
||||||
static const char *usagePageTitles1[];
|
|
||||||
static const char *genDesktopTitles0[];
|
|
||||||
static const char *genDesktopTitles1[];
|
|
||||||
static const char *genDesktopTitles2[];
|
|
||||||
static const char *genDesktopTitles3[];
|
|
||||||
static const char *genDesktopTitles4[];
|
|
||||||
static const char *simuTitles0[];
|
|
||||||
static const char *simuTitles1[];
|
|
||||||
static const char *simuTitles2[];
|
|
||||||
static const char *vrTitles0[];
|
|
||||||
static const char *vrTitles1[];
|
|
||||||
static const char *sportsCtrlTitles0[];
|
|
||||||
static const char *sportsCtrlTitles1[];
|
|
||||||
static const char *sportsCtrlTitles2[];
|
|
||||||
static const char *gameTitles0[];
|
|
||||||
static const char *gameTitles1[];
|
|
||||||
static const char *genDevCtrlTitles[];
|
|
||||||
static const char *ledTitles[];
|
|
||||||
static const char *telTitles0[];
|
|
||||||
static const char *telTitles1[];
|
|
||||||
static const char *telTitles2[];
|
|
||||||
static const char *telTitles3[];
|
|
||||||
static const char *telTitles4[];
|
|
||||||
static const char *telTitles5[];
|
|
||||||
static const char *consTitles0[];
|
|
||||||
static const char *consTitles1[];
|
|
||||||
static const char *consTitles2[];
|
|
||||||
static const char *consTitles3[];
|
|
||||||
static const char *consTitles4[];
|
|
||||||
static const char *consTitles5[];
|
|
||||||
static const char *consTitles6[];
|
|
||||||
static const char *consTitles7[];
|
|
||||||
static const char *consTitles8[];
|
|
||||||
static const char *consTitles9[];
|
|
||||||
static const char *consTitlesA[];
|
|
||||||
static const char *consTitlesB[];
|
|
||||||
static const char *consTitlesC[];
|
|
||||||
static const char *consTitlesD[];
|
|
||||||
static const char *consTitlesE[];
|
|
||||||
static const char *digitTitles0[];
|
|
||||||
static const char *digitTitles1[];
|
|
||||||
static const char *digitTitles2[];
|
|
||||||
static const char *aplphanumTitles0[];
|
|
||||||
static const char *aplphanumTitles1[];
|
|
||||||
static const char *aplphanumTitles2[];
|
|
||||||
static const char *medInstrTitles0[];
|
|
||||||
static const char *medInstrTitles1[];
|
|
||||||
static const char *medInstrTitles2[];
|
|
||||||
static const char *medInstrTitles3[];
|
|
||||||
static const char *medInstrTitles4[];
|
|
||||||
|
|
||||||
protected:
|
|
||||||
static UsagePageFunc usagePageFunctions[];
|
|
||||||
|
|
||||||
MultiValueBuffer theBuffer;
|
|
||||||
MultiByteValueParser valParser;
|
|
||||||
ByteSkipper theSkipper;
|
|
||||||
uint8_t varBuffer[sizeof(USB_CONFIGURATION_DESCRIPTOR)];
|
|
||||||
|
|
||||||
uint8_t itemParseState; // Item parser state variable
|
|
||||||
uint8_t itemSize; // Item size
|
|
||||||
uint8_t itemPrefix; // Item prefix (first byte)
|
|
||||||
uint8_t rptSize; // Report Size
|
|
||||||
uint8_t rptCount; // Report Count
|
|
||||||
|
|
||||||
uint16_t totalSize; // Report size in bits
|
|
||||||
|
|
||||||
virtual uint8_t ParseItem(uint8_t **pp, uint16_t *pcntdn);
|
|
||||||
|
|
||||||
UsagePageFunc pfUsage;
|
|
||||||
|
|
||||||
static void PrintUsagePage(uint16_t page);
|
|
||||||
void SetUsagePage(uint16_t page);
|
|
||||||
|
|
||||||
public:
|
|
||||||
ReportDescParserBase() :
|
|
||||||
itemParseState(0),
|
|
||||||
itemSize(0),
|
|
||||||
itemPrefix(0),
|
|
||||||
rptSize(0),
|
|
||||||
rptCount(0),
|
|
||||||
pfUsage(NULL)
|
|
||||||
{
|
|
||||||
theBuffer.pValue = varBuffer;
|
|
||||||
valParser.Initialize(&theBuffer);
|
|
||||||
theSkipper.Initialize(&theBuffer);
|
|
||||||
};
|
|
||||||
|
|
||||||
virtual void Parse(const uint16_t len, const uint8_t *pbuf, const uint16_t &offset);
|
|
||||||
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
enErrorSuccess = 0
|
|
||||||
, enErrorIncomplete // value or record is partialy read in buffer
|
|
||||||
, enErrorBufferTooSmall
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
class ReportDescParser : public ReportDescParserBase
|
|
||||||
{
|
|
||||||
};
|
|
||||||
|
|
||||||
class ReportDescParser2 : public ReportDescParserBase
|
|
||||||
{
|
|
||||||
uint8_t rptId; // Report ID
|
|
||||||
uint8_t useMin; // Usage Minimum
|
|
||||||
uint8_t useMax; // Usage Maximum
|
|
||||||
uint8_t fieldCount; // Number of field being currently processed
|
|
||||||
|
|
||||||
void OnInputItem(uint8_t itm); // Method which is called every time Input item is found
|
|
||||||
|
|
||||||
uint8_t *pBuf; // Report buffer pointer
|
|
||||||
uint8_t bLen; // Report length
|
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual uint8_t ParseItem(uint8_t **pp, uint16_t *pcntdn);
|
|
||||||
|
|
||||||
public:
|
|
||||||
ReportDescParser2(uint16_t len, uint8_t *pbuf) :
|
|
||||||
ReportDescParserBase(), bLen(len), pBuf(pbuf), rptId(0), useMin(0), useMax(0), fieldCount(0)
|
|
||||||
{};
|
|
||||||
};
|
|
||||||
|
|
||||||
class UniversalReportParser : public HIDReportParser
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // __HIDDESCRIPTORPARSER_H__
|
|
418
hiduniversal.cpp
418
hiduniversal.cpp
|
@ -1,418 +0,0 @@
|
||||||
#include "hiduniversal.h"
|
|
||||||
|
|
||||||
HIDUniversal::HIDUniversal(USB *p) :
|
|
||||||
HID(p),
|
|
||||||
qNextPollTime(0),
|
|
||||||
bPollEnable(false),
|
|
||||||
bHasReportId(false)
|
|
||||||
{
|
|
||||||
Initialize();
|
|
||||||
|
|
||||||
if (pUsb)
|
|
||||||
pUsb->RegisterDeviceClass(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint16_t HIDUniversal::GetHidClassDescrLen(uint8_t type, uint8_t num)
|
|
||||||
{
|
|
||||||
for (uint8_t i=0, n=0; i<HID_MAX_HID_CLASS_DESCRIPTORS; i++)
|
|
||||||
{
|
|
||||||
if (descrInfo[i].bDescrType == type)
|
|
||||||
{
|
|
||||||
if (n == num)
|
|
||||||
return descrInfo[i].wDescriptorLength;
|
|
||||||
n ++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void HIDUniversal::Initialize()
|
|
||||||
{
|
|
||||||
for (uint8_t i=0; i<MAX_REPORT_PARSERS; i++)
|
|
||||||
{
|
|
||||||
rptParsers[i].rptId = 0;
|
|
||||||
rptParsers[i].rptParser = NULL;
|
|
||||||
}
|
|
||||||
for (uint8_t i=0; i<HID_MAX_HID_CLASS_DESCRIPTORS; i++)
|
|
||||||
{
|
|
||||||
descrInfo[i].bDescrType = 0;
|
|
||||||
descrInfo[i].wDescriptorLength = 0;
|
|
||||||
}
|
|
||||||
for (uint8_t i=0; i<maxHidInterfaces; i++)
|
|
||||||
{
|
|
||||||
hidInterfaces[i].bmInterface = 0;
|
|
||||||
hidInterfaces[i].bmProtocol = 0;
|
|
||||||
|
|
||||||
for (uint8_t j=0; j<maxEpPerInterface; j++)
|
|
||||||
hidInterfaces[i].epIndex[j] = 0;
|
|
||||||
}
|
|
||||||
for(uint8_t i=0; i<totalEndpoints; i++)
|
|
||||||
{
|
|
||||||
epInfo[i].epAddr = 0;
|
|
||||||
epInfo[i].maxPktSize = (i) ? 0 : 8;
|
|
||||||
epInfo[i].epAttribs = 0;
|
|
||||||
epInfo[i].bmNakPower = (i) ? USB_NAK_NOWAIT : USB_NAK_MAX_POWER;
|
|
||||||
}
|
|
||||||
bNumEP = 1;
|
|
||||||
bNumIface = 0;
|
|
||||||
bConfNum = 0;
|
|
||||||
|
|
||||||
ZeroMemory(constBuffLen, prevBuf);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool HIDUniversal::SetReportParser(uint8_t id, HIDReportParser *prs)
|
|
||||||
{
|
|
||||||
for (uint8_t i=0; i<MAX_REPORT_PARSERS; i++)
|
|
||||||
{
|
|
||||||
if (rptParsers[i].rptId == 0 && rptParsers[i].rptParser == NULL)
|
|
||||||
{
|
|
||||||
rptParsers[i].rptId = id;
|
|
||||||
rptParsers[i].rptParser = prs;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
HIDReportParser* HIDUniversal::GetReportParser(uint8_t id)
|
|
||||||
{
|
|
||||||
if (!bHasReportId)
|
|
||||||
return ((rptParsers[0].rptParser) ? rptParsers[0].rptParser : NULL);
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<MAX_REPORT_PARSERS; i++)
|
|
||||||
{
|
|
||||||
if (rptParsers[i].rptId == id)
|
|
||||||
return rptParsers[i].rptParser;
|
|
||||||
}
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t HIDUniversal::Init(uint8_t parent, uint8_t port, bool lowspeed)
|
|
||||||
{
|
|
||||||
const uint8_t constBufSize = sizeof(USB_DEVICE_DESCRIPTOR);
|
|
||||||
|
|
||||||
uint8_t buf[constBufSize];
|
|
||||||
uint8_t rcode;
|
|
||||||
UsbDevice *p = NULL;
|
|
||||||
EpInfo *oldep_ptr = NULL;
|
|
||||||
uint8_t len = 0;
|
|
||||||
|
|
||||||
uint8_t num_of_conf; // number of configurations
|
|
||||||
uint8_t num_of_intf; // number of interfaces
|
|
||||||
|
|
||||||
AddressPool &addrPool = pUsb->GetAddressPool();
|
|
||||||
|
|
||||||
USBTRACE("HU Init\r\n");
|
|
||||||
|
|
||||||
if (bAddress)
|
|
||||||
return USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE;
|
|
||||||
|
|
||||||
// Get pointer to pseudo device with address 0 assigned
|
|
||||||
p = addrPool.GetUsbDevicePtr(0);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
if (!p->epinfo)
|
|
||||||
{
|
|
||||||
USBTRACE("epinfo\r\n");
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save old pointer to EP_RECORD of address 0
|
|
||||||
oldep_ptr = p->epinfo;
|
|
||||||
|
|
||||||
// Temporary assign new pointer to epInfo to p->epinfo in order to avoid toggle inconsistence
|
|
||||||
p->epinfo = epInfo;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
//delay(200);
|
|
||||||
|
|
||||||
// Get device descriptor
|
|
||||||
rcode = pUsb->getDevDescr( 0, 0, 8, (uint8_t*)buf );
|
|
||||||
|
|
||||||
if (!rcode)
|
|
||||||
len = (buf[0] > constBufSize) ? constBufSize : buf[0];
|
|
||||||
|
|
||||||
if( rcode )
|
|
||||||
{
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
// Allocate new address according to device class
|
|
||||||
bAddress = addrPool.AllocAddress(parent, false, port);
|
|
||||||
|
|
||||||
if (!bAddress)
|
|
||||||
return USB_ERROR_OUT_OF_ADDRESS_SPACE_IN_POOL;
|
|
||||||
|
|
||||||
// Extract Max Packet Size from the device descriptor
|
|
||||||
epInfo[0].maxPktSize = (uint8_t)((USB_DEVICE_DESCRIPTOR*)buf)->bMaxPacketSize0;
|
|
||||||
|
|
||||||
// Assign new address to the device
|
|
||||||
rcode = pUsb->setAddr( 0, 0, bAddress );
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
p->lowspeed = false;
|
|
||||||
addrPool.FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
USBTRACE2("setAddr:",rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
USBTRACE2("Addr:", bAddress);
|
|
||||||
|
|
||||||
p->lowspeed = false;
|
|
||||||
|
|
||||||
p = addrPool.GetUsbDevicePtr(bAddress);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
delay(500);
|
|
||||||
|
|
||||||
if (len)
|
|
||||||
rcode = pUsb->getDevDescr( bAddress, 0, len, (uint8_t*)buf );
|
|
||||||
|
|
||||||
if(rcode)
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
|
|
||||||
num_of_conf = ((USB_DEVICE_DESCRIPTOR*)buf)->bNumConfigurations;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 1, epInfo);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
USBTRACE2("NC:", num_of_conf);
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<num_of_conf; i++)
|
|
||||||
{
|
|
||||||
//delay(1000);
|
|
||||||
//HexDumper<USBReadParser, uint16_t, uint16_t> HexDump;
|
|
||||||
ConfigDescParser<USB_CLASS_HID, 0, 0,
|
|
||||||
CP_MASK_COMPARE_CLASS> confDescrParser(this);
|
|
||||||
|
|
||||||
//rcode = pUsb->getConfDescr(bAddress, 0, i, &HexDump);
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, i, &confDescrParser);
|
|
||||||
|
|
||||||
if (bNumEP > 1)
|
|
||||||
break;
|
|
||||||
} // for
|
|
||||||
|
|
||||||
if (bNumEP < 2)
|
|
||||||
return USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, bNumEP, epInfo);
|
|
||||||
|
|
||||||
USBTRACE2("\r\nCnf:", bConfNum);
|
|
||||||
|
|
||||||
// Set Configuration Value
|
|
||||||
rcode = pUsb->setConf(bAddress, 0, bConfNum);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetConfDescr;
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<bNumIface; i++)
|
|
||||||
{
|
|
||||||
if (hidInterfaces[i].epIndex[epInterruptInIndex] == 0)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
rcode = SetIdle(hidInterfaces[i].bmInterface, 0, 0);
|
|
||||||
|
|
||||||
if (rcode && rcode != hrSTALL)
|
|
||||||
goto FailSetIdle;
|
|
||||||
}
|
|
||||||
|
|
||||||
USBTRACE("HU configured\r\n");
|
|
||||||
|
|
||||||
OnInitSuccessful();
|
|
||||||
|
|
||||||
bPollEnable = true;
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
FailGetDevDescr:
|
|
||||||
USBTRACE("getDevDescr:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetDevTblEntry:
|
|
||||||
USBTRACE("setDevTblEn:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetConfDescr:
|
|
||||||
USBTRACE("getConf:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetConfDescr:
|
|
||||||
USBTRACE("setConf:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetProtocol:
|
|
||||||
USBTRACE("SetProto:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetIdle:
|
|
||||||
USBTRACE("SetIdle:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetReportDescr:
|
|
||||||
USBTRACE("GetReportDescr:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
Fail:
|
|
||||||
Serial.println(rcode, HEX);
|
|
||||||
Release();
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
HIDUniversal::HIDInterface* HIDUniversal::FindInterface(uint8_t iface, uint8_t alt, uint8_t proto)
|
|
||||||
{
|
|
||||||
for (uint8_t i=0; i<bNumIface && i<maxHidInterfaces; i++)
|
|
||||||
if (hidInterfaces[i].bmInterface == iface && hidInterfaces[i].bmAltSet == alt
|
|
||||||
&& hidInterfaces[i].bmProtocol == proto)
|
|
||||||
return hidInterfaces + i;
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
void HIDUniversal::EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *pep)
|
|
||||||
{
|
|
||||||
// If the first configuration satisfies, the others are not concidered.
|
|
||||||
if (bNumEP > 1 && conf != bConfNum)
|
|
||||||
return;
|
|
||||||
|
|
||||||
//ErrorMessage<uint8_t>(PSTR("\r\nConf.Val"), conf);
|
|
||||||
//ErrorMessage<uint8_t>(PSTR("Iface Num"), iface);
|
|
||||||
//ErrorMessage<uint8_t>(PSTR("Alt.Set"), alt);
|
|
||||||
|
|
||||||
bConfNum = conf;
|
|
||||||
|
|
||||||
uint8_t index = 0;
|
|
||||||
HIDInterface *piface = FindInterface(iface, alt, proto);
|
|
||||||
|
|
||||||
// Fill in interface structure in case of new interface
|
|
||||||
if (!piface)
|
|
||||||
{
|
|
||||||
piface = hidInterfaces + bNumIface;
|
|
||||||
piface->bmInterface = iface;
|
|
||||||
piface->bmAltSet = alt;
|
|
||||||
piface->bmProtocol = proto;
|
|
||||||
bNumIface ++;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((pep->bmAttributes & 0x03) == 3 && (pep->bEndpointAddress & 0x80) == 0x80)
|
|
||||||
index = epInterruptInIndex;
|
|
||||||
else
|
|
||||||
index = epInterruptOutIndex;
|
|
||||||
|
|
||||||
if (index)
|
|
||||||
{
|
|
||||||
// Fill in the endpoint info structure
|
|
||||||
epInfo[bNumEP].epAddr = (pep->bEndpointAddress & 0x0F);
|
|
||||||
epInfo[bNumEP].maxPktSize = (uint8_t)pep->wMaxPacketSize;
|
|
||||||
epInfo[bNumEP].epAttribs = 0;
|
|
||||||
epInfo[bNumEP].bmNakPower = USB_NAK_NOWAIT;
|
|
||||||
|
|
||||||
// Fill in the endpoint index list
|
|
||||||
piface->epIndex[index] = bNumEP; //(pep->bEndpointAddress & 0x0F);
|
|
||||||
|
|
||||||
bNumEP ++;
|
|
||||||
}
|
|
||||||
//PrintEndpointDescriptor(pep);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
uint8_t HIDUniversal::Release()
|
|
||||||
{
|
|
||||||
pUsb->GetAddressPool().FreeAddress(bAddress);
|
|
||||||
|
|
||||||
bNumEP = 1;
|
|
||||||
bAddress = 0;
|
|
||||||
qNextPollTime = 0;
|
|
||||||
bPollEnable = false;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool HIDUniversal::BuffersIdentical(uint8_t len, uint8_t *buf1, uint8_t *buf2)
|
|
||||||
{
|
|
||||||
for (uint8_t i=0; i<len; i++)
|
|
||||||
if (buf1[i] != buf2[i])
|
|
||||||
return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void HIDUniversal::ZeroMemory(uint8_t len, uint8_t *buf)
|
|
||||||
{
|
|
||||||
for (uint8_t i=0; i<len; i++)
|
|
||||||
buf[i] = 0;
|
|
||||||
}
|
|
||||||
void HIDUniversal::SaveBuffer(uint8_t len, uint8_t *src, uint8_t *dest)
|
|
||||||
{
|
|
||||||
for (uint8_t i=0; i<len; i++)
|
|
||||||
dest[i] = src[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t HIDUniversal::Poll()
|
|
||||||
{
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
|
|
||||||
if (!bPollEnable)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
if (qNextPollTime <= millis())
|
|
||||||
{
|
|
||||||
qNextPollTime = millis() + 50;
|
|
||||||
|
|
||||||
uint8_t buf[constBuffLen];
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<bNumIface; i++)
|
|
||||||
{
|
|
||||||
uint8_t index = hidInterfaces[i].epIndex[epInterruptInIndex];
|
|
||||||
uint16_t read = (uint16_t)epInfo[index].maxPktSize;
|
|
||||||
|
|
||||||
ZeroMemory(constBuffLen, buf);
|
|
||||||
|
|
||||||
uint8_t rcode = pUsb->inTransfer(bAddress, epInfo[index].epAddr, &read, buf);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
if (rcode != hrNAK)
|
|
||||||
USBTRACE2("Poll:", rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (read > constBuffLen)
|
|
||||||
read = constBuffLen;
|
|
||||||
|
|
||||||
bool identical = BuffersIdentical(read, buf, prevBuf);
|
|
||||||
|
|
||||||
SaveBuffer(read, buf, prevBuf);
|
|
||||||
|
|
||||||
if (identical)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
Serial.print("\r\nBuf: ");
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<read; i++)
|
|
||||||
PrintHex<uint8_t>(buf[i]);
|
|
||||||
|
|
||||||
Serial.println("");
|
|
||||||
|
|
||||||
HIDReportParser *prs = GetReportParser( ((bHasReportId) ? *buf : 0) );
|
|
||||||
|
|
||||||
if (prs)
|
|
||||||
prs->Parse(this, bHasReportId, (uint8_t)read, buf);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return rcode;
|
|
||||||
}
|
|
|
@ -1,75 +0,0 @@
|
||||||
#if !defined(__HIDUNIVERSAL_H__)
|
|
||||||
#define __HIDUNIVERSAL_H__
|
|
||||||
|
|
||||||
#include "hid.h"
|
|
||||||
//#include "hidescriptorparser.h"
|
|
||||||
|
|
||||||
class HIDUniversal : public HID
|
|
||||||
{
|
|
||||||
struct ReportParser
|
|
||||||
{
|
|
||||||
uint8_t rptId;
|
|
||||||
HIDReportParser *rptParser;
|
|
||||||
} rptParsers[MAX_REPORT_PARSERS];
|
|
||||||
|
|
||||||
// HID class specific descriptor type and length info obtained from HID descriptor
|
|
||||||
HID_CLASS_DESCRIPTOR_LEN_AND_TYPE descrInfo[HID_MAX_HID_CLASS_DESCRIPTORS];
|
|
||||||
|
|
||||||
// Returns HID class specific descriptor length by its type and order number
|
|
||||||
uint16_t GetHidClassDescrLen(uint8_t type, uint8_t num);
|
|
||||||
|
|
||||||
EpInfo epInfo[totalEndpoints];
|
|
||||||
|
|
||||||
struct HIDInterface
|
|
||||||
{
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
uint8_t bmInterface : 3;
|
|
||||||
uint8_t bmAltSet : 3;
|
|
||||||
uint8_t bmProtocol : 2;
|
|
||||||
};
|
|
||||||
uint8_t epIndex[maxEpPerInterface];
|
|
||||||
};
|
|
||||||
|
|
||||||
HIDInterface hidInterfaces[maxHidInterfaces];
|
|
||||||
|
|
||||||
uint8_t bConfNum; // configuration number
|
|
||||||
uint8_t bNumIface; // number of interfaces in the configuration
|
|
||||||
uint8_t bNumEP; // total number of EP in the configuration
|
|
||||||
uint32_t qNextPollTime; // next poll time
|
|
||||||
bool bPollEnable; // poll enable flag
|
|
||||||
|
|
||||||
static const uint16_t constBuffLen = 64; // event buffer length
|
|
||||||
uint8_t prevBuf[constBuffLen]; // previous event buffer
|
|
||||||
|
|
||||||
void Initialize();
|
|
||||||
HIDInterface* FindInterface(uint8_t iface, uint8_t alt, uint8_t proto);
|
|
||||||
|
|
||||||
void ZeroMemory(uint8_t len, uint8_t *buf);
|
|
||||||
bool BuffersIdentical(uint8_t len, uint8_t *buf1, uint8_t *buf2);
|
|
||||||
void SaveBuffer(uint8_t len, uint8_t *src, uint8_t *dest);
|
|
||||||
|
|
||||||
protected:
|
|
||||||
bool bHasReportId;
|
|
||||||
|
|
||||||
// HID implementation
|
|
||||||
virtual HIDReportParser* GetReportParser(uint8_t id);
|
|
||||||
virtual uint8_t OnInitSuccessful() { return 0; };
|
|
||||||
|
|
||||||
public:
|
|
||||||
HIDUniversal(USB *p);
|
|
||||||
|
|
||||||
// HID implementation
|
|
||||||
virtual bool SetReportParser(uint8_t id, HIDReportParser *prs);
|
|
||||||
|
|
||||||
// USBDeviceConfig implementation
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
virtual uint8_t Release();
|
|
||||||
virtual uint8_t Poll();
|
|
||||||
virtual uint8_t GetAddress() { return bAddress; };
|
|
||||||
|
|
||||||
// UsbConfigXtracter implementation
|
|
||||||
virtual void EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *ep);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // __HIDUNIVERSAL_H__
|
|
977
hidusagestr.h
977
hidusagestr.h
|
@ -1,977 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined( __HIDUSAGESTR_H__)
|
|
||||||
#define __HIDUSAGESTR_H__
|
|
||||||
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
|
|
||||||
const char pstrSpace [] PROGMEM = " ";
|
|
||||||
const char pstrCRLF [] PROGMEM = "\r\n";
|
|
||||||
const char pstrSingleTab [] PROGMEM = "\t";
|
|
||||||
const char pstrDoubleTab [] PROGMEM = "\t\t";
|
|
||||||
const char pstrTripleTab [] PROGMEM = "\t\t\t";
|
|
||||||
|
|
||||||
// Usage Page String Titles
|
|
||||||
const char pstrUsagePageUndefined [] PROGMEM = "Undef";
|
|
||||||
const char pstrUsagePageGenericDesktopControls [] PROGMEM = "Gen Desktop Ctrls";
|
|
||||||
const char pstrUsagePageSimulationControls [] PROGMEM = "Simu Ctrls";
|
|
||||||
const char pstrUsagePageVRControls [] PROGMEM = "VR Ctrls";
|
|
||||||
const char pstrUsagePageSportControls [] PROGMEM = "Sport Ctrls";
|
|
||||||
const char pstrUsagePageGameControls [] PROGMEM = "Game Ctrls";
|
|
||||||
const char pstrUsagePageGenericDeviceControls [] PROGMEM = "Gen Dev Ctrls";
|
|
||||||
const char pstrUsagePageKeyboardKeypad [] PROGMEM = "Kbrd/Keypad";
|
|
||||||
const char pstrUsagePageLEDs [] PROGMEM = "LEDs";
|
|
||||||
const char pstrUsagePageButton [] PROGMEM = "Button";
|
|
||||||
const char pstrUsagePageOrdinal [] PROGMEM = "Ordinal";
|
|
||||||
const char pstrUsagePageTelephone [] PROGMEM = "Tel";
|
|
||||||
const char pstrUsagePageConsumer [] PROGMEM = "Consumer";
|
|
||||||
const char pstrUsagePageDigitizer [] PROGMEM = "Digitizer";
|
|
||||||
const char pstrUsagePagePID [] PROGMEM = "PID";
|
|
||||||
const char pstrUsagePageUnicode [] PROGMEM = "Unicode";
|
|
||||||
const char pstrUsagePageAlphaNumericDisplay [] PROGMEM = "Alpha Num Disp";
|
|
||||||
const char pstrUsagePageMedicalInstruments [] PROGMEM = "Medical Instr";
|
|
||||||
const char pstrUsagePageMonitor [] PROGMEM = "Monitor";
|
|
||||||
const char pstrUsagePagePower [] PROGMEM = "Power";
|
|
||||||
const char pstrUsagePageBarCodeScanner [] PROGMEM = "Bar Code Scan";
|
|
||||||
const char pstrUsagePageScale [] PROGMEM = "Scale";
|
|
||||||
const char pstrUsagePageMSRDevices [] PROGMEM = "Magn Stripe Read Dev";
|
|
||||||
const char pstrUsagePagePointOfSale [] PROGMEM = "POS";
|
|
||||||
const char pstrUsagePageCameraControl [] PROGMEM = "Cam Ctrl";
|
|
||||||
const char pstrUsagePageArcade [] PROGMEM = "Arcade";
|
|
||||||
const char pstrUsagePageReserved [] PROGMEM = "Reserved";
|
|
||||||
const char pstrUsagePageVendorDefined [] PROGMEM = "Vendor Def";
|
|
||||||
|
|
||||||
// Generic Desktop Controls Page
|
|
||||||
const char pstrUsagePointer [] PROGMEM = "Pointer";
|
|
||||||
const char pstrUsageMouse [] PROGMEM = "Mouse";
|
|
||||||
const char pstrUsageJoystick [] PROGMEM = "Joystick";
|
|
||||||
const char pstrUsageGamePad [] PROGMEM = "Game Pad";
|
|
||||||
const char pstrUsageKeyboard [] PROGMEM = "Kbrd";
|
|
||||||
const char pstrUsageKeypad [] PROGMEM = "Keypad";
|
|
||||||
const char pstrUsageMultiAxisController [] PROGMEM = "Multi-axis Ctrl";
|
|
||||||
const char pstrUsageTabletPCSystemControls [] PROGMEM = "Tablet PC Sys Ctrls";
|
|
||||||
const char pstrUsageX [] PROGMEM = "X";
|
|
||||||
const char pstrUsageY [] PROGMEM = "Y";
|
|
||||||
const char pstrUsageZ [] PROGMEM = "Z";
|
|
||||||
const char pstrUsageRx [] PROGMEM = "Rx";
|
|
||||||
const char pstrUsageRy [] PROGMEM = "Ry";
|
|
||||||
const char pstrUsageRz [] PROGMEM = "Rz";
|
|
||||||
const char pstrUsageSlider [] PROGMEM = "Slider";
|
|
||||||
const char pstrUsageDial [] PROGMEM = "Dial";
|
|
||||||
const char pstrUsageWheel [] PROGMEM = "Wheel";
|
|
||||||
const char pstrUsageHatSwitch [] PROGMEM = "Hat Switch";
|
|
||||||
const char pstrUsageCountedBuffer [] PROGMEM = "Counted Buf";
|
|
||||||
const char pstrUsageByteCount [] PROGMEM = "Byte Count";
|
|
||||||
const char pstrUsageMotionWakeup [] PROGMEM = "Motion Wakeup";
|
|
||||||
const char pstrUsageStart [] PROGMEM = "Start";
|
|
||||||
const char pstrUsageSelect [] PROGMEM = "Sel";
|
|
||||||
const char pstrUsageVx [] PROGMEM = "Vx";
|
|
||||||
const char pstrUsageVy [] PROGMEM = "Vy";
|
|
||||||
const char pstrUsageVz [] PROGMEM = "Vz";
|
|
||||||
const char pstrUsageVbrx [] PROGMEM = "Vbrx";
|
|
||||||
const char pstrUsageVbry [] PROGMEM = "Vbry";
|
|
||||||
const char pstrUsageVbrz [] PROGMEM = "Vbrz";
|
|
||||||
const char pstrUsageVno [] PROGMEM = "Vno";
|
|
||||||
const char pstrUsageFeatureNotification [] PROGMEM = "Feature Notif";
|
|
||||||
const char pstrUsageResolutionMultiplier [] PROGMEM = "Res Mult";
|
|
||||||
const char pstrUsageSystemControl [] PROGMEM = "Sys Ctrl";
|
|
||||||
const char pstrUsageSystemPowerDown [] PROGMEM = "Sys Pwr Down";
|
|
||||||
const char pstrUsageSystemSleep [] PROGMEM = "Sys Sleep";
|
|
||||||
const char pstrUsageSystemWakeup [] PROGMEM = "Sys Wakeup";
|
|
||||||
const char pstrUsageSystemContextMenu [] PROGMEM = "Sys Context Menu";
|
|
||||||
const char pstrUsageSystemMainMenu [] PROGMEM = "Sys Main Menu";
|
|
||||||
const char pstrUsageSystemAppMenu [] PROGMEM = "Sys App Menu";
|
|
||||||
const char pstrUsageSystemMenuHelp [] PROGMEM = "Sys Menu Help";
|
|
||||||
const char pstrUsageSystemMenuExit [] PROGMEM = "Sys Menu Exit";
|
|
||||||
const char pstrUsageSystemMenuSelect [] PROGMEM = "Sys Menu Select";
|
|
||||||
const char pstrUsageSystemMenuRight [] PROGMEM = "Sys Menu Right";
|
|
||||||
const char pstrUsageSystemMenuLeft [] PROGMEM = "Sys Menu Left";
|
|
||||||
const char pstrUsageSystemMenuUp [] PROGMEM = "Sys Menu Up";
|
|
||||||
const char pstrUsageSystemMenuDown [] PROGMEM = "Sys Menu Down";
|
|
||||||
const char pstrUsageSystemColdRestart [] PROGMEM = "Sys Cold Restart";
|
|
||||||
const char pstrUsageSystemWarmRestart [] PROGMEM = "Sys Warm Restart";
|
|
||||||
const char pstrUsageDPadUp [] PROGMEM = "D-pad Up";
|
|
||||||
const char pstrUsageDPadDown [] PROGMEM = "D-pad Down";
|
|
||||||
const char pstrUsageDPadRight [] PROGMEM = "D-pad Right";
|
|
||||||
const char pstrUsageDPadLeft [] PROGMEM = "D-pad Left";
|
|
||||||
const char pstrUsageSystemDock [] PROGMEM = "Sys Dock";
|
|
||||||
const char pstrUsageSystemUndock [] PROGMEM = "Sys Undock";
|
|
||||||
const char pstrUsageSystemSetup [] PROGMEM = "Sys Setup";
|
|
||||||
const char pstrUsageSystemBreak [] PROGMEM = "Sys Break";
|
|
||||||
const char pstrUsageSystemDebuggerBreak [] PROGMEM = "Sys Dbg Brk";
|
|
||||||
const char pstrUsageApplicationBreak [] PROGMEM = "App Break";
|
|
||||||
const char pstrUsageApplicationDebuggerBreak [] PROGMEM = "App Dbg Brk";
|
|
||||||
const char pstrUsageSystemSpeakerMute [] PROGMEM = "Sys Spk Mute";
|
|
||||||
const char pstrUsageSystemHibernate [] PROGMEM = "Sys Hiber";
|
|
||||||
const char pstrUsageSystemDisplayInvert [] PROGMEM = "Sys Disp Inv";
|
|
||||||
const char pstrUsageSystemDisplayInternal [] PROGMEM = "Sys Disp Int";
|
|
||||||
const char pstrUsageSystemDisplayExternal [] PROGMEM = "Sys Disp Ext";
|
|
||||||
const char pstrUsageSystemDisplayBoth [] PROGMEM = "Sys Disp Both";
|
|
||||||
const char pstrUsageSystemDisplayDual [] PROGMEM = "Sys Disp Dual";
|
|
||||||
const char pstrUsageSystemDisplayToggleIntExt [] PROGMEM = "Sys Disp Tgl Int/Ext";
|
|
||||||
const char pstrUsageSystemDisplaySwapPriSec [] PROGMEM = "Sys Disp Swap Pri/Sec";
|
|
||||||
const char pstrUsageSystemDisplayLCDAutoscale [] PROGMEM = "Sys Disp LCD Autoscale";
|
|
||||||
|
|
||||||
// Simulation Controls Page
|
|
||||||
const char pstrUsageFlightSimulationDevice [] PROGMEM = "Flight Simu Dev";
|
|
||||||
const char pstrUsageAutomobileSimulationDevice [] PROGMEM = "Auto Simu Dev";
|
|
||||||
const char pstrUsageTankSimulationDevice [] PROGMEM = "Tank Simu Dev";
|
|
||||||
const char pstrUsageSpaceshipSimulationDevice [] PROGMEM = "Space Simu Dev";
|
|
||||||
const char pstrUsageSubmarineSimulationDevice [] PROGMEM = "Subm Simu Dev";
|
|
||||||
const char pstrUsageSailingSimulationDevice [] PROGMEM = "Sail Simu Dev";
|
|
||||||
const char pstrUsageMotocicleSimulationDevice [] PROGMEM = "Moto Simu Dev";
|
|
||||||
const char pstrUsageSportsSimulationDevice [] PROGMEM = "Sport Simu Dev";
|
|
||||||
const char pstrUsageAirplaneSimulationDevice [] PROGMEM = "Airp Simu Dev";
|
|
||||||
const char pstrUsageHelicopterSimulationDevice [] PROGMEM = "Heli Simu Dev";
|
|
||||||
const char pstrUsageMagicCarpetSimulationDevice [] PROGMEM = "Magic Carpet Simu Dev";
|
|
||||||
const char pstrUsageBicycleSimulationDevice [] PROGMEM = "Bike Simu Dev";
|
|
||||||
const char pstrUsageFlightControlStick [] PROGMEM = "Flight Ctrl Stick";
|
|
||||||
const char pstrUsageFlightStick [] PROGMEM = "Flight Stick";
|
|
||||||
const char pstrUsageCyclicControl [] PROGMEM = "Cyclic Ctrl";
|
|
||||||
const char pstrUsageCyclicTrim [] PROGMEM = "Cyclic Trim";
|
|
||||||
const char pstrUsageFlightYoke [] PROGMEM = "Flight Yoke";
|
|
||||||
const char pstrUsageTrackControl [] PROGMEM = "Track Ctrl";
|
|
||||||
const char pstrUsageAileron [] PROGMEM = "Aileron";
|
|
||||||
const char pstrUsageAileronTrim [] PROGMEM = "Aileron Trim";
|
|
||||||
const char pstrUsageAntiTorqueControl [] PROGMEM = "Anti-Torque Ctrl";
|
|
||||||
const char pstrUsageAutopilotEnable [] PROGMEM = "Autopilot Enable";
|
|
||||||
const char pstrUsageChaffRelease [] PROGMEM = "Chaff Release";
|
|
||||||
const char pstrUsageCollectiveControl [] PROGMEM = "Collective Ctrl";
|
|
||||||
const char pstrUsageDiveBrake [] PROGMEM = "Dive Brake";
|
|
||||||
const char pstrUsageElectronicCountermeasures [] PROGMEM = "El Countermeasures";
|
|
||||||
const char pstrUsageElevator [] PROGMEM = "Elevator";
|
|
||||||
const char pstrUsageElevatorTrim [] PROGMEM = "Elevator Trim";
|
|
||||||
const char pstrUsageRudder [] PROGMEM = "Rudder";
|
|
||||||
const char pstrUsageThrottle [] PROGMEM = "Throttle";
|
|
||||||
const char pstrUsageFlightCommunications [] PROGMEM = "Flight Comm";
|
|
||||||
const char pstrUsageFlareRelease [] PROGMEM = "Flare Release";
|
|
||||||
const char pstrUsageLandingGear [] PROGMEM = "Landing Gear";
|
|
||||||
const char pstrUsageToeBrake [] PROGMEM = "Toe Brake";
|
|
||||||
const char pstrUsageTrigger [] PROGMEM = "Trigger";
|
|
||||||
const char pstrUsageWeaponsArm [] PROGMEM = "Weapons Arm";
|
|
||||||
const char pstrUsageWeaponsSelect [] PROGMEM = "Weapons Sel";
|
|
||||||
const char pstrUsageWingFlaps [] PROGMEM = "Wing Flaps";
|
|
||||||
const char pstrUsageAccelerator [] PROGMEM = "Accel";
|
|
||||||
const char pstrUsageBrake [] PROGMEM = "Brake";
|
|
||||||
const char pstrUsageClutch [] PROGMEM = "Clutch";
|
|
||||||
const char pstrUsageShifter [] PROGMEM = "Shifter";
|
|
||||||
const char pstrUsageSteering [] PROGMEM = "Steering";
|
|
||||||
const char pstrUsageTurretDirection [] PROGMEM = "Turret Dir";
|
|
||||||
const char pstrUsageBarrelElevation [] PROGMEM = "Barrel Ele";
|
|
||||||
const char pstrUsageDivePlane [] PROGMEM = "Dive Plane";
|
|
||||||
const char pstrUsageBallast [] PROGMEM = "Ballast";
|
|
||||||
const char pstrUsageBicycleCrank [] PROGMEM = "Bicycle Crank";
|
|
||||||
const char pstrUsageHandleBars [] PROGMEM = "Handle Bars";
|
|
||||||
const char pstrUsageFrontBrake [] PROGMEM = "Front Brake";
|
|
||||||
const char pstrUsageRearBrake [] PROGMEM = "Rear Brake";
|
|
||||||
|
|
||||||
// VR Controls Page
|
|
||||||
const char pstrUsageBelt [] PROGMEM = "Belt";
|
|
||||||
const char pstrUsageBodySuit [] PROGMEM = "Body Suit";
|
|
||||||
const char pstrUsageFlexor [] PROGMEM = "Flexor";
|
|
||||||
const char pstrUsageGlove [] PROGMEM = "Glove";
|
|
||||||
const char pstrUsageHeadTracker [] PROGMEM = "Head Track";
|
|
||||||
const char pstrUsageHeadMountedDisplay [] PROGMEM = "Head Disp";
|
|
||||||
const char pstrUsageHandTracker [] PROGMEM = "Hand Track";
|
|
||||||
const char pstrUsageOculometer [] PROGMEM = "Oculometer";
|
|
||||||
const char pstrUsageVest [] PROGMEM = "Vest";
|
|
||||||
const char pstrUsageAnimatronicDevice [] PROGMEM = "Animat Dev";
|
|
||||||
const char pstrUsageStereoEnable [] PROGMEM = "Stereo Enbl";
|
|
||||||
const char pstrUsageDisplayEnable [] PROGMEM = "Display Enbl";
|
|
||||||
|
|
||||||
// Sport Controls Page
|
|
||||||
const char pstrUsageBaseballBat [] PROGMEM = "Baseball Bat";
|
|
||||||
const char pstrUsageGolfClub [] PROGMEM = "Golf Club";
|
|
||||||
const char pstrUsageRowingMachine [] PROGMEM = "Rowing Mach";
|
|
||||||
const char pstrUsageTreadmill [] PROGMEM = "Treadmill";
|
|
||||||
const char pstrUsageOar [] PROGMEM = "Oar";
|
|
||||||
const char pstrUsageSlope [] PROGMEM = "Slope";
|
|
||||||
const char pstrUsageRate [] PROGMEM = "Rate";
|
|
||||||
const char pstrUsageStickSpeed [] PROGMEM = "Stick Speed";
|
|
||||||
const char pstrUsageStickFaceAngle [] PROGMEM = "Stick Face Ang";
|
|
||||||
const char pstrUsageStickHeelToe [] PROGMEM = "Stick Heel/Toe";
|
|
||||||
const char pstrUsageStickFollowThough [] PROGMEM = "Stick Flw Thru";
|
|
||||||
const char pstrUsageStickTempo [] PROGMEM = "Stick Tempo";
|
|
||||||
const char pstrUsageStickType [] PROGMEM = "Stick Type";
|
|
||||||
const char pstrUsageStickHeight [] PROGMEM = "Stick Hght";
|
|
||||||
const char pstrUsagePutter [] PROGMEM = "Putter";
|
|
||||||
const char pstrUsage1Iron [] PROGMEM = "1 Iron";
|
|
||||||
const char pstrUsage2Iron [] PROGMEM = "2 Iron";
|
|
||||||
const char pstrUsage3Iron [] PROGMEM = "3 Iron";
|
|
||||||
const char pstrUsage4Iron [] PROGMEM = "4 Iron";
|
|
||||||
const char pstrUsage5Iron [] PROGMEM = "5 Iron";
|
|
||||||
const char pstrUsage6Iron [] PROGMEM = "6 Iron";
|
|
||||||
const char pstrUsage7Iron [] PROGMEM = "7 Iron";
|
|
||||||
const char pstrUsage8Iron [] PROGMEM = "8 Iron";
|
|
||||||
const char pstrUsage9Iron [] PROGMEM = "9 Iron";
|
|
||||||
const char pstrUsage10Iron [] PROGMEM = "10 Iron";
|
|
||||||
const char pstrUsage11Iron [] PROGMEM = "11 Iron";
|
|
||||||
const char pstrUsageSandWedge [] PROGMEM = "Sand Wedge";
|
|
||||||
const char pstrUsageLoftWedge [] PROGMEM = "Loft Wedge";
|
|
||||||
const char pstrUsagePowerWedge [] PROGMEM = "Pwr Wedge";
|
|
||||||
const char pstrUsage1Wood [] PROGMEM = "1 Wood";
|
|
||||||
const char pstrUsage3Wood [] PROGMEM = "3 Wood";
|
|
||||||
const char pstrUsage5Wood [] PROGMEM = "5 Wood";
|
|
||||||
const char pstrUsage7Wood [] PROGMEM = "7 Wood";
|
|
||||||
const char pstrUsage9Wood [] PROGMEM = "9 Wood";
|
|
||||||
|
|
||||||
// Game Controls Page
|
|
||||||
const char pstrUsage3DGameController [] PROGMEM = "3D Game Ctrl";
|
|
||||||
const char pstrUsagePinballDevice [] PROGMEM = "Pinball Dev";
|
|
||||||
const char pstrUsageGunDevice [] PROGMEM = "Gun Dev";
|
|
||||||
const char pstrUsagePointOfView [] PROGMEM = "POV";
|
|
||||||
const char pstrUsageTurnRightLeft [] PROGMEM = "Turn Right Left";
|
|
||||||
const char pstrUsagePitchForwardBackward [] PROGMEM = "Pitch Fwd/Back";
|
|
||||||
const char pstrUsageRollRightLeft [] PROGMEM = "Roll Right/Left";
|
|
||||||
const char pstrUsageMoveRightLeft [] PROGMEM = "Move Right/Left";
|
|
||||||
const char pstrUsageMoveForwardBackward [] PROGMEM = "Move Fwd/Back";
|
|
||||||
const char pstrUsageMoveUpDown [] PROGMEM = "Move Up/Down";
|
|
||||||
const char pstrUsageLeanRightLeft [] PROGMEM = "Lean Right/Left";
|
|
||||||
const char pstrUsageLeanForwardBackward [] PROGMEM = "Lean Fwd/Back";
|
|
||||||
const char pstrUsageHeightOfPOV [] PROGMEM = "Height of POV";
|
|
||||||
const char pstrUsageFlipper [] PROGMEM = "Flipper";
|
|
||||||
const char pstrUsageSecondaryFlipper [] PROGMEM = "Second Flipper";
|
|
||||||
const char pstrUsageBump [] PROGMEM = "Bump";
|
|
||||||
const char pstrUsageNewGame [] PROGMEM = "New Game";
|
|
||||||
const char pstrUsageShootBall [] PROGMEM = "Shoot Ball";
|
|
||||||
const char pstrUsagePlayer [] PROGMEM = "Player";
|
|
||||||
const char pstrUsageGunBolt [] PROGMEM = "Gun Bolt";
|
|
||||||
const char pstrUsageGunClip [] PROGMEM = "Gun Clip";
|
|
||||||
const char pstrUsageGunSelector [] PROGMEM = "Gun Sel";
|
|
||||||
const char pstrUsageGunSingleShot [] PROGMEM = "Gun Sngl Shot";
|
|
||||||
const char pstrUsageGunBurst [] PROGMEM = "Gun Burst";
|
|
||||||
const char pstrUsageGunAutomatic [] PROGMEM = "Gun Auto";
|
|
||||||
const char pstrUsageGunSafety [] PROGMEM = "Gun Safety";
|
|
||||||
const char pstrUsageGamepadFireJump [] PROGMEM = "Gamepad Fire/Jump";
|
|
||||||
const char pstrUsageGamepadTrigger [] PROGMEM = "Gamepad Trig";
|
|
||||||
|
|
||||||
// Generic Device Controls Page
|
|
||||||
const char pstrUsageBatteryStrength [] PROGMEM = "Bat Strength";
|
|
||||||
const char pstrUsageWirelessChannel [] PROGMEM = "Wireless Ch";
|
|
||||||
const char pstrUsageWirelessID [] PROGMEM = "Wireless ID";
|
|
||||||
const char pstrUsageDiscoverWirelessControl [] PROGMEM = "Discover Wireless Ctrl";
|
|
||||||
const char pstrUsageSecurityCodeCharEntered [] PROGMEM = "Sec Code Char Entrd";
|
|
||||||
const char pstrUsageSecurityCodeCharErased [] PROGMEM = "Sec Code Char Erased";
|
|
||||||
const char pstrUsageSecurityCodeCleared [] PROGMEM = "Sec Code Cleared";
|
|
||||||
|
|
||||||
// LED Page
|
|
||||||
const char pstrUsageNumLock [] PROGMEM = "Num Lock";
|
|
||||||
const char pstrUsageCapsLock [] PROGMEM = "Caps Lock";
|
|
||||||
const char pstrUsageScrollLock [] PROGMEM = "Scroll Lock";
|
|
||||||
const char pstrUsageCompose [] PROGMEM = "Compose";
|
|
||||||
const char pstrUsageKana [] PROGMEM = "Kana";
|
|
||||||
const char pstrUsagePower [] PROGMEM = "Pwr";
|
|
||||||
const char pstrUsageShift [] PROGMEM = "Shift";
|
|
||||||
const char pstrUsageDoNotDisturb [] PROGMEM = "DND";
|
|
||||||
const char pstrUsageMute [] PROGMEM = "Mute";
|
|
||||||
const char pstrUsageToneEnable [] PROGMEM = "Tone Enbl";
|
|
||||||
const char pstrUsageHighCutFilter [] PROGMEM = "High Cut Fltr";
|
|
||||||
const char pstrUsageLowCutFilter [] PROGMEM = "Low Cut Fltr";
|
|
||||||
const char pstrUsageEqualizerEnable [] PROGMEM = "Eq Enbl";
|
|
||||||
const char pstrUsageSoundFieldOn [] PROGMEM = "Sound Field On";
|
|
||||||
const char pstrUsageSurroundOn [] PROGMEM = "Surround On";
|
|
||||||
const char pstrUsageRepeat [] PROGMEM = "Repeat";
|
|
||||||
const char pstrUsageStereo [] PROGMEM = "Stereo";
|
|
||||||
const char pstrUsageSamplingRateDetect [] PROGMEM = "Smpl Rate Detect";
|
|
||||||
const char pstrUsageSpinning [] PROGMEM = "Spinning";
|
|
||||||
const char pstrUsageCAV [] PROGMEM = "CAV";
|
|
||||||
const char pstrUsageCLV [] PROGMEM = "CLV";
|
|
||||||
const char pstrUsageRecordingFormatDetect [] PROGMEM = "Rec Format Detect";
|
|
||||||
const char pstrUsageOffHook [] PROGMEM = "Off Hook";
|
|
||||||
const char pstrUsageRing [] PROGMEM = "Ring";
|
|
||||||
const char pstrUsageMessageWaiting [] PROGMEM = "Msg Wait";
|
|
||||||
const char pstrUsageDataMode [] PROGMEM = "Data Mode";
|
|
||||||
const char pstrUsageBatteryOperation [] PROGMEM = "Bat Op";
|
|
||||||
const char pstrUsageBatteryOK [] PROGMEM = "Bat OK";
|
|
||||||
const char pstrUsageBatteryLow [] PROGMEM = "Bat Low";
|
|
||||||
const char pstrUsageSpeaker [] PROGMEM = "Speaker";
|
|
||||||
const char pstrUsageHeadSet [] PROGMEM = "Head Set";
|
|
||||||
const char pstrUsageHold [] PROGMEM = "Hold";
|
|
||||||
const char pstrUsageMicrophone [] PROGMEM = "Mic";
|
|
||||||
const char pstrUsageCoverage [] PROGMEM = "Coverage";
|
|
||||||
const char pstrUsageNightMode [] PROGMEM = "Night Mode";
|
|
||||||
const char pstrUsageSendCalls [] PROGMEM = "Send Calls";
|
|
||||||
const char pstrUsageCallPickup [] PROGMEM = "Call Pickup";
|
|
||||||
const char pstrUsageConference [] PROGMEM = "Conf";
|
|
||||||
const char pstrUsageStandBy [] PROGMEM = "Stand-by";
|
|
||||||
const char pstrUsageCameraOn [] PROGMEM = "Cam On";
|
|
||||||
const char pstrUsageCameraOff [] PROGMEM = "Cam Off";
|
|
||||||
const char pstrUsageOnLine [] PROGMEM = "On-Line";
|
|
||||||
const char pstrUsageOffLine [] PROGMEM = "Off-Line";
|
|
||||||
const char pstrUsageBusy [] PROGMEM = "Busy";
|
|
||||||
const char pstrUsageReady [] PROGMEM = "Ready";
|
|
||||||
const char pstrUsagePaperOut [] PROGMEM = "Paper Out";
|
|
||||||
const char pstrUsagePaperJam [] PROGMEM = "Paper Jam";
|
|
||||||
const char pstrUsageRemote [] PROGMEM = "Remote";
|
|
||||||
const char pstrUsageForward [] PROGMEM = "Fwd";
|
|
||||||
const char pstrUsageReverse [] PROGMEM = "Rev";
|
|
||||||
const char pstrUsageStop [] PROGMEM = "Stop";
|
|
||||||
const char pstrUsageRewind [] PROGMEM = "Rewind";
|
|
||||||
const char pstrUsageFastForward [] PROGMEM = "Fast Fwd";
|
|
||||||
const char pstrUsagePlay [] PROGMEM = "Play";
|
|
||||||
const char pstrUsagePause [] PROGMEM = "Pause";
|
|
||||||
const char pstrUsageRecord [] PROGMEM = "Rec";
|
|
||||||
const char pstrUsageError [] PROGMEM = "Error";
|
|
||||||
const char pstrUsageSelectedIndicator [] PROGMEM = "Usage Sel Ind";
|
|
||||||
const char pstrUsageInUseIndicator [] PROGMEM = "Usage In Use Ind";
|
|
||||||
const char pstrUsageMultiModeIndicator [] PROGMEM = "Usage Multi Mode Ind";
|
|
||||||
const char pstrUsageIndicatorOn [] PROGMEM = "Ind On";
|
|
||||||
const char pstrUsageIndicatorFlash [] PROGMEM = "Ind Flash";
|
|
||||||
const char pstrUsageIndicatorSlowBlink [] PROGMEM = "Ind Slow Blk";
|
|
||||||
const char pstrUsageIndicatorFastBlink [] PROGMEM = "Ind Fast Blk";
|
|
||||||
const char pstrUsageIndicatorOff [] PROGMEM = "Ind Off";
|
|
||||||
const char pstrUsageFlashOnTime [] PROGMEM = "Flash On Time";
|
|
||||||
const char pstrUsageSlowBlinkOnTime [] PROGMEM = "Slow Blk On Time";
|
|
||||||
const char pstrUsageSlowBlinkOffTime [] PROGMEM = "Slow Blk Off Time";
|
|
||||||
const char pstrUsageFastBlinkOnTime [] PROGMEM = "Fast Blk On Time";
|
|
||||||
const char pstrUsageFastBlinkOffTime [] PROGMEM = "Fast Blk Off Time";
|
|
||||||
const char pstrUsageIndicatorColor [] PROGMEM = "Usage Ind Color";
|
|
||||||
const char pstrUsageIndicatorRed [] PROGMEM = "Ind Red";
|
|
||||||
const char pstrUsageIndicatorGreen [] PROGMEM = "Ind Green";
|
|
||||||
const char pstrUsageIndicatorAmber [] PROGMEM = "Ind Amber";
|
|
||||||
const char pstrUsageGenericIndicator [] PROGMEM = "Gen Ind";
|
|
||||||
const char pstrUsageSystemSuspend [] PROGMEM = "Sys Suspend";
|
|
||||||
const char pstrUsageExternalPowerConnected [] PROGMEM = "Ext Pwr Conn";
|
|
||||||
|
|
||||||
// Telephony Usage Page
|
|
||||||
const char pstrUsagePhone [] PROGMEM = "Phone";
|
|
||||||
const char pstrUsageAnsweringMachine [] PROGMEM = "Answ Mach";
|
|
||||||
const char pstrUsageMessageControls [] PROGMEM = "Msg Ctrls";
|
|
||||||
const char pstrUsageHandset [] PROGMEM = "Handset";
|
|
||||||
const char pstrUsageHeadset [] PROGMEM = "Headset";
|
|
||||||
const char pstrUsageTelephonyKeyPad [] PROGMEM = "Tel Key Pad";
|
|
||||||
const char pstrUsageProgrammableButton [] PROGMEM = "Prog Button";
|
|
||||||
const char pstrUsageHookSwitch [] PROGMEM = "Hook Sw";
|
|
||||||
const char pstrUsageFlash [] PROGMEM = "Flash";
|
|
||||||
const char pstrUsageFeature [] PROGMEM = "Feature";
|
|
||||||
//const char pstrUsageHold [] PROGMEM = "Hold";
|
|
||||||
const char pstrUsageRedial [] PROGMEM = "Redial";
|
|
||||||
const char pstrUsageTransfer [] PROGMEM = "Transfer";
|
|
||||||
const char pstrUsageDrop [] PROGMEM = "Drop";
|
|
||||||
const char pstrUsagePark [] PROGMEM = "Park";
|
|
||||||
const char pstrUsageForwardCalls [] PROGMEM = "Fwd Calls";
|
|
||||||
const char pstrUsageAlternateFunction [] PROGMEM = "Alt Func";
|
|
||||||
const char pstrUsageLine [] PROGMEM = "Line";
|
|
||||||
const char pstrUsageSpeakerPhone [] PROGMEM = "Spk Phone";
|
|
||||||
//const char pstrUsageConference [] PROGMEM = "Conference";
|
|
||||||
const char pstrUsageRingEnable [] PROGMEM = "Ring Enbl";
|
|
||||||
const char pstrUsageRingSelect [] PROGMEM = "Ring Sel";
|
|
||||||
const char pstrUsagePhoneMute [] PROGMEM = "Phone Mute";
|
|
||||||
const char pstrUsageCallerID [] PROGMEM = "Caller ID";
|
|
||||||
const char pstrUsageSend [] PROGMEM = "Send";
|
|
||||||
const char pstrUsageSpeedDial [] PROGMEM = "Speed Dial";
|
|
||||||
const char pstrUsageStoreNumber [] PROGMEM = "Store Num";
|
|
||||||
const char pstrUsageRecallNumber [] PROGMEM = "Recall Num";
|
|
||||||
const char pstrUsagePhoneDirectory [] PROGMEM = "Phone Dir";
|
|
||||||
const char pstrUsageVoiceMail [] PROGMEM = "Voice Mail";
|
|
||||||
const char pstrUsageScreenCalls [] PROGMEM = "Screen Calls";
|
|
||||||
//const char pstrUsageDoNotDisturb [] PROGMEM = "Do Not Disturb";
|
|
||||||
const char pstrUsageMessage [] PROGMEM = "Msg";
|
|
||||||
const char pstrUsageAnswerOnOff [] PROGMEM = "Answer On/Off";
|
|
||||||
const char pstrUsageInsideDialTone [] PROGMEM = "Inside Dial Tone";
|
|
||||||
const char pstrUsageOutsideDialTone [] PROGMEM = "Outside Dial Tone";
|
|
||||||
const char pstrUsageInsideRingTone [] PROGMEM = "Inside Ring Tone";
|
|
||||||
const char pstrUsageOutsideRingTone [] PROGMEM = "Outside Ring Tone";
|
|
||||||
const char pstrUsagePriorityRingTone [] PROGMEM = "Prior Ring Tone";
|
|
||||||
const char pstrUsageInsideRingback [] PROGMEM = "Inside Ringback";
|
|
||||||
const char pstrUsagePriorityRingback [] PROGMEM = "Priority Ringback";
|
|
||||||
const char pstrUsageLineBusyTone [] PROGMEM = "Ln Busy Tone";
|
|
||||||
const char pstrUsageReorderTone [] PROGMEM = "Reorder Tone";
|
|
||||||
const char pstrUsageCallWaitingTone [] PROGMEM = "Call Wait Tone";
|
|
||||||
const char pstrUsageConfirmationTone1 [] PROGMEM = "Cnfrm Tone1";
|
|
||||||
const char pstrUsageConfirmationTone2 [] PROGMEM = "Cnfrm Tone2";
|
|
||||||
const char pstrUsageTonesOff [] PROGMEM = "Tones Off";
|
|
||||||
const char pstrUsageOutsideRingback [] PROGMEM = "Outside Ringback";
|
|
||||||
const char pstrUsageRinger [] PROGMEM = "Ringer";
|
|
||||||
const char pstrUsagePhoneKey0 [] PROGMEM = "0";
|
|
||||||
const char pstrUsagePhoneKey1 [] PROGMEM = "1";
|
|
||||||
const char pstrUsagePhoneKey2 [] PROGMEM = "2";
|
|
||||||
const char pstrUsagePhoneKey3 [] PROGMEM = "3";
|
|
||||||
const char pstrUsagePhoneKey4 [] PROGMEM = "4";
|
|
||||||
const char pstrUsagePhoneKey5 [] PROGMEM = "5";
|
|
||||||
const char pstrUsagePhoneKey6 [] PROGMEM = "6";
|
|
||||||
const char pstrUsagePhoneKey7 [] PROGMEM = "7";
|
|
||||||
const char pstrUsagePhoneKey8 [] PROGMEM = "8";
|
|
||||||
const char pstrUsagePhoneKey9 [] PROGMEM = "9";
|
|
||||||
const char pstrUsagePhoneKeyStar [] PROGMEM = "*";
|
|
||||||
const char pstrUsagePhoneKeyPound [] PROGMEM = "#";
|
|
||||||
const char pstrUsagePhoneKeyA [] PROGMEM = "A";
|
|
||||||
const char pstrUsagePhoneKeyB [] PROGMEM = "B";
|
|
||||||
const char pstrUsagePhoneKeyC [] PROGMEM = "C";
|
|
||||||
const char pstrUsagePhoneKeyD [] PROGMEM = "D";
|
|
||||||
|
|
||||||
// Consumer Usage Page
|
|
||||||
const char pstrUsageConsumerControl [] PROGMEM = "Consumer Ctrl";
|
|
||||||
const char pstrUsageNumericKeyPad [] PROGMEM = "Num Key Pad";
|
|
||||||
//const char pstrUsageProgrammableButton [] PROGMEM = "Prog Btn";
|
|
||||||
//const char pstrUsageMicrophone [] PROGMEM = "Mic";
|
|
||||||
const char pstrUsageHeadphone [] PROGMEM = "Headphone";
|
|
||||||
const char pstrUsageGraphicEqualizer [] PROGMEM = "Graph Eq";
|
|
||||||
const char pstrUsagePlus10 [] PROGMEM = "+10";
|
|
||||||
const char pstrUsagePlus100 [] PROGMEM = "+100";
|
|
||||||
const char pstrUsageAMPM [] PROGMEM = "AM/PM";
|
|
||||||
//const char pstrUsagePower [] PROGMEM = "Pwr";
|
|
||||||
const char pstrUsageReset [] PROGMEM = "Reset";
|
|
||||||
const char pstrUsageSleep [] PROGMEM = "Sleep";
|
|
||||||
const char pstrUsageSleepAfter [] PROGMEM = "Sleep After";
|
|
||||||
const char pstrUsageSleepMode [] PROGMEM = "Sleep Mode";
|
|
||||||
const char pstrUsageIllumination [] PROGMEM = "Illumin";
|
|
||||||
const char pstrUsageFunctionButtons [] PROGMEM = "Func Btns";
|
|
||||||
const char pstrUsageMenu [] PROGMEM = "Menu";
|
|
||||||
const char pstrUsageMenuPick [] PROGMEM = "Menu Pick";
|
|
||||||
const char pstrUsageMenuUp [] PROGMEM = "Menu Up";
|
|
||||||
const char pstrUsageMenuDown [] PROGMEM = "Menu Down";
|
|
||||||
const char pstrUsageMenuLeft [] PROGMEM = "Menu Left";
|
|
||||||
const char pstrUsageMenuRight [] PROGMEM = "Menu Right";
|
|
||||||
const char pstrUsageMenuEscape [] PROGMEM = "Menu Esc";
|
|
||||||
const char pstrUsageMenuValueIncrease [] PROGMEM = "Menu Val Inc";
|
|
||||||
const char pstrUsageMenuValueDecrease [] PROGMEM = "Menu Val Dec";
|
|
||||||
const char pstrUsageDataOnScreen [] PROGMEM = "Data On Scr";
|
|
||||||
const char pstrUsageClosedCaption [] PROGMEM = "Closed Cptn";
|
|
||||||
const char pstrUsageClosedCaptionSelect [] PROGMEM = "Closed Cptn Sel";
|
|
||||||
const char pstrUsageVCRTV [] PROGMEM = "VCR/TV";
|
|
||||||
const char pstrUsageBroadcastMode [] PROGMEM = "Brdcast Mode";
|
|
||||||
const char pstrUsageSnapshot [] PROGMEM = "Snapshot";
|
|
||||||
const char pstrUsageStill [] PROGMEM = "Still";
|
|
||||||
const char pstrUsageSelection [] PROGMEM = "Sel";
|
|
||||||
const char pstrUsageAssignSelection [] PROGMEM = "Assign Sel";
|
|
||||||
const char pstrUsageModeStep [] PROGMEM = "Mode Step";
|
|
||||||
const char pstrUsageRecallLast [] PROGMEM = "Recall Last";
|
|
||||||
const char pstrUsageEnterChannel [] PROGMEM = "Entr Channel";
|
|
||||||
const char pstrUsageOrderMovie [] PROGMEM = "Ord Movie";
|
|
||||||
const char pstrUsageChannel [] PROGMEM = "Channel";
|
|
||||||
const char pstrUsageMediaSelection [] PROGMEM = "Med Sel";
|
|
||||||
const char pstrUsageMediaSelectComputer [] PROGMEM = "Med Sel Comp";
|
|
||||||
const char pstrUsageMediaSelectTV [] PROGMEM = "Med Sel TV";
|
|
||||||
const char pstrUsageMediaSelectWWW [] PROGMEM = "Med Sel WWW";
|
|
||||||
const char pstrUsageMediaSelectDVD [] PROGMEM = "Med Sel DVD";
|
|
||||||
const char pstrUsageMediaSelectTelephone [] PROGMEM = "Med Sel Tel";
|
|
||||||
const char pstrUsageMediaSelectProgramGuide [] PROGMEM = "Med Sel PG";
|
|
||||||
const char pstrUsageMediaSelectVideoPhone [] PROGMEM = "Med Sel Vid";
|
|
||||||
const char pstrUsageMediaSelectGames [] PROGMEM = "Med Sel Games";
|
|
||||||
const char pstrUsageMediaSelectMessages [] PROGMEM = "Med Sel Msg";
|
|
||||||
const char pstrUsageMediaSelectCD [] PROGMEM = "Med Sel CD";
|
|
||||||
const char pstrUsageMediaSelectVCR [] PROGMEM = "Med Sel VCR";
|
|
||||||
const char pstrUsageMediaSelectTuner [] PROGMEM = "Med Sel Tuner";
|
|
||||||
const char pstrUsageQuit [] PROGMEM = "Quit";
|
|
||||||
const char pstrUsageHelp [] PROGMEM = "Help";
|
|
||||||
const char pstrUsageMediaSelectTape [] PROGMEM = "Med Sel Tape";
|
|
||||||
const char pstrUsageMediaSelectCable [] PROGMEM = "Med Sel Cbl";
|
|
||||||
const char pstrUsageMediaSelectSatellite [] PROGMEM = "Med Sel Sat";
|
|
||||||
const char pstrUsageMediaSelectSecurity [] PROGMEM = "Med Sel Secur";
|
|
||||||
const char pstrUsageMediaSelectHome [] PROGMEM = "Med Sel Home";
|
|
||||||
const char pstrUsageMediaSelectCall [] PROGMEM = "Med Sel Call";
|
|
||||||
const char pstrUsageChannelIncrement [] PROGMEM = "Ch Inc";
|
|
||||||
const char pstrUsageChannelDecrement [] PROGMEM = "Ch Dec";
|
|
||||||
const char pstrUsageMediaSelectSAP [] PROGMEM = "Med Sel SAP";
|
|
||||||
const char pstrUsageVCRPlus [] PROGMEM = "VCR+";
|
|
||||||
const char pstrUsageOnce [] PROGMEM = "Once";
|
|
||||||
const char pstrUsageDaily [] PROGMEM = "Daily";
|
|
||||||
const char pstrUsageWeekly [] PROGMEM = "Weekly";
|
|
||||||
const char pstrUsageMonthly [] PROGMEM = "Monthly";
|
|
||||||
//const char pstrUsagePlay [] PROGMEM = "Play";
|
|
||||||
//const char pstrUsagePause [] PROGMEM = "Pause";
|
|
||||||
//const char pstrUsageRecord [] PROGMEM = "Rec";
|
|
||||||
//const char pstrUsageFastForward [] PROGMEM = "FF";
|
|
||||||
//const char pstrUsageRewind [] PROGMEM = "Rewind";
|
|
||||||
const char pstrUsageScanNextTrack [] PROGMEM = "Next Track";
|
|
||||||
const char pstrUsageScanPreviousTrack [] PROGMEM = "Prev Track";
|
|
||||||
//const char pstrUsageStop [] PROGMEM = "Stop";
|
|
||||||
const char pstrUsageEject [] PROGMEM = "Eject";
|
|
||||||
const char pstrUsageRandomPlay [] PROGMEM = "Random";
|
|
||||||
const char pstrUsageSelectDisk [] PROGMEM = "Sel Disk";
|
|
||||||
const char pstrUsageEnterDisk [] PROGMEM = "Ent Disk";
|
|
||||||
//const char pstrUsageRepeat [] PROGMEM = "Repeat";
|
|
||||||
const char pstrUsageTracking [] PROGMEM = "Tracking";
|
|
||||||
const char pstrUsageTrackNormal [] PROGMEM = "Trk Norm";
|
|
||||||
const char pstrUsageSlowTracking [] PROGMEM = "Slow Trk";
|
|
||||||
const char pstrUsageFrameForward [] PROGMEM = "Frm Fwd";
|
|
||||||
const char pstrUsageFrameBackwards [] PROGMEM = "Frm Back";
|
|
||||||
const char pstrUsageMark [] PROGMEM = "Mark";
|
|
||||||
const char pstrUsageClearMark [] PROGMEM = "Clr Mark";
|
|
||||||
const char pstrUsageRepeatFromMark [] PROGMEM = "Rpt Mark";
|
|
||||||
const char pstrUsageReturnToMark [] PROGMEM = "Ret to Mark";
|
|
||||||
const char pstrUsageSearchMarkForward [] PROGMEM = "Search Mark Fwd";
|
|
||||||
const char pstrUsageSearchMarkBackwards [] PROGMEM = "Search Mark Back";
|
|
||||||
const char pstrUsageCounterReset [] PROGMEM = "Counter Reset";
|
|
||||||
const char pstrUsageShowCounter [] PROGMEM = "Show Counter";
|
|
||||||
const char pstrUsageTrackingIncrement [] PROGMEM = "Track Inc";
|
|
||||||
const char pstrUsageTrackingDecrement [] PROGMEM = "Track Dec";
|
|
||||||
const char pstrUsageStopEject [] PROGMEM = "Stop/Eject";
|
|
||||||
const char pstrUsagePlayPause [] PROGMEM = "Play/Pause";
|
|
||||||
const char pstrUsagePlaySkip [] PROGMEM = "Play/Skip";
|
|
||||||
const char pstrUsageVolume [] PROGMEM = "Vol";
|
|
||||||
const char pstrUsageBalance [] PROGMEM = "Balance";
|
|
||||||
//const char pstrUsageMute [] PROGMEM = "Mute";
|
|
||||||
const char pstrUsageBass [] PROGMEM = "Bass";
|
|
||||||
const char pstrUsageTreble [] PROGMEM = "Treble";
|
|
||||||
const char pstrUsageBassBoost [] PROGMEM = "Bass Boost";
|
|
||||||
const char pstrUsageSurroundMode [] PROGMEM = "Surround";
|
|
||||||
const char pstrUsageLoudness [] PROGMEM = "Loud";
|
|
||||||
const char pstrUsageMPX [] PROGMEM = "MPX";
|
|
||||||
const char pstrUsageVolumeIncrement [] PROGMEM = "Vol Inc";
|
|
||||||
const char pstrUsageVolumeDecrement [] PROGMEM = "Vol Dec";
|
|
||||||
const char pstrUsageSpeedSelect [] PROGMEM = "Speed";
|
|
||||||
const char pstrUsagePlaybackSpeed [] PROGMEM = "Play Speed";
|
|
||||||
const char pstrUsageStandardPlay [] PROGMEM = "Std Play";
|
|
||||||
const char pstrUsageLongPlay [] PROGMEM = "Long Play";
|
|
||||||
const char pstrUsageExtendedPlay [] PROGMEM = "Ext Play";
|
|
||||||
const char pstrUsageSlow [] PROGMEM = "Slow";
|
|
||||||
const char pstrUsageFanEnable [] PROGMEM = "Fan Enbl";
|
|
||||||
const char pstrUsageFanSpeed [] PROGMEM = "Fan Speed";
|
|
||||||
const char pstrUsageLightEnable [] PROGMEM = "Light Enbl";
|
|
||||||
const char pstrUsageLightIlluminationLevel [] PROGMEM = "Light Illum Lev";
|
|
||||||
const char pstrUsageClimateControlEnable [] PROGMEM = "Climate Enbl";
|
|
||||||
const char pstrUsageRoomTemperature [] PROGMEM = "Room Temp";
|
|
||||||
const char pstrUsageSecurityEnable [] PROGMEM = "Secur Enbl";
|
|
||||||
const char pstrUsageFireAlarm [] PROGMEM = "Fire Alm";
|
|
||||||
const char pstrUsagePoliceAlarm [] PROGMEM = "Police Alm";
|
|
||||||
const char pstrUsageProximity [] PROGMEM = "Prox";
|
|
||||||
const char pstrUsageMotion [] PROGMEM = "Motion";
|
|
||||||
const char pstrUsageDuresAlarm [] PROGMEM = "Dures Alm";
|
|
||||||
const char pstrUsageHoldupAlarm [] PROGMEM = "Holdup Alm";
|
|
||||||
const char pstrUsageMedicalAlarm [] PROGMEM = "Med Alm";
|
|
||||||
const char pstrUsageBalanceRight [] PROGMEM = "Balance Right";
|
|
||||||
const char pstrUsageBalanceLeft [] PROGMEM = "Balance Left";
|
|
||||||
const char pstrUsageBassIncrement [] PROGMEM = "Bass Inc";
|
|
||||||
const char pstrUsageBassDecrement [] PROGMEM = "Bass Dec";
|
|
||||||
const char pstrUsageTrebleIncrement [] PROGMEM = "Treble Inc";
|
|
||||||
const char pstrUsageTrebleDecrement [] PROGMEM = "Treble Dec";
|
|
||||||
const char pstrUsageSpeakerSystem [] PROGMEM = "Spk Sys";
|
|
||||||
const char pstrUsageChannelLeft [] PROGMEM = "Ch Left";
|
|
||||||
const char pstrUsageChannelRight [] PROGMEM = "Ch Right";
|
|
||||||
const char pstrUsageChannelCenter [] PROGMEM = "Ch Center";
|
|
||||||
const char pstrUsageChannelFront [] PROGMEM = "Ch Front";
|
|
||||||
const char pstrUsageChannelCenterFront [] PROGMEM = "Ch Cntr Front";
|
|
||||||
const char pstrUsageChannelSide [] PROGMEM = "Ch Side";
|
|
||||||
const char pstrUsageChannelSurround [] PROGMEM = "Ch Surround";
|
|
||||||
const char pstrUsageChannelLowFreqEnhancement [] PROGMEM = "Ch Low Freq Enh";
|
|
||||||
const char pstrUsageChannelTop [] PROGMEM = "Ch Top";
|
|
||||||
const char pstrUsageChannelUnknown [] PROGMEM = "Ch Unk";
|
|
||||||
const char pstrUsageSubChannel [] PROGMEM = "Sub-ch";
|
|
||||||
const char pstrUsageSubChannelIncrement [] PROGMEM = "Sub-ch Inc";
|
|
||||||
const char pstrUsageSubChannelDecrement [] PROGMEM = "Sub-ch Dec";
|
|
||||||
const char pstrUsageAlternateAudioIncrement [] PROGMEM = "Alt Aud Inc";
|
|
||||||
const char pstrUsageAlternateAudioDecrement [] PROGMEM = "Alt Aud Dec";
|
|
||||||
const char pstrUsageApplicationLaunchButtons [] PROGMEM = "App Launch Btns";
|
|
||||||
const char pstrUsageALLaunchButtonConfigTool [] PROGMEM = "AL Launch Conf Tl";
|
|
||||||
const char pstrUsageALProgrammableButton [] PROGMEM = "AL Pgm Btn";
|
|
||||||
const char pstrUsageALConsumerControlConfig [] PROGMEM = "AL Cons Ctrl Cfg";
|
|
||||||
const char pstrUsageALWordProcessor [] PROGMEM = "AL Word Proc";
|
|
||||||
const char pstrUsageALTextEditor [] PROGMEM = "AL Txt Edtr";
|
|
||||||
const char pstrUsageALSpreadsheet [] PROGMEM = "AL Sprdsheet";
|
|
||||||
const char pstrUsageALGraphicsEditor [] PROGMEM = "AL Graph Edtr";
|
|
||||||
const char pstrUsageALPresentationApp [] PROGMEM = "AL Present App";
|
|
||||||
const char pstrUsageALDatabaseApp [] PROGMEM = "AL DB App";
|
|
||||||
const char pstrUsageALEmailReader [] PROGMEM = "AL E-mail Rdr";
|
|
||||||
const char pstrUsageALNewsreader [] PROGMEM = "AL Newsrdr";
|
|
||||||
const char pstrUsageALVoicemail [] PROGMEM = "AL Voicemail";
|
|
||||||
const char pstrUsageALContactsAddressBook [] PROGMEM = "AL Addr Book";
|
|
||||||
const char pstrUsageALCalendarSchedule [] PROGMEM = "AL Clndr/Schdlr";
|
|
||||||
const char pstrUsageALTaskProjectManager [] PROGMEM = "AL Task/Prj Mgr";
|
|
||||||
const char pstrUsageALLogJournalTimecard [] PROGMEM = "AL Log/Jrnl/Tmcrd";
|
|
||||||
const char pstrUsageALCheckbookFinance [] PROGMEM = "AL Chckbook/Fin";
|
|
||||||
const char pstrUsageALCalculator [] PROGMEM = "AL Calc";
|
|
||||||
const char pstrUsageALAVCapturePlayback [] PROGMEM = "AL A/V Capt/Play";
|
|
||||||
const char pstrUsageALLocalMachineBrowser [] PROGMEM = "AL Loc Mach Brow";
|
|
||||||
const char pstrUsageALLANWANBrow [] PROGMEM = "AL LAN/WAN Brow";
|
|
||||||
const char pstrUsageALInternetBrowser [] PROGMEM = "AL I-net Brow";
|
|
||||||
const char pstrUsageALRemoteNetISPConnect [] PROGMEM = "AL Rem Net Con";
|
|
||||||
const char pstrUsageALNetworkConference [] PROGMEM = "AL Net Conf";
|
|
||||||
const char pstrUsageALNetworkChat [] PROGMEM = "AL Net Chat";
|
|
||||||
const char pstrUsageALTelephonyDialer [] PROGMEM = "AL Tel/Dial";
|
|
||||||
const char pstrUsageALLogon [] PROGMEM = "AL Logon";
|
|
||||||
const char pstrUsageALLogoff [] PROGMEM = "AL Logoff";
|
|
||||||
const char pstrUsageALLogonLogoff [] PROGMEM = "AL Logon/Logoff";
|
|
||||||
const char pstrUsageALTermLockScrSav [] PROGMEM = "AL Term Lock/Scr Sav";
|
|
||||||
const char pstrUsageALControlPannel [] PROGMEM = "AL Ctrl Pan";
|
|
||||||
const char pstrUsageALCommandLineProcessorRun [] PROGMEM = "AL Cmd/Run";
|
|
||||||
const char pstrUsageALProcessTaskManager [] PROGMEM = "AL Task Mgr";
|
|
||||||
const char pstrUsageALSelectTaskApplication [] PROGMEM = "AL Sel App";
|
|
||||||
const char pstrUsageALNextTaskApplication [] PROGMEM = "AL Next App";
|
|
||||||
const char pstrUsageALPreviousTaskApplication [] PROGMEM = "AL Prev App";
|
|
||||||
const char pstrUsageALPreemptiveHaltTaskApp [] PROGMEM = "AL Prmpt Halt App";
|
|
||||||
const char pstrUsageALIntegratedHelpCenter [] PROGMEM = "AL Hlp Cntr";
|
|
||||||
const char pstrUsageALDocuments [] PROGMEM = "AL Docs";
|
|
||||||
const char pstrUsageALThesaurus [] PROGMEM = "AL Thsrs";
|
|
||||||
const char pstrUsageALDictionary [] PROGMEM = "AL Dict";
|
|
||||||
const char pstrUsageALDesktop [] PROGMEM = "AL Desktop";
|
|
||||||
const char pstrUsageALSpellCheck [] PROGMEM = "AL Spell Chk";
|
|
||||||
const char pstrUsageALGrammarCheck [] PROGMEM = "AL Gram Chk";
|
|
||||||
const char pstrUsageALWirelessStatus [] PROGMEM = "AL Wireless Sts";
|
|
||||||
const char pstrUsageALKeyboardLayout [] PROGMEM = "AL Kbd Layout";
|
|
||||||
const char pstrUsageALVirusProtection [] PROGMEM = "AL Vir Protect";
|
|
||||||
const char pstrUsageALEncryption [] PROGMEM = "AL Encrypt";
|
|
||||||
const char pstrUsageALScreenSaver [] PROGMEM = "AL Scr Sav";
|
|
||||||
const char pstrUsageALAlarms [] PROGMEM = "AL Alarms";
|
|
||||||
const char pstrUsageALClock [] PROGMEM = "AL Clock";
|
|
||||||
const char pstrUsageALFileBrowser [] PROGMEM = "AL File Brow";
|
|
||||||
const char pstrUsageALPowerStatus [] PROGMEM = "AL Pwr Sts";
|
|
||||||
const char pstrUsageALImageBrowser [] PROGMEM = "AL Img Brow";
|
|
||||||
const char pstrUsageALAudioBrowser [] PROGMEM = "AL Aud Brow";
|
|
||||||
const char pstrUsageALMovieBrowser [] PROGMEM = "AL Mov Brow";
|
|
||||||
const char pstrUsageALDigitalRightsManager [] PROGMEM = "AL Dig Rights Mgr";
|
|
||||||
const char pstrUsageALDigitalWallet [] PROGMEM = "AL Dig Wallet";
|
|
||||||
const char pstrUsageALInstantMessaging [] PROGMEM = "AL Inst Msg";
|
|
||||||
const char pstrUsageALOEMFeaturesBrowser [] PROGMEM = "AL OEM Tips Brow";
|
|
||||||
const char pstrUsageALOEMHelp [] PROGMEM = "AL OEM Hlp";
|
|
||||||
const char pstrUsageALOnlineCommunity [] PROGMEM = "AL Online Com";
|
|
||||||
const char pstrUsageALEntertainmentContentBrow [] PROGMEM = "AL Ent Cont Brow";
|
|
||||||
const char pstrUsageALOnlineShoppingBrowser [] PROGMEM = "AL Online Shop Brow";
|
|
||||||
const char pstrUsageALSmartCardInfoHelp [] PROGMEM = "AL SmartCard Inf";
|
|
||||||
const char pstrUsageALMarketMonitorFinBrowser [] PROGMEM = "AL Market Brow";
|
|
||||||
const char pstrUsageALCustomCorpNewsBrowser [] PROGMEM = "AL Cust Corp News Brow";
|
|
||||||
const char pstrUsageALOnlineActivityBrowser [] PROGMEM = "AL Online Act Brow";
|
|
||||||
const char pstrUsageALResearchSearchBrowser [] PROGMEM = "AL Search Brow";
|
|
||||||
const char pstrUsageALAudioPlayer [] PROGMEM = "AL Aud Player";
|
|
||||||
const char pstrUsageGenericGUIAppControls [] PROGMEM = "Gen GUI App Ctrl";
|
|
||||||
const char pstrUsageACNew [] PROGMEM = "AC New";
|
|
||||||
const char pstrUsageACOpen [] PROGMEM = "AC Open";
|
|
||||||
const char pstrUsageACClose [] PROGMEM = "AC Close";
|
|
||||||
const char pstrUsageACExit [] PROGMEM = "AC Exit";
|
|
||||||
const char pstrUsageACMaximize [] PROGMEM = "AC Max";
|
|
||||||
const char pstrUsageACMinimize [] PROGMEM = "AC Min";
|
|
||||||
const char pstrUsageACSave [] PROGMEM = "AC Save";
|
|
||||||
const char pstrUsageACPrint [] PROGMEM = "AC Print";
|
|
||||||
const char pstrUsageACProperties [] PROGMEM = "AC Prop";
|
|
||||||
const char pstrUsageACUndo [] PROGMEM = "AC Undo";
|
|
||||||
const char pstrUsageACCopy [] PROGMEM = "AC Copy";
|
|
||||||
const char pstrUsageACCut [] PROGMEM = "AC Cut";
|
|
||||||
const char pstrUsageACPaste [] PROGMEM = "AC Paste";
|
|
||||||
const char pstrUsageACSelectAll [] PROGMEM = "AC Sel All";
|
|
||||||
const char pstrUsageACFind [] PROGMEM = "AC Find";
|
|
||||||
const char pstrUsageACFindAndReplace [] PROGMEM = "AC Find/Replace";
|
|
||||||
const char pstrUsageACSearch [] PROGMEM = "AC Search";
|
|
||||||
const char pstrUsageACGoto [] PROGMEM = "AC Goto";
|
|
||||||
const char pstrUsageACHome [] PROGMEM = "AC Home";
|
|
||||||
const char pstrUsageACBack [] PROGMEM = "AC Back";
|
|
||||||
const char pstrUsageACForward [] PROGMEM = "AC Fwd";
|
|
||||||
const char pstrUsageACStop [] PROGMEM = "AC Stop";
|
|
||||||
const char pstrUsageACRefresh [] PROGMEM = "AC Refresh";
|
|
||||||
const char pstrUsageACPreviousLink [] PROGMEM = "AC Prev Link";
|
|
||||||
const char pstrUsageACNextLink [] PROGMEM = "AC Next Link";
|
|
||||||
const char pstrUsageACBookmarks [] PROGMEM = "AC Bkmarks";
|
|
||||||
const char pstrUsageACHistory [] PROGMEM = "AC Hist";
|
|
||||||
const char pstrUsageACSubscriptions [] PROGMEM = "AC Subscr";
|
|
||||||
const char pstrUsageACZoomIn [] PROGMEM = "AC Zoom In";
|
|
||||||
const char pstrUsageACZoomOut [] PROGMEM = "AC Zoom Out";
|
|
||||||
const char pstrUsageACZoom [] PROGMEM = "AC Zoom";
|
|
||||||
const char pstrUsageACFullScreenView [] PROGMEM = "AC Full Scr";
|
|
||||||
const char pstrUsageACNormalView [] PROGMEM = "AC Norm View";
|
|
||||||
const char pstrUsageACViewToggle [] PROGMEM = "AC View Tgl";
|
|
||||||
const char pstrUsageACScrollUp [] PROGMEM = "AC Scroll Up";
|
|
||||||
const char pstrUsageACScrollDown [] PROGMEM = "AC Scroll Down";
|
|
||||||
const char pstrUsageACScroll [] PROGMEM = "AC Scroll";
|
|
||||||
const char pstrUsageACPanLeft [] PROGMEM = "AC Pan Left";
|
|
||||||
const char pstrUsageACPanRight [] PROGMEM = "AC Pan Right";
|
|
||||||
const char pstrUsageACPan [] PROGMEM = "AC Pan";
|
|
||||||
const char pstrUsageACNewWindow [] PROGMEM = "AC New Wnd";
|
|
||||||
const char pstrUsageACTileHoriz [] PROGMEM = "AC Tile Horiz";
|
|
||||||
const char pstrUsageACTileVert [] PROGMEM = "AC Tile Vert";
|
|
||||||
const char pstrUsageACFormat [] PROGMEM = "AC Frmt";
|
|
||||||
const char pstrUsageACEdit [] PROGMEM = "AC Edit";
|
|
||||||
const char pstrUsageACBold [] PROGMEM = "AC Bold";
|
|
||||||
const char pstrUsageACItalics [] PROGMEM = "AC Ital";
|
|
||||||
const char pstrUsageACUnderline [] PROGMEM = "AC Under";
|
|
||||||
const char pstrUsageACStrikethrough [] PROGMEM = "AC Strike";
|
|
||||||
const char pstrUsageACSubscript [] PROGMEM = "AC Sub";
|
|
||||||
const char pstrUsageACSuperscript [] PROGMEM = "AC Super";
|
|
||||||
const char pstrUsageACAllCaps [] PROGMEM = "AC All Caps";
|
|
||||||
const char pstrUsageACRotate [] PROGMEM = "AC Rotate";
|
|
||||||
const char pstrUsageACResize [] PROGMEM = "AC Resize";
|
|
||||||
const char pstrUsageACFlipHorizontal [] PROGMEM = "AC Flp H";
|
|
||||||
const char pstrUsageACFlipVertical [] PROGMEM = "AC Flp V";
|
|
||||||
const char pstrUsageACMirrorHorizontal [] PROGMEM = "AC Mir H";
|
|
||||||
const char pstrUsageACMirrorVertical [] PROGMEM = "AC Mir V";
|
|
||||||
const char pstrUsageACFontSelect [] PROGMEM = "AC Fnt Sel";
|
|
||||||
const char pstrUsageACFontColor [] PROGMEM = "AC Fnt Clr";
|
|
||||||
const char pstrUsageACFontSize [] PROGMEM = "AC Fnt Size";
|
|
||||||
const char pstrUsageACJustifyLeft [] PROGMEM = "AC Just Left";
|
|
||||||
const char pstrUsageACJustifyCenterH [] PROGMEM = "AC Just Cent H";
|
|
||||||
const char pstrUsageACJustifyRight [] PROGMEM = "AC Just Right";
|
|
||||||
const char pstrUsageACJustifyBlockH [] PROGMEM = "AC Just Block H";
|
|
||||||
const char pstrUsageACJustifyTop [] PROGMEM = "AC Just Top";
|
|
||||||
const char pstrUsageACJustifyCenterV [] PROGMEM = "AC Just Cent V";
|
|
||||||
const char pstrUsageACJustifyBottom [] PROGMEM = "AC Just Bot";
|
|
||||||
const char pstrUsageACJustifyBlockV [] PROGMEM = "AC Just Block V";
|
|
||||||
const char pstrUsageACIndentDecrease [] PROGMEM = "AC Indent Dec";
|
|
||||||
const char pstrUsageACIndentIncrease [] PROGMEM = "AC Indent Inc";
|
|
||||||
const char pstrUsageACNumberedList [] PROGMEM = "AC Num List";
|
|
||||||
const char pstrUsageACRestartNumbering [] PROGMEM = "AC Res Num";
|
|
||||||
const char pstrUsageACBulletedList [] PROGMEM = "AC Blt List";
|
|
||||||
const char pstrUsageACPromote [] PROGMEM = "AC Promote";
|
|
||||||
const char pstrUsageACDemote [] PROGMEM = "AC Demote";
|
|
||||||
const char pstrUsageACYes [] PROGMEM = "AC Yes";
|
|
||||||
const char pstrUsageACNo [] PROGMEM = "AC No";
|
|
||||||
const char pstrUsageACCancel [] PROGMEM = "AC Cancel";
|
|
||||||
const char pstrUsageACCatalog [] PROGMEM = "AC Ctlg";
|
|
||||||
const char pstrUsageACBuyChkout [] PROGMEM = "AC Buy";
|
|
||||||
const char pstrUsageACAddToCart [] PROGMEM = "AC Add2Cart";
|
|
||||||
const char pstrUsageACExpand [] PROGMEM = "AC Xpnd";
|
|
||||||
const char pstrUsageACExpandAll [] PROGMEM = "AC Xpand All";
|
|
||||||
const char pstrUsageACCollapse [] PROGMEM = "AC Collapse";
|
|
||||||
const char pstrUsageACCollapseAll [] PROGMEM = "AC Collapse All";
|
|
||||||
const char pstrUsageACPrintPreview [] PROGMEM = "AC Prn Prevw";
|
|
||||||
const char pstrUsageACPasteSpecial [] PROGMEM = "AC Paste Spec";
|
|
||||||
const char pstrUsageACInsertMode [] PROGMEM = "AC Ins Mode";
|
|
||||||
const char pstrUsageACDelete [] PROGMEM = "AC Del";
|
|
||||||
const char pstrUsageACLock [] PROGMEM = "AC Lock";
|
|
||||||
const char pstrUsageACUnlock [] PROGMEM = "AC Unlock";
|
|
||||||
const char pstrUsageACProtect [] PROGMEM = "AC Prot";
|
|
||||||
const char pstrUsageACUnprotect [] PROGMEM = "AC Unprot";
|
|
||||||
const char pstrUsageACAttachComment [] PROGMEM = "AC Attach Cmnt";
|
|
||||||
const char pstrUsageACDeleteComment [] PROGMEM = "AC Del Cmnt";
|
|
||||||
const char pstrUsageACViewComment [] PROGMEM = "AC View Cmnt";
|
|
||||||
const char pstrUsageACSelectWord [] PROGMEM = "AC Sel Word";
|
|
||||||
const char pstrUsageACSelectSentence [] PROGMEM = "AC Sel Sntc";
|
|
||||||
const char pstrUsageACSelectParagraph [] PROGMEM = "AC Sel Para";
|
|
||||||
const char pstrUsageACSelectColumn [] PROGMEM = "AC Sel Col";
|
|
||||||
const char pstrUsageACSelectRow [] PROGMEM = "AC Sel Row";
|
|
||||||
const char pstrUsageACSelectTable [] PROGMEM = "AC Sel Tbl";
|
|
||||||
const char pstrUsageACSelectObject [] PROGMEM = "AC Sel Obj";
|
|
||||||
const char pstrUsageACRedoRepeat [] PROGMEM = "AC Redo";
|
|
||||||
const char pstrUsageACSort [] PROGMEM = "AC Sort";
|
|
||||||
const char pstrUsageACSortAscending [] PROGMEM = "AC Sort Asc";
|
|
||||||
const char pstrUsageACSortDescending [] PROGMEM = "AC Sort Desc";
|
|
||||||
const char pstrUsageACFilter [] PROGMEM = "AC Filt";
|
|
||||||
const char pstrUsageACSetClock [] PROGMEM = "AC Set Clk";
|
|
||||||
const char pstrUsageACViewClock [] PROGMEM = "AC View Clk";
|
|
||||||
const char pstrUsageACSelectTimeZone [] PROGMEM = "AC Sel Time Z";
|
|
||||||
const char pstrUsageACEditTimeZone [] PROGMEM = "AC Edt Time Z";
|
|
||||||
const char pstrUsageACSetAlarm [] PROGMEM = "AC Set Alm";
|
|
||||||
const char pstrUsageACClearAlarm [] PROGMEM = "AC Clr Alm";
|
|
||||||
const char pstrUsageACSnoozeAlarm [] PROGMEM = "AC Snz Alm";
|
|
||||||
const char pstrUsageACResetAlarm [] PROGMEM = "AC Rst Alm";
|
|
||||||
const char pstrUsageACSyncronize [] PROGMEM = "AC Sync";
|
|
||||||
const char pstrUsageACSendReceive [] PROGMEM = "AC Snd/Rcv";
|
|
||||||
const char pstrUsageACSendTo [] PROGMEM = "AC Snd To";
|
|
||||||
const char pstrUsageACReply [] PROGMEM = "AC Reply";
|
|
||||||
const char pstrUsageACReplyAll [] PROGMEM = "AC Reply All";
|
|
||||||
const char pstrUsageACForwardMessage [] PROGMEM = "AC Fwd Msg";
|
|
||||||
const char pstrUsageACSend [] PROGMEM = "AC Snd";
|
|
||||||
const char pstrUsageACAttachFile [] PROGMEM = "AC Att File";
|
|
||||||
const char pstrUsageACUpload [] PROGMEM = "AC Upld";
|
|
||||||
const char pstrUsageACDownload [] PROGMEM = "AC Dnld";
|
|
||||||
const char pstrUsageACSetBorders [] PROGMEM = "AC Set Brd";
|
|
||||||
const char pstrUsageACInsertRow [] PROGMEM = "AC Ins Row";
|
|
||||||
const char pstrUsageACInsertColumn [] PROGMEM = "AC Ins Col";
|
|
||||||
const char pstrUsageACInsertFile [] PROGMEM = "AC Ins File";
|
|
||||||
const char pstrUsageACInsertPicture [] PROGMEM = "AC Ins Pic";
|
|
||||||
const char pstrUsageACInsertObject [] PROGMEM = "AC Ins Obj";
|
|
||||||
const char pstrUsageACInsertSymbol [] PROGMEM = "AC Ins Sym";
|
|
||||||
const char pstrUsageACSaveAndClose [] PROGMEM = "AC Sav&Cls";
|
|
||||||
const char pstrUsageACRename [] PROGMEM = "AC Rename";
|
|
||||||
const char pstrUsageACMerge [] PROGMEM = "AC Merge";
|
|
||||||
const char pstrUsageACSplit [] PROGMEM = "AC Split";
|
|
||||||
const char pstrUsageACDistributeHorizontaly [] PROGMEM = "AC Dist Hor";
|
|
||||||
const char pstrUsageACDistributeVerticaly [] PROGMEM = "AC Dist Ver";
|
|
||||||
|
|
||||||
// Digitaizers
|
|
||||||
const char pstrUsageDigitizer [] PROGMEM = "Digitizer";
|
|
||||||
const char pstrUsagePen [] PROGMEM = "Pen";
|
|
||||||
const char pstrUsageLightPen [] PROGMEM = "Light Pen";
|
|
||||||
const char pstrUsageTouchScreen [] PROGMEM = "Touch Scr";
|
|
||||||
const char pstrUsageTouchPad [] PROGMEM = "Touch Pad";
|
|
||||||
const char pstrUsageWhiteBoard [] PROGMEM = "White Brd";
|
|
||||||
const char pstrUsageCoordinateMeasuringMachine [] PROGMEM = "Coord Meas Mach";
|
|
||||||
const char pstrUsage3DDigitizer [] PROGMEM = "3D Dgtz";
|
|
||||||
const char pstrUsageStereoPlotter [] PROGMEM = "Stereo Plot";
|
|
||||||
const char pstrUsageArticulatedArm [] PROGMEM = "Art Arm";
|
|
||||||
const char pstrUsageArmature [] PROGMEM = "Armature";
|
|
||||||
const char pstrUsageMultiplePointDigitizer [] PROGMEM = "Multi Point Dgtz";
|
|
||||||
const char pstrUsageFreeSpaceWand [] PROGMEM = "Free Space Wand";
|
|
||||||
const char pstrUsageStylus [] PROGMEM = "Stylus";
|
|
||||||
const char pstrUsagePuck [] PROGMEM = "Puck";
|
|
||||||
const char pstrUsageFinger [] PROGMEM = "Finger";
|
|
||||||
const char pstrUsageTipPressure [] PROGMEM = "Tip Press";
|
|
||||||
const char pstrUsageBarrelPressure [] PROGMEM = "Brl Press";
|
|
||||||
const char pstrUsageInRange [] PROGMEM = "In Range";
|
|
||||||
const char pstrUsageTouch [] PROGMEM = "Touch";
|
|
||||||
const char pstrUsageUntouch [] PROGMEM = "Untouch";
|
|
||||||
const char pstrUsageTap [] PROGMEM = "Tap";
|
|
||||||
const char pstrUsageQuality [] PROGMEM = "Qlty";
|
|
||||||
const char pstrUsageDataValid [] PROGMEM = "Data Valid";
|
|
||||||
const char pstrUsageTransducerIndex [] PROGMEM = "Transducer Ind";
|
|
||||||
const char pstrUsageTabletFunctionKeys [] PROGMEM = "Tabl Func Keys";
|
|
||||||
const char pstrUsageProgramChangeKeys [] PROGMEM = "Pgm Chng Keys";
|
|
||||||
//const char pstrUsageBatteryStrength [] PROGMEM = "Bat Strength";
|
|
||||||
const char pstrUsageInvert [] PROGMEM = "Invert";
|
|
||||||
const char pstrUsageXTilt [] PROGMEM = "X Tilt";
|
|
||||||
const char pstrUsageYTilt [] PROGMEM = "Y Tilt";
|
|
||||||
const char pstrUsageAzimuth [] PROGMEM = "Azimuth";
|
|
||||||
const char pstrUsageAltitude [] PROGMEM = "Altitude";
|
|
||||||
const char pstrUsageTwist [] PROGMEM = "Twist";
|
|
||||||
const char pstrUsageTipSwitch [] PROGMEM = "Tip Sw";
|
|
||||||
const char pstrUsageSecondaryTipSwitch [] PROGMEM = "Scnd Tip Sw";
|
|
||||||
const char pstrUsageBarrelSwitch [] PROGMEM = "Brl Sw";
|
|
||||||
const char pstrUsageEraser [] PROGMEM = "Eraser";
|
|
||||||
const char pstrUsageTabletPick [] PROGMEM = "Tbl Pick";
|
|
||||||
|
|
||||||
// Alphanumeric Display Page
|
|
||||||
const char pstrUsageAlphanumericDisplay [] PROGMEM = "Alphanum Disp";
|
|
||||||
const char pstrUsageBitmappedDisplay [] PROGMEM = "Bmp Disp";
|
|
||||||
const char pstrUsageDisplayAttributesReport [] PROGMEM = "Disp Attr Rpt";
|
|
||||||
const char pstrUsageASCIICharacterSet [] PROGMEM = "ASCII chset";
|
|
||||||
const char pstrUsageDataReadBack [] PROGMEM = "Data Rd Back";
|
|
||||||
const char pstrUsageFontReadBack [] PROGMEM = "Fnt Rd Back";
|
|
||||||
const char pstrUsageDisplayControlReport [] PROGMEM = "Disp Ctrl Rpt";
|
|
||||||
const char pstrUsageClearDisplay [] PROGMEM = "Clr Disp";
|
|
||||||
//const char pstrUsageDisplayEnable [] PROGMEM = "Disp Enbl";
|
|
||||||
const char pstrUsageScreenSaverDelay [] PROGMEM = "Scr Sav Delay";
|
|
||||||
const char pstrUsageScreenSaverEnable [] PROGMEM = "Scr Sav Enbl";
|
|
||||||
const char pstrUsageVerticalScroll [] PROGMEM = "V Scroll";
|
|
||||||
const char pstrUsageHorizontalScroll [] PROGMEM = "H Scroll";
|
|
||||||
const char pstrUsageCharacterReport [] PROGMEM = "Char Rpt";
|
|
||||||
const char pstrUsageDisplayData [] PROGMEM = "Disp Data";
|
|
||||||
const char pstrUsageDisplayStatus [] PROGMEM = "Disp Stat";
|
|
||||||
const char pstrUsageStatusNotReady [] PROGMEM = "Stat !Ready";
|
|
||||||
const char pstrUsageStatusReady [] PROGMEM = "Stat Ready";
|
|
||||||
const char pstrUsageErrorNotALoadableCharacter [] PROGMEM = "Err Not Ld Char";
|
|
||||||
const char pstrUsageErrorFotDataCanNotBeRead [] PROGMEM = "Fnt Data Rd Err";
|
|
||||||
const char pstrUsageCursorPositionReport [] PROGMEM = "Cur Pos Rpt";
|
|
||||||
const char pstrUsageRow [] PROGMEM = "Row";
|
|
||||||
const char pstrUsageColumn [] PROGMEM = "Col";
|
|
||||||
const char pstrUsageRows [] PROGMEM = "Rows";
|
|
||||||
const char pstrUsageColumns [] PROGMEM = "Cols";
|
|
||||||
const char pstrUsageCursorPixelPosition [] PROGMEM = "Cur Pix Pos";
|
|
||||||
const char pstrUsageCursorMode [] PROGMEM = "Cur Mode";
|
|
||||||
const char pstrUsageCursorEnable [] PROGMEM = "Cur Enbl";
|
|
||||||
const char pstrUsageCursorBlink [] PROGMEM = "Cur Blnk";
|
|
||||||
const char pstrUsageFontReport [] PROGMEM = "Fnt Rpt";
|
|
||||||
const char pstrUsageFontData [] PROGMEM = "Fnt Data";
|
|
||||||
const char pstrUsageCharacterWidth [] PROGMEM = "Char Wdth";
|
|
||||||
const char pstrUsageCharacterHeight [] PROGMEM = "Char Hght";
|
|
||||||
const char pstrUsageCharacterSpacingHorizontal [] PROGMEM = "Char Space H";
|
|
||||||
const char pstrUsageCharacterSpacingVertical [] PROGMEM = "Char Space V";
|
|
||||||
const char pstrUsageUnicodeCharset [] PROGMEM = "Unicode Char";
|
|
||||||
const char pstrUsageFont7Segment [] PROGMEM = "Fnt 7-seg";
|
|
||||||
const char pstrUsage7SegmentDirectMap [] PROGMEM = "7-seg map";
|
|
||||||
const char pstrUsageFont14Segment [] PROGMEM = "Fnt 14-seg";
|
|
||||||
const char pstrUsage14SegmentDirectMap [] PROGMEM = "14-seg map";
|
|
||||||
const char pstrUsageDisplayBrightness [] PROGMEM = "Disp Bright";
|
|
||||||
const char pstrUsageDisplayContrast [] PROGMEM = "Disp Cntrst";
|
|
||||||
const char pstrUsageCharacterAttribute [] PROGMEM = "Char Attr";
|
|
||||||
const char pstrUsageAttributeReadback [] PROGMEM = "Attr Readbk";
|
|
||||||
const char pstrUsageAttributeData [] PROGMEM = "Attr Data";
|
|
||||||
const char pstrUsageCharAttributeEnhance [] PROGMEM = "Char Attr Enh";
|
|
||||||
const char pstrUsageCharAttributeUnderline [] PROGMEM = "Char Attr Undl";
|
|
||||||
const char pstrUsageCharAttributeBlink [] PROGMEM = "Char Attr Blnk";
|
|
||||||
const char pstrUsageBitmapSizeX [] PROGMEM = "Bmp Size X";
|
|
||||||
const char pstrUsageBitmapSizeY [] PROGMEM = "Bmp Size Y";
|
|
||||||
const char pstrUsageBitDepthFormat [] PROGMEM = "Bit Dpth Fmt";
|
|
||||||
const char pstrUsageDisplayOrientation [] PROGMEM = "Disp Ornt";
|
|
||||||
const char pstrUsagePaletteReport [] PROGMEM = "Pal Rpt";
|
|
||||||
const char pstrUsagePaletteDataSize [] PROGMEM = "Pal Data Size";
|
|
||||||
const char pstrUsagePaletteDataOffset [] PROGMEM = "Pal Data Off";
|
|
||||||
const char pstrUsagePaletteData [] PROGMEM = "Pal Data";
|
|
||||||
const char pstrUsageBlitReport [] PROGMEM = "Blit Rpt";
|
|
||||||
const char pstrUsageBlitRectangleX1 [] PROGMEM = "Blit Rect X1";
|
|
||||||
const char pstrUsageBlitRectangleY1 [] PROGMEM = "Blit Rect Y1";
|
|
||||||
const char pstrUsageBlitRectangleX2 [] PROGMEM = "Blit Rect X2";
|
|
||||||
const char pstrUsageBlitRectangleY2 [] PROGMEM = "Blit Rect Y2";
|
|
||||||
const char pstrUsageBlitData [] PROGMEM = "Blit Data";
|
|
||||||
const char pstrUsageSoftButton [] PROGMEM = "Soft Btn";
|
|
||||||
const char pstrUsageSoftButtonID [] PROGMEM = "Soft Btn ID";
|
|
||||||
const char pstrUsageSoftButtonSide [] PROGMEM = "Soft Btn Side";
|
|
||||||
const char pstrUsageSoftButtonOffset1 [] PROGMEM = "Soft Btn Off1";
|
|
||||||
const char pstrUsageSoftButtonOffset2 [] PROGMEM = "Soft Btn Off2";
|
|
||||||
const char pstrUsageSoftButtonReport [] PROGMEM = "Soft Btn Rpt";
|
|
||||||
|
|
||||||
// Medical Instrument Page
|
|
||||||
const char pstrUsageMedicalUltrasound [] PROGMEM = "Med Ultrasnd";
|
|
||||||
const char pstrUsageVCRAcquisition [] PROGMEM = "VCR/Acq";
|
|
||||||
const char pstrUsageFreezeThaw [] PROGMEM = "Freeze";
|
|
||||||
const char pstrUsageClipStore [] PROGMEM = "Clip Store";
|
|
||||||
const char pstrUsageUpdate [] PROGMEM = "Update";
|
|
||||||
const char pstrUsageNext [] PROGMEM = "Next";
|
|
||||||
const char pstrUsageSave [] PROGMEM = "Save";
|
|
||||||
const char pstrUsagePrint [] PROGMEM = "Print";
|
|
||||||
const char pstrUsageMicrophoneEnable [] PROGMEM = "Mic Enbl";
|
|
||||||
const char pstrUsageCine [] PROGMEM = "Cine";
|
|
||||||
const char pstrUsageTransmitPower [] PROGMEM = "Trans Pwr";
|
|
||||||
//const char pstrUsageVolume [] PROGMEM = "Vol";
|
|
||||||
const char pstrUsageFocus [] PROGMEM = "Focus";
|
|
||||||
const char pstrUsageDepth [] PROGMEM = "Depth";
|
|
||||||
const char pstrUsageSoftStepPrimary [] PROGMEM = "Soft Stp-Pri";
|
|
||||||
const char pstrUsageSoftStepSecondary [] PROGMEM = "Soft Stp-Sec";
|
|
||||||
const char pstrUsageDepthGainCompensation [] PROGMEM = "Dpth Gain Comp";
|
|
||||||
const char pstrUsageZoomSelect [] PROGMEM = "Zoom Sel";
|
|
||||||
const char pstrUsageZoomAdjust [] PROGMEM = "Zoom Adj";
|
|
||||||
const char pstrUsageSpectralDopplerModeSelect [] PROGMEM = "Spec Dop Mode Sel";
|
|
||||||
const char pstrUsageSpectralDopplerModeAdjust [] PROGMEM = "Spec Dop Mode Adj";
|
|
||||||
const char pstrUsageColorDopplerModeSelect [] PROGMEM = "Color Dop Mode Sel";
|
|
||||||
const char pstrUsageColorDopplerModeAdjust [] PROGMEM = "Color Dop Mode Adj";
|
|
||||||
const char pstrUsageMotionModeSelect [] PROGMEM = "Motion Mode Sel";
|
|
||||||
const char pstrUsageMotionModeAdjust [] PROGMEM = "Motion Mode Adj";
|
|
||||||
const char pstrUsage2DModeSelect [] PROGMEM = "2D Mode Sel";
|
|
||||||
const char pstrUsage2DModeAdjust [] PROGMEM = "2D Mode Adj";
|
|
||||||
const char pstrUsageSoftControlSelect [] PROGMEM = "Soft Ctrl Sel";
|
|
||||||
const char pstrUsageSoftControlAdjust [] PROGMEM = "Soft Ctrl Adj";
|
|
||||||
|
|
||||||
//extern const char *usagePageTitles0[15];
|
|
||||||
//const char *usagePageTitles1[];
|
|
||||||
//const char *genDesktopTitles0[];
|
|
||||||
//const char *genDesktopTitles1[];
|
|
||||||
//const char *genDesktopTitles2[];
|
|
||||||
//const char *genDesktopTitles3[];
|
|
||||||
//const char *genDesktopTitles4[];
|
|
||||||
//const char *simuTitles0[];
|
|
||||||
//const char *simuTitles1[];
|
|
||||||
//const char *simuTitles2[];
|
|
||||||
//const char *vrTitles0[];
|
|
||||||
//const char *vrTitles1[];
|
|
||||||
//const char *sportsCtrlTitles0[];
|
|
||||||
//const char *sportsCtrlTitles1[];
|
|
||||||
//const char *sportsCtrlTitles2[];
|
|
||||||
//const char *gameTitles0[];
|
|
||||||
//const char *gameTitles1[];
|
|
||||||
//const char *genDevCtrlTitles[];
|
|
||||||
//const char *ledTitles[];
|
|
||||||
//const char *telTitles0[];
|
|
||||||
//const char *telTitles1[];
|
|
||||||
//const char *telTitles2[];
|
|
||||||
//const char *telTitles3[];
|
|
||||||
//const char *telTitles4[];
|
|
||||||
//const char *telTitles5[];
|
|
||||||
//const char *consTitles0[];
|
|
||||||
//const char *consTitles1[];
|
|
||||||
//const char *consTitles2[];
|
|
||||||
//const char *consTitles3[];
|
|
||||||
//const char *consTitles4[];
|
|
||||||
//const char *consTitles5[];
|
|
||||||
//const char *consTitles6[];
|
|
||||||
//const char *consTitles7[];
|
|
||||||
//const char *consTitles8[];
|
|
||||||
//const char *consTitles9[];
|
|
||||||
//const char *consTitlesA[];
|
|
||||||
//const char *consTitlesB[];
|
|
||||||
//const char *consTitlesC[];
|
|
||||||
//const char *consTitlesD[];
|
|
||||||
//const char *consTitlesE[];
|
|
||||||
//const char *digitTitles0[];
|
|
||||||
//const char *digitTitles1[];
|
|
||||||
//const char *digitTitles2[];
|
|
||||||
//const char *aplphanumTitles0[];
|
|
||||||
//const char *aplphanumTitles1[];
|
|
||||||
//const char *aplphanumTitles2[];
|
|
||||||
//const char *medInstrTitles0[];
|
|
||||||
//const char *medInstrTitles1[];
|
|
||||||
//const char *medInstrTitles2[];
|
|
||||||
//const char *medInstrTitles3[];
|
|
||||||
//const char *medInstrTitles4[];
|
|
||||||
|
|
||||||
#endif //__HIDUSAGESTR_H__
|
|
File diff suppressed because it is too large
Load diff
233
keywords.txt
233
keywords.txt
|
@ -1,233 +0,0 @@
|
||||||
####################################################
|
|
||||||
# Syntax Coloring Map For PS3 Bluetooth/USB Library
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Datatypes (KEYWORD1)
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
PS3BT KEYWORD1
|
|
||||||
PS3USB KEYWORD1
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Methods and Functions (KEYWORD2)
|
|
||||||
####################################################
|
|
||||||
setBdaddr KEYWORD2
|
|
||||||
setMoveBdaddr KEYWORD2
|
|
||||||
|
|
||||||
getButtonPress KEYWORD2
|
|
||||||
getButtonClick KEYWORD2
|
|
||||||
getAnalogButton KEYWORD2
|
|
||||||
getAnalogHat KEYWORD2
|
|
||||||
getSensor KEYWORD2
|
|
||||||
getAngle KEYWORD2
|
|
||||||
get9DOFValues KEYWORD2
|
|
||||||
getStatus KEYWORD2
|
|
||||||
getStatusString KEYWORD2
|
|
||||||
getTemperature KEYWORD2
|
|
||||||
disconnect KEYWORD2
|
|
||||||
|
|
||||||
setAllOff KEYWORD2
|
|
||||||
setRumbleOff KEYWORD2
|
|
||||||
setRumbleOn KEYWORD2
|
|
||||||
setLedOff KEYWORD2
|
|
||||||
setLedOn KEYWORD2
|
|
||||||
setLedToggle KEYWORD2
|
|
||||||
moveSetBulb KEYWORD2
|
|
||||||
moveSetRumble KEYWORD2
|
|
||||||
|
|
||||||
PS3Connected KEYWORD2
|
|
||||||
PS3MoveConnected KEYWORD2
|
|
||||||
PS3NavigationConnected KEYWORD2
|
|
||||||
|
|
||||||
watingForConnection KEYWORD2
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Constants and enums (LITERAL1)
|
|
||||||
####################################################
|
|
||||||
LED1 LITERAL1
|
|
||||||
LED2 LITERAL1
|
|
||||||
LED3 LITERAL1
|
|
||||||
LED4 LITERAL1
|
|
||||||
LED5 LITERAL1
|
|
||||||
LED6 LITERAL1
|
|
||||||
LED7 LITERAL1
|
|
||||||
LED8 LITERAL1
|
|
||||||
LED9 LITERAL1
|
|
||||||
LED10 LITERAL1
|
|
||||||
|
|
||||||
Red LITERAL1
|
|
||||||
Green LITERAL1
|
|
||||||
Blue LITERAL1
|
|
||||||
Yellow LITERAL1
|
|
||||||
Lightblue LITERAL1
|
|
||||||
Purble LITERAL1
|
|
||||||
White LITERAL1
|
|
||||||
Off LITERAL1
|
|
||||||
|
|
||||||
SELECT LITERAL1
|
|
||||||
L3 LITERAL1
|
|
||||||
R3 LITERAL1
|
|
||||||
START LITERAL1
|
|
||||||
UP LITERAL1
|
|
||||||
RIGHT LITERAL1
|
|
||||||
DOWN LITERAL1
|
|
||||||
LEFT LITERAL1
|
|
||||||
L2 LITERAL1
|
|
||||||
R2 LITERAL1
|
|
||||||
L1 LITERAL1
|
|
||||||
R1 LITERAL1
|
|
||||||
TRIANGLE LITERAL1
|
|
||||||
CIRCLE LITERAL1
|
|
||||||
CROSS LITERAL1
|
|
||||||
SQUARE LITERAL1
|
|
||||||
PS LITERAL1
|
|
||||||
MOVE LITERAL1
|
|
||||||
T LITERAL1
|
|
||||||
|
|
||||||
UP_ANALOG LITERAL1
|
|
||||||
RIGHT_ANALOG LITERAL1
|
|
||||||
DOWN_ANALOG LITERAL1
|
|
||||||
LEFT_ANALOG LITERAL1
|
|
||||||
L2_ANALOG LITERAL1
|
|
||||||
R2_ANALOG LITERAL1
|
|
||||||
L1_ANALOG LITERAL1
|
|
||||||
R1_ANALOG LITERAL1
|
|
||||||
TRIANGLE_ANALOG LITERAL1
|
|
||||||
CIRCLE_ANALOG LITERAL1
|
|
||||||
CROSS_ANALOG LITERAL1
|
|
||||||
SQUARE_ANALOG LITERAL1
|
|
||||||
T_ANALOG LITERAL1
|
|
||||||
|
|
||||||
LeftHatX LITERAL1
|
|
||||||
LeftHatY LITERAL1
|
|
||||||
RightHatX LITERAL1
|
|
||||||
RightHatY LITERAL1
|
|
||||||
|
|
||||||
aX LITERAL1
|
|
||||||
aY LITERAL1
|
|
||||||
aZ LITERAL1
|
|
||||||
gZ LITERAL1
|
|
||||||
aXmove LITERAL1
|
|
||||||
aYmove LITERAL1
|
|
||||||
aZmove LITERAL1
|
|
||||||
gXmove LITERAL1
|
|
||||||
gYmove LITERAL1
|
|
||||||
gZmove LITERAL1
|
|
||||||
tempMove LITERAL1
|
|
||||||
mXmove LITERAL1
|
|
||||||
mZmove LITERAL1
|
|
||||||
mYmove LITERAL1
|
|
||||||
|
|
||||||
Pitch LITERAL1
|
|
||||||
Roll LITERAL1
|
|
||||||
|
|
||||||
Plugged LITERAL1
|
|
||||||
Unplugged LITERAL1
|
|
||||||
Charging LITERAL1
|
|
||||||
NotCharging LITERAL1
|
|
||||||
Shutdown LITERAL1
|
|
||||||
Dying LITERAL1
|
|
||||||
Low LITERAL1
|
|
||||||
High LITERAL1
|
|
||||||
Full LITERAL1
|
|
||||||
MoveCharging LITERAL1
|
|
||||||
MoveNotCharging LITERAL1
|
|
||||||
MoveShutdown LITERAL1
|
|
||||||
MoveDying LITERAL1
|
|
||||||
MoveLow LITERAL1
|
|
||||||
MoveHigh LITERAL1
|
|
||||||
MoveFull LITERAL1
|
|
||||||
CableRumble LITERAL1
|
|
||||||
Cable LITERAL1
|
|
||||||
BluetoothRumble LITERAL1
|
|
||||||
Bluetooth LITERAL1
|
|
||||||
|
|
||||||
RumbleHigh LITERAL1
|
|
||||||
RumbleLow LITERAL1
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Syntax Coloring Map For Xbox 360 Libraries
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Datatypes (KEYWORD1)
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
XBOXUSB KEYWORD1
|
|
||||||
XBOXRECV KEYWORD1
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Methods and Functions (KEYWORD2)
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
setLedRaw KEYWORD2
|
|
||||||
setLedBlink KEYWORD2
|
|
||||||
setLedMode KEYWORD2
|
|
||||||
getBatteryLevel KEYWORD2
|
|
||||||
buttonChanged KEYWORD2
|
|
||||||
|
|
||||||
XboxReceiverConnected KEYWORD2
|
|
||||||
Xbox360Connected KEYWORD2
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Constants and enums (LITERAL1)
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
ALL LITERAL1
|
|
||||||
|
|
||||||
ROTATING LITERAL1
|
|
||||||
FASTBLINK LITERAL1
|
|
||||||
SLOWBLINK LITERAL1
|
|
||||||
ALTERNATING LITERAL1
|
|
||||||
|
|
||||||
BACK LITERAL1
|
|
||||||
|
|
||||||
XBOX LITERAL1
|
|
||||||
SYNC LITERAL1
|
|
||||||
|
|
||||||
A LITERAL1
|
|
||||||
B LITERAL1
|
|
||||||
X LITERAL1
|
|
||||||
Y LITERAL1
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Syntax Coloring Map For RFCOMM/SPP Library
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Datatypes (KEYWORD1)
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
SPP KEYWORD1
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Methods and Functions (KEYWORD2)
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
connected KEYWORD2
|
|
||||||
printNumber KEYWORD2
|
|
||||||
printNumberln KEYWORD2
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Syntax Coloring Map For Wiimote Library
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Datatypes (KEYWORD1)
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
WII KEYWORD1
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
# Methods and Functions (KEYWORD2)
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
wiimoteConnected KEYWORD2
|
|
||||||
nunchuckConnected KEYWORD2
|
|
||||||
motionPlusConnected KEYWORD2
|
|
||||||
setRumbleToggle KEYWORD2
|
|
||||||
getPitch KEYWORD2
|
|
||||||
getRoll KEYWORD2
|
|
||||||
getYaw KEYWORD2
|
|
||||||
PAIR KEYWORD2
|
|
646
masstorage.cpp
646
masstorage.cpp
|
@ -1,646 +0,0 @@
|
||||||
#include "masstorage.h"
|
|
||||||
|
|
||||||
|
|
||||||
//bool BulkReadParser::IsValidCSW(uint8_t size, uint8_t *pcsw)
|
|
||||||
//{
|
|
||||||
// if (size != 0x0d)
|
|
||||||
// {
|
|
||||||
// Notify(PSTR("CSW:Size error"));
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
// if (*((uint32_t*)pcsw) != MASS_CSW_SIGNATURE)
|
|
||||||
// {
|
|
||||||
// Notify(PSTR("CSW:Sig error"));
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
// //if (size != 0x0d || *((uint32_t*)pcsw) != MASS_CSW_SIGNATURE ||
|
|
||||||
// // ((CommandStatusWrapper*)pcsw)->dCSWTag != dCBWTag)
|
|
||||||
// // return false;
|
|
||||||
// return true;
|
|
||||||
//}
|
|
||||||
|
|
||||||
//bool BulkReadParser::IsMeaningfulCSW(uint8_t size, uint8_t *pcsw)
|
|
||||||
//{
|
|
||||||
// if (((CommandStatusWrapper*)pcsw)->bCSWStatus < 2 &&
|
|
||||||
// ((CommandStatusWrapper*)pcsw)->dCSWDataResidue <= dCBWDataTransferLength )
|
|
||||||
// return true;
|
|
||||||
// if ( ((CommandStatusWrapper*)pcsw)->bCSWStatus == 2 )
|
|
||||||
// return true;
|
|
||||||
// return false;
|
|
||||||
//}
|
|
||||||
|
|
||||||
//void BulkReadParser::Parse(const uint16_t len, const uint8_t *pbuf, const uint16_t &offset)
|
|
||||||
//{
|
|
||||||
// if (offset == 0 && len > sizeof(CommandStatusWrapper))
|
|
||||||
// if (IsValidCSW(sizeof(CommandStatusWrapper), pbuf) && IsMeaningfulCSW(sizeof(CommandStatusWrapper), pbuf))
|
|
||||||
// {
|
|
||||||
// CommandStatusWrapper *pCSW = (CommandStatusWrapper*)pbuf;
|
|
||||||
//
|
|
||||||
// Serial.println("Sig:");
|
|
||||||
// PrintHex<uint32_t>(pCSW->dCSWSignature);
|
|
||||||
// Serial.println("Tag:");
|
|
||||||
// PrintHex<uint32_t>(pCSW->dCSWTag);
|
|
||||||
// Serial.println("Res:");
|
|
||||||
// PrintHex<uint32_t>(pCSW->dCSWDataResidue);
|
|
||||||
// Serial.println("Ret:");
|
|
||||||
// PrintHex<uint8_t>(pCSW->bCSWStatus);
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
|
|
||||||
const uint8_t BulkOnly::epDataInIndex = 1;
|
|
||||||
const uint8_t BulkOnly::epDataOutIndex = 2;
|
|
||||||
const uint8_t BulkOnly::epInterruptInIndex = 3;
|
|
||||||
|
|
||||||
BulkOnly::BulkOnly(USB *p /*, CDCAsyncOper *pasync*/) :
|
|
||||||
pUsb(p),
|
|
||||||
//pAsync(pasync),
|
|
||||||
bAddress(0),
|
|
||||||
qNextPollTime(0),
|
|
||||||
bPollEnable(false),
|
|
||||||
bIface(0),
|
|
||||||
bNumEP(1)
|
|
||||||
{
|
|
||||||
for(uint8_t i=0; i<MASS_MAX_ENDPOINTS; i++)
|
|
||||||
{
|
|
||||||
epInfo[i].epAddr = 0;
|
|
||||||
epInfo[i].maxPktSize = (i) ? 0 : 8;
|
|
||||||
epInfo[i].epAttribs = 0;
|
|
||||||
|
|
||||||
if (!i)
|
|
||||||
epInfo[i].bmNakPower = USB_NAK_MAX_POWER;
|
|
||||||
}
|
|
||||||
if (pUsb)
|
|
||||||
pUsb->RegisterDeviceClass(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::Init(uint8_t parent, uint8_t port, bool lowspeed)
|
|
||||||
{
|
|
||||||
const uint8_t constBufSize = sizeof(USB_DEVICE_DESCRIPTOR);
|
|
||||||
|
|
||||||
uint8_t buf[constBufSize];
|
|
||||||
uint8_t rcode;
|
|
||||||
UsbDevice *p = NULL;
|
|
||||||
EpInfo *oldep_ptr = NULL;
|
|
||||||
uint8_t num_of_conf; // number of configurations
|
|
||||||
|
|
||||||
AddressPool &addrPool = pUsb->GetAddressPool();
|
|
||||||
|
|
||||||
USBTRACE("MS Init\r\n");
|
|
||||||
|
|
||||||
if (bAddress)
|
|
||||||
return USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE;
|
|
||||||
|
|
||||||
// Get pointer to pseudo device with address 0 assigned
|
|
||||||
p = addrPool.GetUsbDevicePtr(0);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
if (!p->epinfo)
|
|
||||||
{
|
|
||||||
USBTRACE("epinfo\r\n");
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save old pointer to EP_RECORD of address 0
|
|
||||||
oldep_ptr = p->epinfo;
|
|
||||||
|
|
||||||
// Temporary assign new pointer to epInfo to p->epinfo in order to avoid toggle inconsistence
|
|
||||||
p->epinfo = epInfo;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Get device descriptor
|
|
||||||
rcode = pUsb->getDevDescr( 0, 0, constBufSize, (uint8_t*)buf );
|
|
||||||
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
if( rcode )
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
|
|
||||||
// Allocate new address according to device class
|
|
||||||
bAddress = addrPool.AllocAddress(parent, false, port);
|
|
||||||
|
|
||||||
if (!bAddress)
|
|
||||||
return USB_ERROR_OUT_OF_ADDRESS_SPACE_IN_POOL;
|
|
||||||
|
|
||||||
// Extract Max Packet Size from the device descriptor
|
|
||||||
epInfo[0].maxPktSize = (uint8_t)((USB_DEVICE_DESCRIPTOR*)buf)->bMaxPacketSize0;
|
|
||||||
|
|
||||||
// Assign new address to the device
|
|
||||||
rcode = pUsb->setAddr( 0, 0, bAddress );
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
p->lowspeed = false;
|
|
||||||
addrPool.FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
USBTRACE2("setAddr:",rcode);
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
USBTRACE2("Addr:", bAddress);
|
|
||||||
|
|
||||||
p->lowspeed = false;
|
|
||||||
|
|
||||||
p = addrPool.GetUsbDevicePtr(bAddress);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
num_of_conf = ((USB_DEVICE_DESCRIPTOR*)buf)->bNumConfigurations;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 1, epInfo);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
USBTRACE2("NC:", num_of_conf);
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<num_of_conf; i++)
|
|
||||||
{
|
|
||||||
HexDumper<USBReadParser, uint16_t, uint16_t> HexDump;
|
|
||||||
ConfigDescParser< USB_CLASS_MASS_STORAGE,
|
|
||||||
MASS_SUBCLASS_SCSI,
|
|
||||||
MASS_PROTO_BBB,
|
|
||||||
CP_MASK_COMPARE_CLASS |
|
|
||||||
CP_MASK_COMPARE_SUBCLASS |
|
|
||||||
CP_MASK_COMPARE_PROTOCOL> BulkOnlyParser(this);
|
|
||||||
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, i, &HexDump);
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, i, &BulkOnlyParser);
|
|
||||||
|
|
||||||
|
|
||||||
if (bNumEP > 1)
|
|
||||||
break;
|
|
||||||
} // for
|
|
||||||
|
|
||||||
if (bNumEP < 3)
|
|
||||||
return USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, bNumEP, epInfo);
|
|
||||||
|
|
||||||
USBTRACE2("Conf:", bConfNum);
|
|
||||||
|
|
||||||
// Set Configuration Value
|
|
||||||
rcode = pUsb->setConf(bAddress, 0, bConfNum);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetConf;
|
|
||||||
|
|
||||||
delay(5000);
|
|
||||||
|
|
||||||
//rcode = pAsync->OnInit(this);
|
|
||||||
|
|
||||||
//if (rcode)
|
|
||||||
// goto FailOnInit;
|
|
||||||
|
|
||||||
rcode = GetMaxLUN(&bMaxLUN);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailGetMaxLUN;
|
|
||||||
|
|
||||||
delay(10);
|
|
||||||
|
|
||||||
{
|
|
||||||
InquiryResponse response;
|
|
||||||
rcode = Inquiry(bMaxLUN, sizeof(InquiryResponse), (uint8_t*)&response);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailInquiry;
|
|
||||||
|
|
||||||
//if (response.DeviceType != 0)
|
|
||||||
// goto FailInvalidDevice;
|
|
||||||
}
|
|
||||||
|
|
||||||
delay(10);
|
|
||||||
|
|
||||||
USBTRACE("MS configured\r\n");
|
|
||||||
|
|
||||||
bPollEnable = true;
|
|
||||||
|
|
||||||
//USBTRACE("Poll enabled\r\n");
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
FailGetDevDescr:
|
|
||||||
USBTRACE("getDevDescr:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetDevTblEntry:
|
|
||||||
USBTRACE("setDevTblEn:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetConfDescr:
|
|
||||||
USBTRACE("getConf:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetConf:
|
|
||||||
USBTRACE("setConf:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailOnInit:
|
|
||||||
USBTRACE("OnInit:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetMaxLUN:
|
|
||||||
USBTRACE("GetMaxLUN:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailInquiry:
|
|
||||||
USBTRACE("Inquiry:");
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
Fail:
|
|
||||||
Serial.println(rcode, HEX);
|
|
||||||
Release();
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void BulkOnly::EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *pep)
|
|
||||||
{
|
|
||||||
ErrorMessage<uint8_t>(PSTR("Conf.Val"), conf);
|
|
||||||
ErrorMessage<uint8_t>(PSTR("Iface Num"),iface);
|
|
||||||
ErrorMessage<uint8_t>(PSTR("Alt.Set"), alt);
|
|
||||||
|
|
||||||
bConfNum = conf;
|
|
||||||
|
|
||||||
uint8_t index;
|
|
||||||
|
|
||||||
if ((pep->bmAttributes & 0x03) == 3 && (pep->bEndpointAddress & 0x80) == 0x80)
|
|
||||||
index = epInterruptInIndex;
|
|
||||||
else
|
|
||||||
if ((pep->bmAttributes & 0x02) == 2)
|
|
||||||
index = ((pep->bEndpointAddress & 0x80) == 0x80) ? epDataInIndex : epDataOutIndex;
|
|
||||||
else
|
|
||||||
return;
|
|
||||||
|
|
||||||
// Fill in the endpoint info structure
|
|
||||||
epInfo[index].epAddr = (pep->bEndpointAddress & 0x0F);
|
|
||||||
epInfo[index].maxPktSize = (uint8_t)pep->wMaxPacketSize;
|
|
||||||
epInfo[index].epAttribs = 0;
|
|
||||||
|
|
||||||
bNumEP ++;
|
|
||||||
|
|
||||||
PrintEndpointDescriptor(pep);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::Release()
|
|
||||||
{
|
|
||||||
pUsb->GetAddressPool().FreeAddress(bAddress);
|
|
||||||
|
|
||||||
bIface = 0;
|
|
||||||
bNumEP = 1;
|
|
||||||
|
|
||||||
bAddress = 0;
|
|
||||||
qNextPollTime = 0;
|
|
||||||
bPollEnable = false;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::Poll()
|
|
||||||
{
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
|
|
||||||
if (!bPollEnable)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
uint32_t time_now = millis();
|
|
||||||
|
|
||||||
//if (qNextPollTime <= time_now)
|
|
||||||
//{
|
|
||||||
// qNextPollTime = time_now + 100;
|
|
||||||
|
|
||||||
// uint8_t rcode;
|
|
||||||
// const uint8_t constBufSize = 16;
|
|
||||||
// uint8_t buf[constBufSize];
|
|
||||||
|
|
||||||
// for (uint8_t i=0; i<constBufSize; i++)
|
|
||||||
// buf[i] = 0;
|
|
||||||
|
|
||||||
// uint16_t read = (constBufSize > epInfo[epInterruptInIndex].maxPktSize)
|
|
||||||
// ? epInfo[epInterruptInIndex].maxPktSize : constBufSize;
|
|
||||||
// rcode = pUsb->inTransfer(bAddress, epInfo[epInterruptInIndex].epAddr, &read, buf);
|
|
||||||
|
|
||||||
// if (rcode)
|
|
||||||
// return rcode;
|
|
||||||
|
|
||||||
// for (uint8_t i=0; i<read; i++)
|
|
||||||
// {
|
|
||||||
// PrintHex<uint8_t>(buf[i]);
|
|
||||||
// Serial.print(" ");
|
|
||||||
// }
|
|
||||||
// USBTRACE("\r\n");
|
|
||||||
//}
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool BulkOnly::IsValidCBW(uint8_t size, uint8_t *pcbw)
|
|
||||||
{
|
|
||||||
if (size != 0x1f || *((uint32_t*)pcbw) != MASS_CBW_SIGNATURE)
|
|
||||||
return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool BulkOnly::IsMeaningfulCBW(uint8_t size, uint8_t *pcbw)
|
|
||||||
{
|
|
||||||
if (((CommandBlockWrapper*)pcbw)->bmReserved1 != 0 ||
|
|
||||||
((CommandBlockWrapper*)pcbw)->bmReserved2 != 0 ||
|
|
||||||
((CommandBlockWrapper*)pcbw)->bmCBWLUN > bMaxLUN ||
|
|
||||||
((CommandBlockWrapper*)pcbw)->bmCBWCBLength > 0x10 )
|
|
||||||
return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::Reset()
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_MASSOUT, MASS_REQ_BOMSR, 0, 0, bIface, 0, 0, NULL, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::GetMaxLUN(uint8_t *plun)
|
|
||||||
{
|
|
||||||
uint8_t cnt = 3;
|
|
||||||
|
|
||||||
bLastUsbError = pUsb->ctrlReq( bAddress, 0, bmREQ_MASSIN, MASS_REQ_GET_MAX_LUN, 0, 0, bIface, 1, 1, plun, NULL );
|
|
||||||
|
|
||||||
delay(10);
|
|
||||||
//Serial.println(F("bLastUsbError: "));
|
|
||||||
//Serial.println(bLastUsbError);
|
|
||||||
|
|
||||||
if (bLastUsbError == hrSTALL)
|
|
||||||
{
|
|
||||||
*plun = 0;
|
|
||||||
bLastUsbError = ClearEpHalt(epDataInIndex);
|
|
||||||
return MASS_ERR_SUCCESS;
|
|
||||||
}
|
|
||||||
if (bLastUsbError == hrJERR)
|
|
||||||
return MASS_ERR_DEVICE_DISCONNECTED;
|
|
||||||
else if (bLastUsbError)
|
|
||||||
return MASS_ERR_GENERAL_USB_ERROR;
|
|
||||||
return MASS_ERR_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::HandleUsbError(uint8_t index)
|
|
||||||
{
|
|
||||||
uint8_t count = 3;
|
|
||||||
|
|
||||||
while (bLastUsbError && count)
|
|
||||||
{
|
|
||||||
switch (bLastUsbError)
|
|
||||||
{
|
|
||||||
case hrSUCCESS:
|
|
||||||
return MASS_ERR_SUCCESS;
|
|
||||||
case hrJERR:
|
|
||||||
bLastUsbError = hrSUCCESS;
|
|
||||||
return MASS_ERR_DEVICE_DISCONNECTED;
|
|
||||||
case hrSTALL:
|
|
||||||
bLastUsbError = ClearEpHalt(index);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return MASS_ERR_GENERAL_USB_ERROR;
|
|
||||||
}
|
|
||||||
count --;
|
|
||||||
} // while
|
|
||||||
|
|
||||||
return MASS_ERR_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::ClearEpHalt(uint8_t index)
|
|
||||||
{
|
|
||||||
return (pUsb->ctrlReq( bAddress, 0, USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_STANDARD|USB_SETUP_RECIPIENT_ENDPOINT,
|
|
||||||
USB_REQUEST_CLEAR_FEATURE, USB_FEATURE_ENDPOINT_HALT, 0, epInfo[index].epAddr, 0, 0, NULL, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::ResetRecovery()
|
|
||||||
{
|
|
||||||
bLastUsbError = Reset();
|
|
||||||
|
|
||||||
if (bLastUsbError)
|
|
||||||
return bLastUsbError;
|
|
||||||
|
|
||||||
delay(6);
|
|
||||||
|
|
||||||
bLastUsbError = ClearEpHalt(epDataInIndex);
|
|
||||||
|
|
||||||
if (bLastUsbError)
|
|
||||||
return bLastUsbError;
|
|
||||||
|
|
||||||
delay(6);
|
|
||||||
|
|
||||||
bLastUsbError = ClearEpHalt(epDataOutIndex);
|
|
||||||
|
|
||||||
delay(6);
|
|
||||||
|
|
||||||
return bLastUsbError;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::Inquiry(uint8_t lun, uint16_t bsize, uint8_t *buf)
|
|
||||||
{
|
|
||||||
CommandBlockWrapper cbw;
|
|
||||||
|
|
||||||
cbw.dCBWSignature = MASS_CBW_SIGNATURE;
|
|
||||||
cbw.dCBWTag = 0xdeadbeef;
|
|
||||||
cbw.dCBWDataTransferLength = bsize;
|
|
||||||
cbw.bmCBWFlags = MASS_CMD_DIR_IN,
|
|
||||||
cbw.bmCBWLUN = lun;
|
|
||||||
cbw.bmCBWCBLength = 6;
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<16; i++)
|
|
||||||
cbw.CBWCB[i] = 0;
|
|
||||||
|
|
||||||
cbw.CBWCB[0] = SCSI_CMD_INQUIRY;
|
|
||||||
cbw.CBWCB[4] = bsize;
|
|
||||||
|
|
||||||
return Transaction(&cbw, bsize, buf, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::RequestSense(uint8_t lun, uint16_t size, uint8_t *buf)
|
|
||||||
{
|
|
||||||
CommandBlockWrapper cbw;
|
|
||||||
|
|
||||||
cbw.dCBWSignature = MASS_CBW_SIGNATURE;
|
|
||||||
cbw.dCBWTag = 0xdeadbeef;
|
|
||||||
cbw.dCBWDataTransferLength = size;
|
|
||||||
cbw.bmCBWFlags = MASS_CMD_DIR_IN,
|
|
||||||
cbw.bmCBWLUN = lun;
|
|
||||||
cbw.bmCBWCBLength = 6;
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<16; i++)
|
|
||||||
cbw.CBWCB[i] = 0;
|
|
||||||
|
|
||||||
cbw.CBWCB[0] = SCSI_CMD_REQUEST_SENSE;
|
|
||||||
cbw.CBWCB[4] = size;
|
|
||||||
|
|
||||||
return Transaction(&cbw, size, buf, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::ReadCapacity(uint8_t lun, uint16_t bsize, uint8_t *buf)
|
|
||||||
{
|
|
||||||
CommandBlockWrapper cbw;
|
|
||||||
|
|
||||||
cbw.dCBWSignature = MASS_CBW_SIGNATURE;
|
|
||||||
cbw.dCBWTag = 0xdeadbeef;
|
|
||||||
cbw.dCBWDataTransferLength = bsize;
|
|
||||||
cbw.bmCBWFlags = MASS_CMD_DIR_IN,
|
|
||||||
cbw.bmCBWLUN = lun;
|
|
||||||
cbw.bmCBWCBLength = 10;
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<16; i++)
|
|
||||||
cbw.CBWCB[i] = 0;
|
|
||||||
|
|
||||||
cbw.CBWCB[0] = SCSI_CMD_READ_CAPACITY_10;
|
|
||||||
cbw.CBWCB[4] = bsize;
|
|
||||||
|
|
||||||
return Transaction(&cbw, bsize, buf, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::TestUnitReady(uint8_t lun)
|
|
||||||
{
|
|
||||||
CommandBlockWrapper cbw;
|
|
||||||
|
|
||||||
cbw.dCBWSignature = MASS_CBW_SIGNATURE;
|
|
||||||
cbw.dCBWTag = 0xdeadbeef;
|
|
||||||
cbw.dCBWDataTransferLength = 0;
|
|
||||||
cbw.bmCBWFlags = MASS_CMD_DIR_OUT,
|
|
||||||
cbw.bmCBWLUN = lun;
|
|
||||||
cbw.bmCBWCBLength = 6;
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<16; i++)
|
|
||||||
cbw.CBWCB[i] = 0;
|
|
||||||
|
|
||||||
cbw.CBWCB[0] = SCSI_CMD_TEST_UNIT_READY;
|
|
||||||
|
|
||||||
return Transaction(&cbw, 0, NULL, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::Read(uint8_t lun, uint32_t addr, uint16_t bsize, USBReadParser *prs)
|
|
||||||
{
|
|
||||||
CommandBlockWrapper cbw;
|
|
||||||
|
|
||||||
cbw.dCBWSignature = MASS_CBW_SIGNATURE;
|
|
||||||
cbw.dCBWTag = 0xdeadbeef;
|
|
||||||
cbw.dCBWDataTransferLength = bsize;
|
|
||||||
cbw.bmCBWFlags = MASS_CMD_DIR_IN,
|
|
||||||
cbw.bmCBWLUN = lun;
|
|
||||||
cbw.bmCBWCBLength = 10;
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<16; i++)
|
|
||||||
cbw.CBWCB[i] = 0;
|
|
||||||
|
|
||||||
cbw.CBWCB[0] = SCSI_CMD_READ_10;
|
|
||||||
cbw.CBWCB[8] = 1;
|
|
||||||
cbw.CBWCB[5] = (addr & 0xff);
|
|
||||||
cbw.CBWCB[4] = ((addr >> 8) & 0xff);
|
|
||||||
cbw.CBWCB[3] = ((addr >> 16) & 0xff);
|
|
||||||
cbw.CBWCB[2] = ((addr >> 24) & 0xff);
|
|
||||||
|
|
||||||
return Transaction(&cbw, bsize, prs, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t BulkOnly::Transaction(CommandBlockWrapper *cbw, uint16_t size, void *buf, uint8_t flags)
|
|
||||||
{
|
|
||||||
uint16_t read;
|
|
||||||
{
|
|
||||||
bLastUsbError = pUsb->outTransfer(bAddress, epInfo[epDataOutIndex].epAddr, sizeof(CommandBlockWrapper), (uint8_t*)cbw);
|
|
||||||
|
|
||||||
uint8_t ret = HandleUsbError(epDataOutIndex);
|
|
||||||
|
|
||||||
if (ret)
|
|
||||||
{
|
|
||||||
ErrorMessage<uint8_t>(PSTR("CBW"), ret);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (size && buf)
|
|
||||||
{
|
|
||||||
read = size;
|
|
||||||
|
|
||||||
if (cbw->bmCBWFlags & MASS_CMD_DIR_IN)
|
|
||||||
{
|
|
||||||
if ((flags & MASS_TRANS_FLG_CALLBACK) == MASS_TRANS_FLG_CALLBACK)
|
|
||||||
{
|
|
||||||
const uint8_t bufSize = 64;
|
|
||||||
uint16_t total = size;
|
|
||||||
uint16_t count = 0;
|
|
||||||
uint8_t rbuf[bufSize];
|
|
||||||
|
|
||||||
read = bufSize;
|
|
||||||
|
|
||||||
while(count < total &&
|
|
||||||
((bLastUsbError = pUsb->inTransfer(bAddress, epInfo[epDataInIndex].epAddr, &read, (uint8_t*)rbuf)) == hrSUCCESS)
|
|
||||||
)
|
|
||||||
{
|
|
||||||
((USBReadParser*)buf)->Parse(read, rbuf, count);
|
|
||||||
|
|
||||||
count += read;
|
|
||||||
read = bufSize;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (bLastUsbError == hrSTALL)
|
|
||||||
bLastUsbError = ClearEpHalt(epDataInIndex);
|
|
||||||
|
|
||||||
if (bLastUsbError)
|
|
||||||
{
|
|
||||||
ErrorMessage<uint8_t>(PSTR("RDR"), bLastUsbError);
|
|
||||||
return MASS_ERR_GENERAL_USB_ERROR;
|
|
||||||
}
|
|
||||||
} // if ((flags & 1) == 1)
|
|
||||||
else
|
|
||||||
bLastUsbError = pUsb->inTransfer(bAddress, epInfo[epDataInIndex].epAddr, &read, (uint8_t*)buf);
|
|
||||||
} // if (cbw->bmCBWFlags & MASS_CMD_DIR_IN)
|
|
||||||
|
|
||||||
else if (cbw->bmCBWFlags & MASS_CMD_DIR_OUT)
|
|
||||||
bLastUsbError = pUsb->outTransfer(bAddress, epInfo[epDataOutIndex].epAddr, read, (uint8_t*)buf);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t ret = HandleUsbError((cbw->bmCBWFlags & MASS_CMD_DIR_IN) ? epDataInIndex : epDataOutIndex);
|
|
||||||
|
|
||||||
if (ret)
|
|
||||||
{
|
|
||||||
ErrorMessage<uint8_t>(PSTR("RSP"), ret);
|
|
||||||
return MASS_ERR_GENERAL_USB_ERROR;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
CommandStatusWrapper csw;
|
|
||||||
read = sizeof(CommandStatusWrapper);
|
|
||||||
|
|
||||||
bLastUsbError = pUsb->inTransfer(bAddress, epInfo[epDataInIndex].epAddr, &read, (uint8_t*)&csw);
|
|
||||||
|
|
||||||
uint8_t ret = HandleUsbError(epDataInIndex);
|
|
||||||
|
|
||||||
if (ret)
|
|
||||||
{
|
|
||||||
ErrorMessage<uint8_t>(PSTR("CSW"), ret);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
//if (csw.bCSWStatus == MASS_ERR_PHASE_ERROR)
|
|
||||||
// bLastUsbError = ResetRecovery();
|
|
||||||
|
|
||||||
return csw.bCSWStatus;
|
|
||||||
}
|
|
||||||
//return MASS_ERR_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
void BulkOnly::PrintEndpointDescriptor( const USB_ENDPOINT_DESCRIPTOR* ep_ptr )
|
|
||||||
{
|
|
||||||
Notify(PSTR("Endpoint descriptor:"));
|
|
||||||
Notify(PSTR("\r\nLength:\t\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bLength);
|
|
||||||
Notify(PSTR("\r\nType:\t\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bDescriptorType);
|
|
||||||
Notify(PSTR("\r\nAddress:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bEndpointAddress);
|
|
||||||
Notify(PSTR("\r\nAttributes:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bmAttributes);
|
|
||||||
Notify(PSTR("\r\nMaxPktSize:\t"));
|
|
||||||
PrintHex<uint16_t>(ep_ptr->wMaxPacketSize);
|
|
||||||
Notify(PSTR("\r\nPoll Intrv:\t"));
|
|
||||||
PrintHex<uint8_t>(ep_ptr->bInterval);
|
|
||||||
Notify(PSTR("\r\n"));
|
|
||||||
}
|
|
252
masstorage.h
252
masstorage.h
|
@ -1,252 +0,0 @@
|
||||||
#if !defined(__MASSTORAGE_H__)
|
|
||||||
#define __MASSTORAGE_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
|
|
||||||
#include "confdescparser.h"
|
|
||||||
|
|
||||||
#define SWAP(a, b) (((a) ^= (b)), ((b) ^= (a)), ((a) ^= (b)))
|
|
||||||
|
|
||||||
#define bmREQ_MASSOUT USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
|
|
||||||
#define bmREQ_MASSIN USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_INTERFACE
|
|
||||||
|
|
||||||
// Mass Storage Subclass Constants
|
|
||||||
#define MASS_SUBCLASS_SCSI_NOT_REPORTED 0x00 // De facto use
|
|
||||||
#define MASS_SUBCLASS_RBC 0x01
|
|
||||||
#define MASS_SUBCLASS_ATAPI 0x02 // MMC-5 (ATAPI)
|
|
||||||
#define MASS_SUBCLASS_OBSOLETE1 0x03 // Was QIC-157
|
|
||||||
#define MASS_SUBCLASS_UFI 0x04 // Specifies how to interface Floppy Disk Drives to USB
|
|
||||||
#define MASS_SUBCLASS_OBSOLETE2 0x05 // Was SFF-8070i
|
|
||||||
#define MASS_SUBCLASS_SCSI 0x06 // SCSI Transparent Command Set
|
|
||||||
#define MASS_SUBCLASS_LSDFS 0x07 // Specifies how host has to negotiate access before trying SCSI
|
|
||||||
#define MASS_SUBCLASS_IEEE1667 0x08
|
|
||||||
|
|
||||||
// Mass Storage Class Protocols
|
|
||||||
#define MASS_PROTO_CBI 0x00 // CBI (with command completion interrupt)
|
|
||||||
#define MASS_PROTO_CBI_NO_INT 0x01 // CBI (without command completion interrupt)
|
|
||||||
#define MASS_PROTO_OBSOLETE 0x02
|
|
||||||
#define MASS_PROTO_BBB 0x50 // Bulk Only Transport
|
|
||||||
#define MASS_PROTO_UAS 0x62
|
|
||||||
|
|
||||||
// Request Codes
|
|
||||||
#define MASS_REQ_ADSC 0x00
|
|
||||||
#define MASS_REQ_GET 0xFC
|
|
||||||
#define MASS_REQ_PUT 0xFD
|
|
||||||
#define MASS_REQ_GET_MAX_LUN 0xFE
|
|
||||||
#define MASS_REQ_BOMSR 0xFF // Bulk-Only Mass Storage Reset
|
|
||||||
|
|
||||||
#define MASS_CBW_SIGNATURE 0x43425355
|
|
||||||
#define MASS_CSW_SIGNATURE 0x53425355
|
|
||||||
|
|
||||||
#define MASS_CMD_DIR_OUT (0 << 7)
|
|
||||||
#define MASS_CMD_DIR_IN (1 << 7)
|
|
||||||
|
|
||||||
#define SCSI_CMD_INQUIRY 0x12
|
|
||||||
#define SCSI_CMD_REPORT_LUNS 0xA0
|
|
||||||
#define SCSI_CMD_REQUEST_SENSE 0x03
|
|
||||||
#define SCSI_CMD_FORMAT_UNIT 0x04
|
|
||||||
#define SCSI_CMD_READ_6 0x08
|
|
||||||
#define SCSI_CMD_READ_10 0x28
|
|
||||||
#define SCSI_CMD_READ_CAPACITY_10 0x25
|
|
||||||
#define SCSI_CMD_TEST_UNIT_READY 0x00
|
|
||||||
#define SCSI_CMD_WRITE_6 0x0A
|
|
||||||
#define SCSI_CMD_WRITE_10 0x2A
|
|
||||||
#define SCSI_CMD_MODE_SENSE_6 0x1A
|
|
||||||
#define SCSI_CMD_MODE_SENSE_10 0x5A
|
|
||||||
|
|
||||||
#define MASS_ERR_SUCCESS 0x00
|
|
||||||
#define MASS_ERR_PHASE_ERROR 0x01
|
|
||||||
#define MASS_ERR_DEVICE_DISCONNECTED 0x11
|
|
||||||
#define MASS_ERR_UNABLE_TO_RECOVER 0x12 // Reset recovery error
|
|
||||||
#define MASS_ERR_GENERAL_USB_ERROR 0xFF
|
|
||||||
|
|
||||||
#define MASS_TRANS_FLG_CALLBACK 0x01 // Callback is involved
|
|
||||||
#define MASS_TRANS_FLG_NO_STALL_CHECK 0x02 // STALL condition is not checked
|
|
||||||
#define MASS_TRANS_FLG_NO_PHASE_CHECK 0x04 // PHASE_ERROR is not checked
|
|
||||||
|
|
||||||
|
|
||||||
struct Capacity
|
|
||||||
{
|
|
||||||
uint8_t data[8];
|
|
||||||
//uint32_t dwBlockAddress;
|
|
||||||
//uint32_t dwBlockLength;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct InquiryResponse
|
|
||||||
{
|
|
||||||
uint8_t DeviceType : 5;
|
|
||||||
uint8_t PeripheralQualifier : 3;
|
|
||||||
|
|
||||||
unsigned Reserved : 7;
|
|
||||||
unsigned Removable : 1;
|
|
||||||
|
|
||||||
uint8_t Version;
|
|
||||||
|
|
||||||
unsigned ResponseDataFormat : 4;
|
|
||||||
unsigned Reserved2 : 1;
|
|
||||||
unsigned NormACA : 1;
|
|
||||||
unsigned TrmTsk : 1;
|
|
||||||
unsigned AERC : 1;
|
|
||||||
|
|
||||||
uint8_t AdditionalLength;
|
|
||||||
uint8_t Reserved3[2];
|
|
||||||
|
|
||||||
unsigned SoftReset : 1;
|
|
||||||
unsigned CmdQue : 1;
|
|
||||||
unsigned Reserved4 : 1;
|
|
||||||
unsigned Linked : 1;
|
|
||||||
unsigned Sync : 1;
|
|
||||||
unsigned WideBus16Bit : 1;
|
|
||||||
unsigned WideBus32Bit : 1;
|
|
||||||
unsigned RelAddr : 1;
|
|
||||||
|
|
||||||
uint8_t VendorID[8];
|
|
||||||
uint8_t ProductID[16];
|
|
||||||
uint8_t RevisionID[4];
|
|
||||||
};
|
|
||||||
|
|
||||||
struct CommandBlockWrapper
|
|
||||||
{
|
|
||||||
uint32_t dCBWSignature;
|
|
||||||
uint32_t dCBWTag;
|
|
||||||
uint32_t dCBWDataTransferLength;
|
|
||||||
uint8_t bmCBWFlags;
|
|
||||||
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
uint8_t bmCBWLUN : 4;
|
|
||||||
uint8_t bmReserved1 : 4;
|
|
||||||
};
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
uint8_t bmCBWCBLength : 4;
|
|
||||||
uint8_t bmReserved2 : 4;
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t CBWCB[16];
|
|
||||||
} ;
|
|
||||||
|
|
||||||
struct CommandStatusWrapper
|
|
||||||
{
|
|
||||||
uint32_t dCSWSignature;
|
|
||||||
uint32_t dCSWTag;
|
|
||||||
uint32_t dCSWDataResidue;
|
|
||||||
uint8_t bCSWStatus;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct RequestSenseResponce
|
|
||||||
{
|
|
||||||
uint8_t bResponseCode;
|
|
||||||
uint8_t bSegmentNumber;
|
|
||||||
|
|
||||||
uint8_t bmSenseKey : 4;
|
|
||||||
uint8_t bmReserved : 1;
|
|
||||||
uint8_t bmILI : 1;
|
|
||||||
uint8_t bmEOM : 1;
|
|
||||||
uint8_t bmFileMark : 1;
|
|
||||||
|
|
||||||
uint8_t Information[4];
|
|
||||||
uint8_t bAdditionalLength;
|
|
||||||
uint8_t CmdSpecificInformation[4];
|
|
||||||
uint8_t bAdditionalSenseCode;
|
|
||||||
uint8_t bAdditionalSenseQualifier;
|
|
||||||
uint8_t bFieldReplaceableUnitCode;
|
|
||||||
uint8_t SenseKeySpecific[3];
|
|
||||||
};
|
|
||||||
|
|
||||||
//class BulkReadParser : public USBReadParser
|
|
||||||
//{
|
|
||||||
//protected:
|
|
||||||
// bool IsValidCSW(uint8_t size, uint8_t *pcsw);
|
|
||||||
// bool IsMeaningfulCSW(uint8_t size, uint8_t *pcsw);
|
|
||||||
//
|
|
||||||
//public:
|
|
||||||
// virtual void Parse(const uint16_t len, const uint8_t *pbuf, const uint16_t &offset) = 0;
|
|
||||||
//};
|
|
||||||
|
|
||||||
#define MASS_MAX_ENDPOINTS 3
|
|
||||||
|
|
||||||
class BulkOnly : public USBDeviceConfig, public UsbConfigXtracter
|
|
||||||
{
|
|
||||||
protected:
|
|
||||||
static const uint8_t epDataInIndex; // DataIn endpoint index
|
|
||||||
static const uint8_t epDataOutIndex; // DataOUT endpoint index
|
|
||||||
static const uint8_t epInterruptInIndex; // InterruptIN endpoint index
|
|
||||||
|
|
||||||
USB *pUsb;
|
|
||||||
uint8_t bAddress;
|
|
||||||
uint8_t bConfNum; // configuration number
|
|
||||||
uint8_t bIface; // interface value
|
|
||||||
uint8_t bNumEP; // total number of EP in the configuration
|
|
||||||
uint32_t qNextPollTime; // next poll time
|
|
||||||
bool bPollEnable; // poll enable flag
|
|
||||||
|
|
||||||
EpInfo epInfo[MASS_MAX_ENDPOINTS];
|
|
||||||
|
|
||||||
uint32_t dCBWTag; // Tag
|
|
||||||
uint32_t dCBWDataTransferLength; // Data Transfer Length
|
|
||||||
uint8_t bMaxLUN; // Max LUN
|
|
||||||
uint8_t bLastUsbError; // Last USB error
|
|
||||||
|
|
||||||
protected:
|
|
||||||
//union TransFlags
|
|
||||||
//{
|
|
||||||
// uint8_t nValue;
|
|
||||||
|
|
||||||
// struct {
|
|
||||||
// uint8_t bmCallback : 1;
|
|
||||||
// uint8_t bmCheckPhaseErr : 1;
|
|
||||||
// uint8_t bmDummy : 6;
|
|
||||||
// };
|
|
||||||
//};
|
|
||||||
void PrintEndpointDescriptor(const USB_ENDPOINT_DESCRIPTOR* ep_ptr);
|
|
||||||
|
|
||||||
bool IsValidCBW(uint8_t size, uint8_t *pcbw);
|
|
||||||
bool IsMeaningfulCBW(uint8_t size, uint8_t *pcbw);
|
|
||||||
|
|
||||||
uint8_t ClearEpHalt(uint8_t index);
|
|
||||||
uint8_t Transaction(CommandBlockWrapper *cbw, uint16_t bsize, void *buf, uint8_t flags);
|
|
||||||
uint8_t HandleUsbError(uint8_t index);
|
|
||||||
|
|
||||||
public:
|
|
||||||
BulkOnly(USB *p);
|
|
||||||
uint8_t GetLastUsbError() { return bLastUsbError; };
|
|
||||||
|
|
||||||
uint8_t Reset();
|
|
||||||
uint8_t GetMaxLUN(uint8_t *max_lun);
|
|
||||||
|
|
||||||
uint8_t ResetRecovery();
|
|
||||||
uint8_t Inquiry(uint8_t lun, uint16_t size, uint8_t *buf);
|
|
||||||
uint8_t TestUnitReady(uint8_t lun);
|
|
||||||
uint8_t ReadCapacity(uint8_t lun, uint16_t size, uint8_t *buf);
|
|
||||||
uint8_t RequestSense(uint8_t lun, uint16_t size, uint8_t *buf);
|
|
||||||
//uint8_t Read(uint8_t lun, uint32_t addr, uint16_t bsize, uint8_t *buf);
|
|
||||||
uint8_t Read(uint8_t lun, uint32_t addr, uint16_t bsize, USBReadParser *prs);
|
|
||||||
|
|
||||||
// USBDeviceConfig implementation
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
virtual uint8_t Release();
|
|
||||||
virtual uint8_t Poll();
|
|
||||||
virtual uint8_t GetAddress() { return bAddress; };
|
|
||||||
|
|
||||||
// UsbConfigXtracter implementation
|
|
||||||
virtual void EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *ep);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // __MASSTORAGE_H__
|
|
233
max3421e.h
233
max3421e.h
|
@ -1,233 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
/* MAX3421E register/bit names and bitmasks */
|
|
||||||
|
|
||||||
#ifndef _max3421e_h_
|
|
||||||
#define _max3421e_h_
|
|
||||||
|
|
||||||
/* Arduino pin definitions */
|
|
||||||
/* pin numbers to port numbers */
|
|
||||||
|
|
||||||
|
|
||||||
//#define MAX_INT 9 // Duemielanove
|
|
||||||
|
|
||||||
//#define MAX_GPX 8
|
|
||||||
|
|
||||||
#define ON true
|
|
||||||
#define OFF false
|
|
||||||
|
|
||||||
#define SE0 0
|
|
||||||
#define SE1 1
|
|
||||||
#define FSHOST 2
|
|
||||||
#define LSHOST 3
|
|
||||||
|
|
||||||
/* MAX3421E command byte format: rrrrr0wa where 'r' is register number */
|
|
||||||
//
|
|
||||||
// MAX3421E Registers in HOST mode.
|
|
||||||
//
|
|
||||||
#define rRCVFIFO 0x08 //1<<3
|
|
||||||
#define rSNDFIFO 0x10 //2<<3
|
|
||||||
#define rSUDFIFO 0x20 //4<<3
|
|
||||||
#define rRCVBC 0x30 //6<<3
|
|
||||||
#define rSNDBC 0x38 //7<<3
|
|
||||||
|
|
||||||
#define rUSBIRQ 0x68 //13<<3
|
|
||||||
/* USBIRQ Bits */
|
|
||||||
#define bmVBUSIRQ 0x40 //b6
|
|
||||||
#define bmNOVBUSIRQ 0x20 //b5
|
|
||||||
#define bmOSCOKIRQ 0x01 //b0
|
|
||||||
|
|
||||||
#define rUSBIEN 0x70 //14<<3
|
|
||||||
/* USBIEN Bits */
|
|
||||||
#define bmVBUSIE 0x40 //b6
|
|
||||||
#define bmNOVBUSIE 0x20 //b5
|
|
||||||
#define bmOSCOKIE 0x01 //b0
|
|
||||||
|
|
||||||
#define rUSBCTL 0x78 //15<<3
|
|
||||||
/* USBCTL Bits */
|
|
||||||
#define bmCHIPRES 0x20 //b5
|
|
||||||
#define bmPWRDOWN 0x10 //b4
|
|
||||||
|
|
||||||
#define rCPUCTL 0x80 //16<<3
|
|
||||||
/* CPUCTL Bits */
|
|
||||||
#define bmPUSLEWID1 0x80 //b7
|
|
||||||
#define bmPULSEWID0 0x40 //b6
|
|
||||||
#define bmIE 0x01 //b0
|
|
||||||
|
|
||||||
#define rPINCTL 0x88 //17<<3
|
|
||||||
/* PINCTL Bits */
|
|
||||||
#define bmFDUPSPI 0x10 //b4
|
|
||||||
#define bmINTLEVEL 0x08 //b3
|
|
||||||
#define bmPOSINT 0x04 //b2
|
|
||||||
#define bmGPXB 0x02 //b1
|
|
||||||
#define bmGPXA 0x01 //b0
|
|
||||||
// GPX pin selections
|
|
||||||
#define GPX_OPERATE 0x00
|
|
||||||
#define GPX_VBDET 0x01
|
|
||||||
#define GPX_BUSACT 0x02
|
|
||||||
#define GPX_SOF 0x03
|
|
||||||
|
|
||||||
#define rREVISION 0x90 //18<<3
|
|
||||||
|
|
||||||
#define rIOPINS1 0xa0 //20<<3
|
|
||||||
|
|
||||||
/* IOPINS1 Bits */
|
|
||||||
#define bmGPOUT0 0x01
|
|
||||||
#define bmGPOUT1 0x02
|
|
||||||
#define bmGPOUT2 0x04
|
|
||||||
#define bmGPOUT3 0x08
|
|
||||||
#define bmGPIN0 0x10
|
|
||||||
#define bmGPIN1 0x20
|
|
||||||
#define bmGPIN2 0x40
|
|
||||||
#define bmGPIN3 0x80
|
|
||||||
|
|
||||||
#define rIOPINS2 0xa8 //21<<3
|
|
||||||
/* IOPINS2 Bits */
|
|
||||||
#define bmGPOUT4 0x01
|
|
||||||
#define bmGPOUT5 0x02
|
|
||||||
#define bmGPOUT6 0x04
|
|
||||||
#define bmGPOUT7 0x08
|
|
||||||
#define bmGPIN4 0x10
|
|
||||||
#define bmGPIN5 0x20
|
|
||||||
#define bmGPIN6 0x40
|
|
||||||
#define bmGPIN7 0x80
|
|
||||||
|
|
||||||
#define rGPINIRQ 0xb0 //22<<3
|
|
||||||
/* GPINIRQ Bits */
|
|
||||||
#define bmGPINIRQ0 0x01
|
|
||||||
#define bmGPINIRQ1 0x02
|
|
||||||
#define bmGPINIRQ2 0x04
|
|
||||||
#define bmGPINIRQ3 0x08
|
|
||||||
#define bmGPINIRQ4 0x10
|
|
||||||
#define bmGPINIRQ5 0x20
|
|
||||||
#define bmGPINIRQ6 0x40
|
|
||||||
#define bmGPINIRQ7 0x80
|
|
||||||
|
|
||||||
#define rGPINIEN 0xb8 //23<<3
|
|
||||||
/* GPINIEN Bits */
|
|
||||||
#define bmGPINIEN0 0x01
|
|
||||||
#define bmGPINIEN1 0x02
|
|
||||||
#define bmGPINIEN2 0x04
|
|
||||||
#define bmGPINIEN3 0x08
|
|
||||||
#define bmGPINIEN4 0x10
|
|
||||||
#define bmGPINIEN5 0x20
|
|
||||||
#define bmGPINIEN6 0x40
|
|
||||||
#define bmGPINIEN7 0x80
|
|
||||||
|
|
||||||
#define rGPINPOL 0xc0 //24<<3
|
|
||||||
/* GPINPOL Bits */
|
|
||||||
#define bmGPINPOL0 0x01
|
|
||||||
#define bmGPINPOL1 0x02
|
|
||||||
#define bmGPINPOL2 0x04
|
|
||||||
#define bmGPINPOL3 0x08
|
|
||||||
#define bmGPINPOL4 0x10
|
|
||||||
#define bmGPINPOL5 0x20
|
|
||||||
#define bmGPINPOL6 0x40
|
|
||||||
#define bmGPINPOL7 0x80
|
|
||||||
|
|
||||||
#define rHIRQ 0xc8 //25<<3
|
|
||||||
/* HIRQ Bits */
|
|
||||||
#define bmBUSEVENTIRQ 0x01 // indicates BUS Reset Done or BUS Resume
|
|
||||||
#define bmRWUIRQ 0x02
|
|
||||||
#define bmRCVDAVIRQ 0x04
|
|
||||||
#define bmSNDBAVIRQ 0x08
|
|
||||||
#define bmSUSDNIRQ 0x10
|
|
||||||
#define bmCONDETIRQ 0x20
|
|
||||||
#define bmFRAMEIRQ 0x40
|
|
||||||
#define bmHXFRDNIRQ 0x80
|
|
||||||
|
|
||||||
#define rHIEN 0xd0 //26<<3
|
|
||||||
|
|
||||||
/* HIEN Bits */
|
|
||||||
#define bmBUSEVENTIE 0x01
|
|
||||||
#define bmRWUIE 0x02
|
|
||||||
#define bmRCVDAVIE 0x04
|
|
||||||
#define bmSNDBAVIE 0x08
|
|
||||||
#define bmSUSDNIE 0x10
|
|
||||||
#define bmCONDETIE 0x20
|
|
||||||
#define bmFRAMEIE 0x40
|
|
||||||
#define bmHXFRDNIE 0x80
|
|
||||||
|
|
||||||
#define rMODE 0xd8 //27<<3
|
|
||||||
|
|
||||||
/* MODE Bits */
|
|
||||||
#define bmHOST 0x01
|
|
||||||
#define bmLOWSPEED 0x02
|
|
||||||
#define bmHUBPRE 0x04
|
|
||||||
#define bmSOFKAENAB 0x08
|
|
||||||
#define bmSEPIRQ 0x10
|
|
||||||
#define bmDELAYISO 0x20
|
|
||||||
#define bmDMPULLDN 0x40
|
|
||||||
#define bmDPPULLDN 0x80
|
|
||||||
|
|
||||||
#define rPERADDR 0xe0 //28<<3
|
|
||||||
|
|
||||||
#define rHCTL 0xe8 //29<<3
|
|
||||||
/* HCTL Bits */
|
|
||||||
#define bmBUSRST 0x01
|
|
||||||
#define bmFRMRST 0x02
|
|
||||||
#define bmSAMPLEBUS 0x04
|
|
||||||
#define bmSIGRSM 0x08
|
|
||||||
#define bmRCVTOG0 0x10
|
|
||||||
#define bmRCVTOG1 0x20
|
|
||||||
#define bmSNDTOG0 0x40
|
|
||||||
#define bmSNDTOG1 0x80
|
|
||||||
|
|
||||||
#define rHXFR 0xf0 //30<<3
|
|
||||||
/* Host transfer token values for writing the HXFR register (R30) */
|
|
||||||
/* OR this bit field with the endpoint number in bits 3:0 */
|
|
||||||
#define tokSETUP 0x10 // HS=0, ISO=0, OUTNIN=0, SETUP=1
|
|
||||||
#define tokIN 0x00 // HS=0, ISO=0, OUTNIN=0, SETUP=0
|
|
||||||
#define tokOUT 0x20 // HS=0, ISO=0, OUTNIN=1, SETUP=0
|
|
||||||
#define tokINHS 0x80 // HS=1, ISO=0, OUTNIN=0, SETUP=0
|
|
||||||
#define tokOUTHS 0xA0 // HS=1, ISO=0, OUTNIN=1, SETUP=0
|
|
||||||
#define tokISOIN 0x40 // HS=0, ISO=1, OUTNIN=0, SETUP=0
|
|
||||||
#define tokISOOUT 0x60 // HS=0, ISO=1, OUTNIN=1, SETUP=0
|
|
||||||
|
|
||||||
#define rHRSL 0xf8 //31<<3
|
|
||||||
|
|
||||||
/* HRSL Bits */
|
|
||||||
#define bmRCVTOGRD 0x10
|
|
||||||
#define bmSNDTOGRD 0x20
|
|
||||||
#define bmKSTATUS 0x40
|
|
||||||
#define bmJSTATUS 0x80
|
|
||||||
#define bmSE0 0x00 //SE0 - disconnect state
|
|
||||||
#define bmSE1 0xc0 //SE1 - illegal state
|
|
||||||
|
|
||||||
/* Host error result codes, the 4 LSB's in the HRSL register */
|
|
||||||
#define hrSUCCESS 0x00
|
|
||||||
#define hrBUSY 0x01
|
|
||||||
#define hrBADREQ 0x02
|
|
||||||
#define hrUNDEF 0x03
|
|
||||||
#define hrNAK 0x04
|
|
||||||
#define hrSTALL 0x05
|
|
||||||
#define hrTOGERR 0x06
|
|
||||||
#define hrWRONGPID 0x07
|
|
||||||
#define hrBADBC 0x08
|
|
||||||
#define hrPIDERR 0x09
|
|
||||||
#define hrPKTERR 0x0A
|
|
||||||
#define hrCRCERR 0x0B
|
|
||||||
#define hrKERR 0x0C
|
|
||||||
#define hrJERR 0x0D
|
|
||||||
#define hrTIMEOUT 0x0E
|
|
||||||
#define hrBABBLE 0x0F
|
|
||||||
|
|
||||||
#define MODE_FS_HOST (bmDPPULLDN|bmDMPULLDN|bmHOST|bmSOFKAENAB)
|
|
||||||
#define MODE_LS_HOST (bmDPPULLDN|bmDMPULLDN|bmHOST|bmLOWSPEED|bmSOFKAENAB)
|
|
||||||
|
|
||||||
|
|
||||||
#endif //_max3421e_h_
|
|
250
max_LCD.cpp
250
max_LCD.cpp
|
@ -1,250 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#include "max_LCD.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// pin definition and set/clear
|
|
||||||
|
|
||||||
#define RS 0x04 // RS pin
|
|
||||||
#define E 0x08 // E pin
|
|
||||||
|
|
||||||
#define SET_RS lcdPins |= RS
|
|
||||||
#define CLR_RS lcdPins &= ~RS
|
|
||||||
#define SET_E lcdPins |= E
|
|
||||||
#define CLR_E lcdPins &= ~E
|
|
||||||
|
|
||||||
#define SENDlcdPins() pUsb->gpioWr( lcdPins )
|
|
||||||
|
|
||||||
#define LCD_sendcmd(a) { CLR_RS; \
|
|
||||||
sendbyte(a); \
|
|
||||||
}
|
|
||||||
|
|
||||||
#define LCD_sendchar(a) { SET_RS; \
|
|
||||||
sendbyte(a); \
|
|
||||||
}
|
|
||||||
|
|
||||||
static byte lcdPins; //copy of LCD pins
|
|
||||||
|
|
||||||
Max_LCD::Max_LCD(USB *pusb) : pUsb(pusb)
|
|
||||||
{
|
|
||||||
lcdPins = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void Max_LCD::init()
|
|
||||||
{
|
|
||||||
_displayfunction = LCD_4BITMODE | LCD_1LINE | LCD_5x8DOTS;
|
|
||||||
|
|
||||||
// MAX3421E::gpioWr(0x55);
|
|
||||||
|
|
||||||
begin(16, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
void Max_LCD::begin(uint8_t cols, uint8_t lines, uint8_t dotsize) {
|
|
||||||
if (lines > 1) {
|
|
||||||
_displayfunction |= LCD_2LINE;
|
|
||||||
}
|
|
||||||
_numlines = lines;
|
|
||||||
_currline = 0;
|
|
||||||
|
|
||||||
// for some 1 line displays you can select a 10 pixel high font
|
|
||||||
if ((dotsize != 0) && (lines == 1)) {
|
|
||||||
_displayfunction |= LCD_5x10DOTS;
|
|
||||||
}
|
|
||||||
|
|
||||||
// SEE PAGE 45/46 FOR INITIALIZATION SPECIFICATION!
|
|
||||||
// according to datasheet, we need at least 40ms after power rises above 2.7V
|
|
||||||
// before sending commands. Arduino can turn on way befer 4.5V so we'll wait 50
|
|
||||||
delayMicroseconds(50000);
|
|
||||||
lcdPins = 0x30;
|
|
||||||
SET_E;
|
|
||||||
SENDlcdPins();
|
|
||||||
CLR_E;
|
|
||||||
SENDlcdPins();
|
|
||||||
delayMicroseconds(10000); // wait min 4.1ms
|
|
||||||
//second try
|
|
||||||
SET_E;
|
|
||||||
SENDlcdPins();
|
|
||||||
CLR_E;
|
|
||||||
SENDlcdPins();
|
|
||||||
delayMicroseconds(10000); // wait min 4.1ms
|
|
||||||
// third go!
|
|
||||||
SET_E;
|
|
||||||
SENDlcdPins();
|
|
||||||
CLR_E;
|
|
||||||
SENDlcdPins();
|
|
||||||
delayMicroseconds(10000);
|
|
||||||
// finally, set to 4-bit interface
|
|
||||||
lcdPins = 0x20;
|
|
||||||
//SET_RS;
|
|
||||||
SET_E;
|
|
||||||
SENDlcdPins();
|
|
||||||
//CLR_RS;
|
|
||||||
CLR_E;
|
|
||||||
SENDlcdPins();
|
|
||||||
delayMicroseconds(10000);
|
|
||||||
// finally, set # lines, font size, etc.
|
|
||||||
command(LCD_FUNCTIONSET | _displayfunction);
|
|
||||||
|
|
||||||
// turn the display on with no cursor or blinking default
|
|
||||||
_displaycontrol = LCD_DISPLAYON | LCD_CURSOROFF | LCD_BLINKOFF;
|
|
||||||
display();
|
|
||||||
|
|
||||||
// clear it off
|
|
||||||
clear();
|
|
||||||
|
|
||||||
// Initialize to default text direction (for romance languages)
|
|
||||||
_displaymode = LCD_ENTRYLEFT | LCD_ENTRYSHIFTDECREMENT;
|
|
||||||
// set the entry mode
|
|
||||||
command(LCD_ENTRYMODESET | _displaymode);
|
|
||||||
}
|
|
||||||
|
|
||||||
/********** high level commands, for the user! */
|
|
||||||
void Max_LCD::clear()
|
|
||||||
{
|
|
||||||
command(LCD_CLEARDISPLAY); // clear display, set cursor position to zero
|
|
||||||
delayMicroseconds(2000); // this command takes a long time!
|
|
||||||
}
|
|
||||||
|
|
||||||
void Max_LCD::home()
|
|
||||||
{
|
|
||||||
command(LCD_RETURNHOME); // set cursor position to zero
|
|
||||||
delayMicroseconds(2000); // this command takes a long time!
|
|
||||||
}
|
|
||||||
|
|
||||||
void Max_LCD::setCursor(uint8_t col, uint8_t row)
|
|
||||||
{
|
|
||||||
int row_offsets[] = { 0x00, 0x40, 0x14, 0x54 };
|
|
||||||
if ( row > _numlines ) {
|
|
||||||
row = _numlines-1; // we count rows starting w/0
|
|
||||||
}
|
|
||||||
|
|
||||||
command(LCD_SETDDRAMADDR | (col + row_offsets[row]));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Turn the display on/off (quickly)
|
|
||||||
void Max_LCD::noDisplay() {
|
|
||||||
_displaycontrol &= ~LCD_DISPLAYON;
|
|
||||||
command(LCD_DISPLAYCONTROL | _displaycontrol);
|
|
||||||
}
|
|
||||||
void Max_LCD::display() {
|
|
||||||
_displaycontrol |= LCD_DISPLAYON;
|
|
||||||
command(LCD_DISPLAYCONTROL | _displaycontrol);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Turns the underline cursor on/off
|
|
||||||
void Max_LCD::noCursor() {
|
|
||||||
_displaycontrol &= ~LCD_CURSORON;
|
|
||||||
command(LCD_DISPLAYCONTROL | _displaycontrol);
|
|
||||||
}
|
|
||||||
void Max_LCD::cursor() {
|
|
||||||
_displaycontrol |= LCD_CURSORON;
|
|
||||||
command(LCD_DISPLAYCONTROL | _displaycontrol);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Turn on and off the blinking cursor
|
|
||||||
void Max_LCD::noBlink() {
|
|
||||||
_displaycontrol &= ~LCD_BLINKON;
|
|
||||||
command(LCD_DISPLAYCONTROL | _displaycontrol);
|
|
||||||
}
|
|
||||||
void Max_LCD::blink() {
|
|
||||||
_displaycontrol |= LCD_BLINKON;
|
|
||||||
command(LCD_DISPLAYCONTROL | _displaycontrol);
|
|
||||||
}
|
|
||||||
|
|
||||||
// These commands scroll the display without changing the RAM
|
|
||||||
void Max_LCD::scrollDisplayLeft(void) {
|
|
||||||
command(LCD_CURSORSHIFT | LCD_DISPLAYMOVE | LCD_MOVELEFT);
|
|
||||||
}
|
|
||||||
void Max_LCD::scrollDisplayRight(void) {
|
|
||||||
command(LCD_CURSORSHIFT | LCD_DISPLAYMOVE | LCD_MOVERIGHT);
|
|
||||||
}
|
|
||||||
|
|
||||||
// This is for text that flows Left to Right
|
|
||||||
void Max_LCD::leftToRight(void) {
|
|
||||||
_displaymode |= LCD_ENTRYLEFT;
|
|
||||||
command(LCD_ENTRYMODESET | _displaymode);
|
|
||||||
}
|
|
||||||
|
|
||||||
// This is for text that flows Right to Left
|
|
||||||
void Max_LCD::rightToLeft(void) {
|
|
||||||
_displaymode &= ~LCD_ENTRYLEFT;
|
|
||||||
command(LCD_ENTRYMODESET | _displaymode);
|
|
||||||
}
|
|
||||||
|
|
||||||
// This will 'right justify' text from the cursor
|
|
||||||
void Max_LCD::autoscroll(void) {
|
|
||||||
_displaymode |= LCD_ENTRYSHIFTINCREMENT;
|
|
||||||
command(LCD_ENTRYMODESET | _displaymode);
|
|
||||||
}
|
|
||||||
|
|
||||||
// This will 'left justify' text from the cursor
|
|
||||||
void Max_LCD::noAutoscroll(void) {
|
|
||||||
_displaymode &= ~LCD_ENTRYSHIFTINCREMENT;
|
|
||||||
command(LCD_ENTRYMODESET | _displaymode);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Allows us to fill the first 8 CGRAM locations
|
|
||||||
// with custom characters
|
|
||||||
void Max_LCD::createChar(uint8_t location, uint8_t charmap[]) {
|
|
||||||
location &= 0x7; // we only have 8 locations 0-7
|
|
||||||
command(LCD_SETCGRAMADDR | (location << 3));
|
|
||||||
for (int i=0; i<8; i++) {
|
|
||||||
write(charmap[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*********** mid level commands, for sending data/cmds */
|
|
||||||
|
|
||||||
inline void Max_LCD::command(uint8_t value) {
|
|
||||||
LCD_sendcmd(value);
|
|
||||||
delayMicroseconds(100);
|
|
||||||
}
|
|
||||||
|
|
||||||
inline void Max_LCD::write(uint8_t value) {
|
|
||||||
LCD_sendchar(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
void Max_LCD::sendbyte( uint8_t val )
|
|
||||||
{
|
|
||||||
lcdPins &= 0x0f; //prepare place for the upper nibble
|
|
||||||
lcdPins |= ( val & 0xf0 ); //copy upper nibble to LCD variable
|
|
||||||
SET_E; //send
|
|
||||||
SENDlcdPins();
|
|
||||||
delayMicroseconds(2);
|
|
||||||
CLR_E;
|
|
||||||
delayMicroseconds(2);
|
|
||||||
SENDlcdPins();
|
|
||||||
lcdPins &= 0x0f; //prepare place for the lower nibble
|
|
||||||
lcdPins |= ( val << 4 ) & 0xf0; //copy lower nibble to LCD variable
|
|
||||||
SET_E; //send
|
|
||||||
SENDlcdPins();
|
|
||||||
CLR_E;
|
|
||||||
SENDlcdPins();
|
|
||||||
delayMicroseconds(100);
|
|
||||||
}
|
|
102
max_LCD.h
102
max_LCD.h
|
@ -1,102 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
//HD44780 compatible LCD display via MAX3421E GPOUT support header
|
|
||||||
//pinout: D[4-7] -> GPOUT[4-7], RS-> GPOUT[2], E ->GPOUT[3]
|
|
||||||
//
|
|
||||||
|
|
||||||
#ifndef _Max_LCD_h_
|
|
||||||
#define _Max_LCD_h_
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include "Print.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
// commands
|
|
||||||
#define LCD_CLEARDISPLAY 0x01
|
|
||||||
#define LCD_RETURNHOME 0x02
|
|
||||||
#define LCD_ENTRYMODESET 0x04
|
|
||||||
#define LCD_DISPLAYCONTROL 0x08
|
|
||||||
#define LCD_CURSORSHIFT 0x10
|
|
||||||
#define LCD_FUNCTIONSET 0x20
|
|
||||||
#define LCD_SETCGRAMADDR 0x40
|
|
||||||
#define LCD_SETDDRAMADDR 0x80
|
|
||||||
|
|
||||||
// flags for display entry mode
|
|
||||||
#define LCD_ENTRYRIGHT 0x00
|
|
||||||
#define LCD_ENTRYLEFT 0x02
|
|
||||||
#define LCD_ENTRYSHIFTINCREMENT 0x01
|
|
||||||
#define LCD_ENTRYSHIFTDECREMENT 0x00
|
|
||||||
|
|
||||||
// flags for display on/off control
|
|
||||||
#define LCD_DISPLAYON 0x04
|
|
||||||
#define LCD_DISPLAYOFF 0x00
|
|
||||||
#define LCD_CURSORON 0x02
|
|
||||||
#define LCD_CURSOROFF 0x00
|
|
||||||
#define LCD_BLINKON 0x01
|
|
||||||
#define LCD_BLINKOFF 0x00
|
|
||||||
|
|
||||||
// flags for display/cursor shift
|
|
||||||
#define LCD_DISPLAYMOVE 0x08
|
|
||||||
#define LCD_CURSORMOVE 0x00
|
|
||||||
#define LCD_MOVERIGHT 0x04
|
|
||||||
#define LCD_MOVELEFT 0x00
|
|
||||||
|
|
||||||
// flags for function set
|
|
||||||
#define LCD_8BITMODE 0x10
|
|
||||||
#define LCD_4BITMODE 0x00
|
|
||||||
#define LCD_2LINE 0x08
|
|
||||||
#define LCD_1LINE 0x00
|
|
||||||
#define LCD_5x10DOTS 0x04
|
|
||||||
#define LCD_5x8DOTS 0x00
|
|
||||||
|
|
||||||
class Max_LCD //: public Print
|
|
||||||
{
|
|
||||||
USB *pUsb;
|
|
||||||
|
|
||||||
public:
|
|
||||||
Max_LCD(USB *pusb);
|
|
||||||
void init();
|
|
||||||
void begin(uint8_t cols, uint8_t rows, uint8_t charsize = LCD_5x8DOTS);
|
|
||||||
void clear();
|
|
||||||
void home();
|
|
||||||
void noDisplay();
|
|
||||||
void display();
|
|
||||||
void noBlink();
|
|
||||||
void blink();
|
|
||||||
void noCursor();
|
|
||||||
void cursor();
|
|
||||||
void scrollDisplayLeft();
|
|
||||||
void scrollDisplayRight();
|
|
||||||
void leftToRight();
|
|
||||||
void rightToLeft();
|
|
||||||
void autoscroll();
|
|
||||||
void noAutoscroll();
|
|
||||||
void createChar(uint8_t, uint8_t[]);
|
|
||||||
void setCursor(uint8_t, uint8_t);
|
|
||||||
virtual void write(uint8_t);
|
|
||||||
void command(uint8_t);
|
|
||||||
|
|
||||||
private:
|
|
||||||
void sendbyte( uint8_t val );
|
|
||||||
uint8_t _displayfunction; //tokill
|
|
||||||
uint8_t _displaycontrol;
|
|
||||||
uint8_t _displaymode;
|
|
||||||
uint8_t _initialized;
|
|
||||||
uint8_t _numlines,_currline;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
31
message.cpp
31
message.cpp
|
@ -1,31 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#include "message.h"
|
|
||||||
|
|
||||||
void Notify(char const * msg)
|
|
||||||
//void Notify(const char* msg)
|
|
||||||
{
|
|
||||||
if(!msg) return;
|
|
||||||
char c;
|
|
||||||
|
|
||||||
while((c = pgm_read_byte(msg++)))
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
Serial.print(c);
|
|
||||||
#else
|
|
||||||
Serial.print(c,BYTE);
|
|
||||||
#endif
|
|
||||||
}
|
|
37
message.h
37
message.h
|
@ -1,37 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__MESSAGE_H__)
|
|
||||||
#define __MESSAGE_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "printhex.h"
|
|
||||||
|
|
||||||
void Notify(char const * msg);
|
|
||||||
//void Notify(const char* msg);
|
|
||||||
|
|
||||||
template <class ERROR_TYPE>
|
|
||||||
void ErrorMessage(char const * msg, ERROR_TYPE rcode = 0)
|
|
||||||
{
|
|
||||||
Notify(msg);
|
|
||||||
Notify(PSTR(": "));
|
|
||||||
PrintHex<ERROR_TYPE>(rcode);
|
|
||||||
Notify(PSTR("\r\n"));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#endif // __MESSAGE_H__
|
|
|
@ -1,72 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#include "parsetools.h"
|
|
||||||
|
|
||||||
bool MultiByteValueParser::Parse(uint8_t **pp, uint16_t *pcntdn)
|
|
||||||
{
|
|
||||||
if (!pBuf)
|
|
||||||
{
|
|
||||||
Notify(PSTR("Buffer pointer is NULL!\r\n"));
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
for (; countDown && (*pcntdn); countDown--, (*pcntdn)--, (*pp)++)
|
|
||||||
pBuf[valueSize-countDown] = (**pp);
|
|
||||||
|
|
||||||
if (countDown)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
countDown = valueSize;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool PTPListParser::Parse(uint8_t **pp, uint16_t *pcntdn, PTP_ARRAY_EL_FUNC pf, const void *me)
|
|
||||||
{
|
|
||||||
switch (nStage)
|
|
||||||
{
|
|
||||||
case 0:
|
|
||||||
pBuf->valueSize = lenSize;
|
|
||||||
theParser.Initialize(pBuf);
|
|
||||||
nStage = 1;
|
|
||||||
|
|
||||||
case 1:
|
|
||||||
if (!theParser.Parse(pp, pcntdn))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
arLen = 0;
|
|
||||||
arLen = (pBuf->valueSize >= 4) ? *((uint32_t*)pBuf->pValue) : (uint32_t)(*((uint16_t*)pBuf->pValue));
|
|
||||||
arLenCntdn = arLen;
|
|
||||||
nStage = 2;
|
|
||||||
|
|
||||||
case 2:
|
|
||||||
pBuf->valueSize = valSize;
|
|
||||||
theParser.Initialize(pBuf);
|
|
||||||
nStage = 3;
|
|
||||||
|
|
||||||
case 3:
|
|
||||||
for (; arLenCntdn; arLenCntdn--)
|
|
||||||
{
|
|
||||||
if (!theParser.Parse(pp, pcntdn))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (pf)
|
|
||||||
pf(pBuf, (arLen - arLenCntdn), me);
|
|
||||||
}
|
|
||||||
|
|
||||||
nStage = 0;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
151
parsetools.h
151
parsetools.h
|
@ -1,151 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__PARSETOOLS_H__)
|
|
||||||
#define __PARSETOOLS_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "printhex.h"
|
|
||||||
#include "hexdump.h"
|
|
||||||
#include "message.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
struct MultiValueBuffer
|
|
||||||
{
|
|
||||||
uint8_t valueSize;
|
|
||||||
void *pValue;
|
|
||||||
};
|
|
||||||
|
|
||||||
class MultiByteValueParser
|
|
||||||
{
|
|
||||||
uint8_t * pBuf;
|
|
||||||
uint8_t countDown;
|
|
||||||
uint8_t valueSize;
|
|
||||||
|
|
||||||
public:
|
|
||||||
MultiByteValueParser() : pBuf(NULL), countDown(0), valueSize(0) {};
|
|
||||||
|
|
||||||
const uint8_t* GetBuffer() { return pBuf; };
|
|
||||||
|
|
||||||
void Initialize(MultiValueBuffer * const pbuf)
|
|
||||||
{
|
|
||||||
pBuf = (uint8_t*)pbuf->pValue;
|
|
||||||
countDown = valueSize = pbuf->valueSize;
|
|
||||||
};
|
|
||||||
|
|
||||||
bool Parse(uint8_t **pp, uint16_t *pcntdn);
|
|
||||||
};
|
|
||||||
|
|
||||||
class ByteSkipper
|
|
||||||
{
|
|
||||||
uint8_t *pBuf;
|
|
||||||
uint8_t nStage;
|
|
||||||
uint16_t countDown;
|
|
||||||
|
|
||||||
public:
|
|
||||||
ByteSkipper() : pBuf(NULL), nStage(0), countDown(0) {};
|
|
||||||
|
|
||||||
void Initialize(MultiValueBuffer *pbuf)
|
|
||||||
{
|
|
||||||
pBuf = (uint8_t*)pbuf->pValue;
|
|
||||||
countDown = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
bool Skip(uint8_t **pp, uint16_t *pcntdn, uint16_t bytes_to_skip)
|
|
||||||
{
|
|
||||||
switch (nStage)
|
|
||||||
{
|
|
||||||
case 0:
|
|
||||||
countDown = bytes_to_skip;
|
|
||||||
nStage ++;
|
|
||||||
case 1:
|
|
||||||
for (; countDown && (*pcntdn); countDown--, (*pp)++, (*pcntdn)--);
|
|
||||||
|
|
||||||
if (!countDown)
|
|
||||||
nStage = 0;
|
|
||||||
};
|
|
||||||
return (!countDown);
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
// Pointer to a callback function triggered for each element of PTP array when used with PTPArrayParser
|
|
||||||
typedef void (*PTP_ARRAY_EL_FUNC)(const MultiValueBuffer * const p, uint32_t count, const void *me);
|
|
||||||
|
|
||||||
class PTPListParser
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
enum ParseMode { modeArray, modeRange/*, modeEnum*/ };
|
|
||||||
|
|
||||||
private:
|
|
||||||
uint8_t nStage;
|
|
||||||
uint8_t enStage;
|
|
||||||
|
|
||||||
uint32_t arLen;
|
|
||||||
uint32_t arLenCntdn;
|
|
||||||
|
|
||||||
uint8_t lenSize; // size of the array length field in bytes
|
|
||||||
uint8_t valSize; // size of the array element in bytes
|
|
||||||
|
|
||||||
MultiValueBuffer *pBuf;
|
|
||||||
|
|
||||||
// The only parser for both size and array element parsing
|
|
||||||
MultiByteValueParser theParser;
|
|
||||||
|
|
||||||
uint8_t /*ParseMode*/ prsMode;
|
|
||||||
|
|
||||||
public:
|
|
||||||
PTPListParser() :
|
|
||||||
pBuf(NULL),
|
|
||||||
nStage(0),
|
|
||||||
enStage(0),
|
|
||||||
arLenCntdn(0),
|
|
||||||
arLen(0),
|
|
||||||
lenSize(0),
|
|
||||||
valSize(0),
|
|
||||||
prsMode(modeArray)
|
|
||||||
{};
|
|
||||||
|
|
||||||
void Initialize(const uint8_t len_size, const uint8_t val_size, MultiValueBuffer * const p, const uint8_t mode = modeArray)
|
|
||||||
{
|
|
||||||
pBuf = p;
|
|
||||||
lenSize = len_size;
|
|
||||||
valSize = val_size;
|
|
||||||
prsMode = mode;
|
|
||||||
|
|
||||||
if (prsMode == modeRange)
|
|
||||||
{
|
|
||||||
arLenCntdn = arLen = 3;
|
|
||||||
nStage = 2;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
arLenCntdn = arLen = 0;
|
|
||||||
nStage = 0;
|
|
||||||
}
|
|
||||||
enStage = 0;
|
|
||||||
theParser.Initialize(p);
|
|
||||||
};
|
|
||||||
|
|
||||||
bool Parse(uint8_t **pp, uint16_t *pcntdn, PTP_ARRAY_EL_FUNC pf, const void *me = NULL);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // __PARSETOOLS_H__
|
|
66
printhex.h
66
printhex.h
|
@ -1,66 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__PRINTHEX_H__)
|
|
||||||
#define __PRINTHEX_H__
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
template <class T>
|
|
||||||
void PrintHex(T val)
|
|
||||||
{
|
|
||||||
T mask = (((T)1) << (((sizeof(T) << 1) - 1) << 2));
|
|
||||||
|
|
||||||
while (mask > 1)
|
|
||||||
{
|
|
||||||
if (val < mask)
|
|
||||||
Serial.print("0");
|
|
||||||
|
|
||||||
mask >>= 4;
|
|
||||||
}
|
|
||||||
Serial.print((T)val, HEX);
|
|
||||||
}
|
|
||||||
|
|
||||||
template <class T>
|
|
||||||
void PrintHex2(Print *prn, T val)
|
|
||||||
{
|
|
||||||
T mask = (((T)1) << (((sizeof(T) << 1) - 1) << 2));
|
|
||||||
|
|
||||||
while (mask > 1)
|
|
||||||
{
|
|
||||||
if (val < mask)
|
|
||||||
prn->print("0");
|
|
||||||
|
|
||||||
mask >>= 4;
|
|
||||||
}
|
|
||||||
prn->print((T)val, HEX);
|
|
||||||
}
|
|
||||||
|
|
||||||
template <class T>
|
|
||||||
void PrintBin(T val)
|
|
||||||
{
|
|
||||||
for (T mask = (((T)1) << (sizeof(T) << 3)-1); mask; mask>>=1)
|
|
||||||
if (val & mask)
|
|
||||||
Serial.print("1");
|
|
||||||
else
|
|
||||||
Serial.print("0");
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // __PRINTHEX_H__
|
|
170
usb_ch9.h
170
usb_ch9.h
|
@ -1,170 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
/* USB chapter 9 structures */
|
|
||||||
#ifndef _ch9_h_
|
|
||||||
#define _ch9_h_
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
/* Misc.USB constants */
|
|
||||||
#define DEV_DESCR_LEN 18 //device descriptor length
|
|
||||||
#define CONF_DESCR_LEN 9 //configuration descriptor length
|
|
||||||
#define INTR_DESCR_LEN 9 //interface descriptor length
|
|
||||||
#define EP_DESCR_LEN 7 //endpoint descriptor length
|
|
||||||
|
|
||||||
/* Standard Device Requests */
|
|
||||||
|
|
||||||
#define USB_REQUEST_GET_STATUS 0 // Standard Device Request - GET STATUS
|
|
||||||
#define USB_REQUEST_CLEAR_FEATURE 1 // Standard Device Request - CLEAR FEATURE
|
|
||||||
#define USB_REQUEST_SET_FEATURE 3 // Standard Device Request - SET FEATURE
|
|
||||||
#define USB_REQUEST_SET_ADDRESS 5 // Standard Device Request - SET ADDRESS
|
|
||||||
#define USB_REQUEST_GET_DESCRIPTOR 6 // Standard Device Request - GET DESCRIPTOR
|
|
||||||
#define USB_REQUEST_SET_DESCRIPTOR 7 // Standard Device Request - SET DESCRIPTOR
|
|
||||||
#define USB_REQUEST_GET_CONFIGURATION 8 // Standard Device Request - GET CONFIGURATION
|
|
||||||
#define USB_REQUEST_SET_CONFIGURATION 9 // Standard Device Request - SET CONFIGURATION
|
|
||||||
#define USB_REQUEST_GET_INTERFACE 10 // Standard Device Request - GET INTERFACE
|
|
||||||
#define USB_REQUEST_SET_INTERFACE 11 // Standard Device Request - SET INTERFACE
|
|
||||||
#define USB_REQUEST_SYNCH_FRAME 12 // Standard Device Request - SYNCH FRAME
|
|
||||||
|
|
||||||
#define USB_FEATURE_ENDPOINT_HALT 0 // CLEAR/SET FEATURE - Endpoint Halt
|
|
||||||
#define USB_FEATURE_DEVICE_REMOTE_WAKEUP 1 // CLEAR/SET FEATURE - Device remote wake-up
|
|
||||||
#define USB_FEATURE_TEST_MODE 2 // CLEAR/SET FEATURE - Test mode
|
|
||||||
|
|
||||||
/* Setup Data Constants */
|
|
||||||
|
|
||||||
#define USB_SETUP_HOST_TO_DEVICE 0x00 // Device Request bmRequestType transfer direction - host to device transfer
|
|
||||||
#define USB_SETUP_DEVICE_TO_HOST 0x80 // Device Request bmRequestType transfer direction - device to host transfer
|
|
||||||
#define USB_SETUP_TYPE_STANDARD 0x00 // Device Request bmRequestType type - standard
|
|
||||||
#define USB_SETUP_TYPE_CLASS 0x20 // Device Request bmRequestType type - class
|
|
||||||
#define USB_SETUP_TYPE_VENDOR 0x40 // Device Request bmRequestType type - vendor
|
|
||||||
#define USB_SETUP_RECIPIENT_DEVICE 0x00 // Device Request bmRequestType recipient - device
|
|
||||||
#define USB_SETUP_RECIPIENT_INTERFACE 0x01 // Device Request bmRequestType recipient - interface
|
|
||||||
#define USB_SETUP_RECIPIENT_ENDPOINT 0x02 // Device Request bmRequestType recipient - endpoint
|
|
||||||
#define USB_SETUP_RECIPIENT_OTHER 0x03 // Device Request bmRequestType recipient - other
|
|
||||||
|
|
||||||
/* USB descriptors */
|
|
||||||
|
|
||||||
#define USB_DESCRIPTOR_DEVICE 0x01 // bDescriptorType for a Device Descriptor.
|
|
||||||
#define USB_DESCRIPTOR_CONFIGURATION 0x02 // bDescriptorType for a Configuration Descriptor.
|
|
||||||
#define USB_DESCRIPTOR_STRING 0x03 // bDescriptorType for a String Descriptor.
|
|
||||||
#define USB_DESCRIPTOR_INTERFACE 0x04 // bDescriptorType for an Interface Descriptor.
|
|
||||||
#define USB_DESCRIPTOR_ENDPOINT 0x05 // bDescriptorType for an Endpoint Descriptor.
|
|
||||||
#define USB_DESCRIPTOR_DEVICE_QUALIFIER 0x06 // bDescriptorType for a Device Qualifier.
|
|
||||||
#define USB_DESCRIPTOR_OTHER_SPEED 0x07 // bDescriptorType for a Other Speed Configuration.
|
|
||||||
#define USB_DESCRIPTOR_INTERFACE_POWER 0x08 // bDescriptorType for Interface Power.
|
|
||||||
#define USB_DESCRIPTOR_OTG 0x09 // bDescriptorType for an OTG Descriptor.
|
|
||||||
|
|
||||||
#define HID_DESCRIPTOR_HID 0x21
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* OTG SET FEATURE Constants */
|
|
||||||
#define OTG_FEATURE_B_HNP_ENABLE 3 // SET FEATURE OTG - Enable B device to perform HNP
|
|
||||||
#define OTG_FEATURE_A_HNP_SUPPORT 4 // SET FEATURE OTG - A device supports HNP
|
|
||||||
#define OTG_FEATURE_A_ALT_HNP_SUPPORT 5 // SET FEATURE OTG - Another port on the A device supports HNP
|
|
||||||
|
|
||||||
/* USB Endpoint Transfer Types */
|
|
||||||
#define USB_TRANSFER_TYPE_CONTROL 0x00 // Endpoint is a control endpoint.
|
|
||||||
#define USB_TRANSFER_TYPE_ISOCHRONOUS 0x01 // Endpoint is an isochronous endpoint.
|
|
||||||
#define USB_TRANSFER_TYPE_BULK 0x02 // Endpoint is a bulk endpoint.
|
|
||||||
#define USB_TRANSFER_TYPE_INTERRUPT 0x03 // Endpoint is an interrupt endpoint.
|
|
||||||
#define bmUSB_TRANSFER_TYPE 0x03 // bit mask to separate transfer type from ISO attributes
|
|
||||||
|
|
||||||
|
|
||||||
/* Standard Feature Selectors for CLEAR_FEATURE Requests */
|
|
||||||
#define USB_FEATURE_ENDPOINT_STALL 0 // Endpoint recipient
|
|
||||||
#define USB_FEATURE_DEVICE_REMOTE_WAKEUP 1 // Device recipient
|
|
||||||
#define USB_FEATURE_TEST_MODE 2 // Device recipient
|
|
||||||
|
|
||||||
/* descriptor data structures */
|
|
||||||
|
|
||||||
/* Device descriptor structure */
|
|
||||||
typedef struct {
|
|
||||||
uint8_t bLength; // Length of this descriptor.
|
|
||||||
uint8_t bDescriptorType; // DEVICE descriptor type (USB_DESCRIPTOR_DEVICE).
|
|
||||||
uint16_t bcdUSB; // USB Spec Release Number (BCD).
|
|
||||||
uint8_t bDeviceClass; // Class code (assigned by the USB-IF). 0xFF-Vendor specific.
|
|
||||||
uint8_t bDeviceSubClass; // Subclass code (assigned by the USB-IF).
|
|
||||||
uint8_t bDeviceProtocol; // Protocol code (assigned by the USB-IF). 0xFF-Vendor specific.
|
|
||||||
uint8_t bMaxPacketSize0; // Maximum packet size for endpoint 0.
|
|
||||||
uint16_t idVendor; // Vendor ID (assigned by the USB-IF).
|
|
||||||
uint16_t idProduct; // Product ID (assigned by the manufacturer).
|
|
||||||
uint16_t bcdDevice; // Device release number (BCD).
|
|
||||||
uint8_t iManufacturer; // Index of String Descriptor describing the manufacturer.
|
|
||||||
uint8_t iProduct; // Index of String Descriptor describing the product.
|
|
||||||
uint8_t iSerialNumber; // Index of String Descriptor with the device's serial number.
|
|
||||||
uint8_t bNumConfigurations; // Number of possible configurations.
|
|
||||||
} USB_DEVICE_DESCRIPTOR;
|
|
||||||
|
|
||||||
/* Configuration descriptor structure */
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
uint8_t bLength; // Length of this descriptor.
|
|
||||||
uint8_t bDescriptorType; // CONFIGURATION descriptor type (USB_DESCRIPTOR_CONFIGURATION).
|
|
||||||
uint16_t wTotalLength; // Total length of all descriptors for this configuration.
|
|
||||||
uint8_t bNumInterfaces; // Number of interfaces in this configuration.
|
|
||||||
uint8_t bConfigurationValue; // Value of this configuration (1 based).
|
|
||||||
uint8_t iConfiguration; // Index of String Descriptor describing the configuration.
|
|
||||||
uint8_t bmAttributes; // Configuration characteristics.
|
|
||||||
uint8_t bMaxPower; // Maximum power consumed by this configuration.
|
|
||||||
} USB_CONFIGURATION_DESCRIPTOR;
|
|
||||||
|
|
||||||
/* Interface descriptor structure */
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
uint8_t bLength; // Length of this descriptor.
|
|
||||||
uint8_t bDescriptorType; // INTERFACE descriptor type (USB_DESCRIPTOR_INTERFACE).
|
|
||||||
uint8_t bInterfaceNumber; // Number of this interface (0 based).
|
|
||||||
uint8_t bAlternateSetting; // Value of this alternate interface setting.
|
|
||||||
uint8_t bNumEndpoints; // Number of endpoints in this interface.
|
|
||||||
uint8_t bInterfaceClass; // Class code (assigned by the USB-IF). 0xFF-Vendor specific.
|
|
||||||
uint8_t bInterfaceSubClass; // Subclass code (assigned by the USB-IF).
|
|
||||||
uint8_t bInterfaceProtocol; // Protocol code (assigned by the USB-IF). 0xFF-Vendor specific.
|
|
||||||
uint8_t iInterface; // Index of String Descriptor describing the interface.
|
|
||||||
} USB_INTERFACE_DESCRIPTOR;
|
|
||||||
|
|
||||||
/* Endpoint descriptor structure */
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
uint8_t bLength; // Length of this descriptor.
|
|
||||||
uint8_t bDescriptorType; // ENDPOINT descriptor type (USB_DESCRIPTOR_ENDPOINT).
|
|
||||||
uint8_t bEndpointAddress; // Endpoint address. Bit 7 indicates direction (0=OUT, 1=IN).
|
|
||||||
uint8_t bmAttributes; // Endpoint transfer type.
|
|
||||||
uint16_t wMaxPacketSize; // Maximum packet size.
|
|
||||||
uint8_t bInterval; // Polling interval in frames.
|
|
||||||
} USB_ENDPOINT_DESCRIPTOR;
|
|
||||||
|
|
||||||
|
|
||||||
/* HID descriptor */
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
uint8_t bLength;
|
|
||||||
uint8_t bDescriptorType;
|
|
||||||
uint16_t bcdHID; // HID class specification release
|
|
||||||
uint8_t bCountryCode;
|
|
||||||
uint8_t bNumDescriptors; // Number of additional class specific descriptors
|
|
||||||
uint8_t bDescrType; // Type of class descriptor
|
|
||||||
uint16_t wDescriptorLength; // Total size of the Report descriptor
|
|
||||||
} USB_HID_DESCRIPTOR;
|
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
uint8_t bDescrType; // Type of class descriptor
|
|
||||||
uint16_t wDescriptorLength; // Total size of the Report descriptor
|
|
||||||
} HID_CLASS_DESCRIPTOR_LEN_AND_TYPE;
|
|
||||||
|
|
||||||
#endif // _ch9_h_
|
|
315
usbhost.h
315
usbhost.h
|
@ -1,315 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
/* MAX3421E-based USB Host Library header file */
|
|
||||||
#ifndef _USBHOST_H_
|
|
||||||
#define _USBHOST_H_
|
|
||||||
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
|
|
||||||
|
|
||||||
/* SPI initialization */
|
|
||||||
template< typename CLK, typename MOSI, typename MISO, typename SPI_SS > class SPi
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
static void init() {
|
|
||||||
uint8_t tmp;
|
|
||||||
CLK::SetDirWrite();
|
|
||||||
MOSI::SetDirWrite();
|
|
||||||
MISO::SetDirRead();
|
|
||||||
SPI_SS::SetDirWrite();
|
|
||||||
/* mode 00 (CPOL=0, CPHA=0) master, fclk/2. Mode 11 (CPOL=11, CPHA=11) is also supported by MAX3421E */
|
|
||||||
SPCR = 0x50;
|
|
||||||
SPSR = 0x01;
|
|
||||||
/**/
|
|
||||||
tmp = SPSR;
|
|
||||||
tmp = SPDR;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
/* SPI pin definitions. see avrpins.h */
|
|
||||||
#if defined(__AVR_ATmega1280__) || (__AVR_ATmega2560__) || defined(__AVR_ATmega32U4__) || defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB1286__)
|
|
||||||
typedef SPi< Pb1, Pb2, Pb3, Pb0 > spi;
|
|
||||||
#endif
|
|
||||||
#if defined(__AVR_ATmega168__) || defined(__AVR_ATmega328P__)
|
|
||||||
typedef SPi< Pb5, Pb3, Pb4, Pb2 > spi;
|
|
||||||
#endif
|
|
||||||
#if defined(__AVR_ATmega644__) || defined(__AVR_ATmega644P__)
|
|
||||||
typedef SPi< Pb7, Pb5, Pb6, Pb4 > spi;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
template< typename SS, typename INTR > class MAX3421e /* : public spi */
|
|
||||||
{
|
|
||||||
static uint8_t vbusState;
|
|
||||||
|
|
||||||
public:
|
|
||||||
MAX3421e();
|
|
||||||
void regWr( uint8_t reg, uint8_t data );
|
|
||||||
uint8_t* bytesWr( uint8_t reg, uint8_t nbytes, uint8_t* data_p );
|
|
||||||
void gpioWr( uint8_t data );
|
|
||||||
uint8_t regRd( uint8_t reg );
|
|
||||||
uint8_t* bytesRd( uint8_t reg, uint8_t nbytes, uint8_t* data_p );
|
|
||||||
uint8_t gpioRd();
|
|
||||||
uint16_t reset();
|
|
||||||
int8_t Init();
|
|
||||||
uint8_t getVbusState( void ) { return vbusState; };
|
|
||||||
void busprobe();
|
|
||||||
uint8_t GpxHandler();
|
|
||||||
uint8_t IntHandler();
|
|
||||||
uint8_t Task();
|
|
||||||
};
|
|
||||||
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
uint8_t MAX3421e< SS, INTR >::vbusState = 0;
|
|
||||||
|
|
||||||
/* constructor */
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
MAX3421e< SS, INTR >::MAX3421e()
|
|
||||||
{
|
|
||||||
/* pin and peripheral setup */
|
|
||||||
SS::SetDirWrite();
|
|
||||||
SS::Set();
|
|
||||||
spi::init();
|
|
||||||
INTR::SetDirRead();
|
|
||||||
#ifdef BOARD_MEGA_ADK
|
|
||||||
/* For Mega ADK, which has Max3421e on-board, set MAX_RESET to Output mode, and pull Reset to HIGH */
|
|
||||||
DDRJ |= _BV(PJ2);
|
|
||||||
PORTJ &= ~_BV(PJ2);
|
|
||||||
PORTJ |= _BV(PJ2);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* MAX3421E - full-duplex SPI, level interrupt */
|
|
||||||
regWr( rPINCTL,( bmFDUPSPI + bmINTLEVEL ));
|
|
||||||
};
|
|
||||||
/* write single byte into MAX3421 register */
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
void MAX3421e< SS, INTR >::regWr( uint8_t reg, uint8_t data )
|
|
||||||
{
|
|
||||||
SS::Clear();
|
|
||||||
SPDR = ( reg | 0x02 );
|
|
||||||
while(!( SPSR & ( 1 << SPIF )));
|
|
||||||
SPDR = data;
|
|
||||||
while(!( SPSR & ( 1 << SPIF )));
|
|
||||||
SS::Set();
|
|
||||||
return;
|
|
||||||
};
|
|
||||||
/* multiple-byte write */
|
|
||||||
/* returns a pointer to memory position after last written */
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
uint8_t* MAX3421e< SS, INTR >::bytesWr( uint8_t reg, uint8_t nbytes, uint8_t* data_p )
|
|
||||||
{
|
|
||||||
SS::Clear();
|
|
||||||
SPDR = ( reg | 0x02 ); //set WR bit and send register number
|
|
||||||
while( nbytes-- ) {
|
|
||||||
while(!( SPSR & ( 1 << SPIF ))); //check if previous byte was sent
|
|
||||||
SPDR = ( *data_p ); // send next data byte
|
|
||||||
data_p++; // advance data pointer
|
|
||||||
}
|
|
||||||
while(!( SPSR & ( 1 << SPIF )));
|
|
||||||
SS::Set();
|
|
||||||
return( data_p );
|
|
||||||
}
|
|
||||||
/* GPIO write */
|
|
||||||
/*GPIO byte is split between 2 registers, so two writes are needed to write one byte */
|
|
||||||
/* GPOUT bits are in the low nibble. 0-3 in IOPINS1, 4-7 in IOPINS2 */
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
void MAX3421e< SS, INTR >::gpioWr( uint8_t data )
|
|
||||||
{
|
|
||||||
regWr( rIOPINS1, data );
|
|
||||||
data >>= 4;
|
|
||||||
regWr( rIOPINS2, data );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
/* single host register read */
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
uint8_t MAX3421e< SS, INTR >::regRd( uint8_t reg )
|
|
||||||
{
|
|
||||||
SS::Clear();
|
|
||||||
SPDR = reg;
|
|
||||||
while(!( SPSR & ( 1 << SPIF )));
|
|
||||||
SPDR = 0; //send empty byte
|
|
||||||
while(!( SPSR & ( 1 << SPIF )));
|
|
||||||
SS::Set();
|
|
||||||
return( SPDR );
|
|
||||||
}
|
|
||||||
/* multiple-byte register read */
|
|
||||||
/* returns a pointer to a memory position after last read */
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
uint8_t* MAX3421e< SS, INTR >::bytesRd( uint8_t reg, uint8_t nbytes, uint8_t* data_p )
|
|
||||||
{
|
|
||||||
SS::Clear();
|
|
||||||
SPDR = reg;
|
|
||||||
while(!( SPSR & ( 1 << SPIF ))); //wait
|
|
||||||
while( nbytes ) {
|
|
||||||
SPDR = 0; //send empty byte
|
|
||||||
nbytes--;
|
|
||||||
while(!( SPSR & ( 1 << SPIF )));
|
|
||||||
*data_p = SPDR;
|
|
||||||
data_p++;
|
|
||||||
}
|
|
||||||
SS::Set();
|
|
||||||
return( data_p );
|
|
||||||
}
|
|
||||||
/* GPIO read. See gpioWr for explanation */
|
|
||||||
/* GPIN pins are in high nibbles of IOPINS1, IOPINS2 */
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
uint8_t MAX3421e< SS, INTR >::gpioRd()
|
|
||||||
{
|
|
||||||
uint8_t gpin = 0;
|
|
||||||
gpin = regRd( rIOPINS2 ); //pins 4-7
|
|
||||||
gpin &= 0xf0; //clean lower nibble
|
|
||||||
gpin |= ( regRd( rIOPINS1 ) >>4 ) ; //shift low bits and OR with upper from previous operation.
|
|
||||||
return( gpin );
|
|
||||||
}
|
|
||||||
/* reset MAX3421E. Returns number of cycles it took for PLL to stabilize after reset
|
|
||||||
or zero if PLL haven't stabilized in 65535 cycles */
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
uint16_t MAX3421e< SS, INTR >::reset()
|
|
||||||
{
|
|
||||||
uint16_t i = 0;
|
|
||||||
regWr( rUSBCTL, bmCHIPRES );
|
|
||||||
regWr( rUSBCTL, 0x00 );
|
|
||||||
while( ++i ) {
|
|
||||||
if(( regRd( rUSBIRQ ) & bmOSCOKIRQ )) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return( i );
|
|
||||||
}
|
|
||||||
///* initialize MAX3421E. Set Host mode, pullups, and stuff. Returns 0 if success, -1 if not */
|
|
||||||
//template< typename SS, typename INTR >
|
|
||||||
//int8_t MAX3421e< SS, INTR >::Init()
|
|
||||||
//{
|
|
||||||
// if( reset() == 0 ) { //OSCOKIRQ hasn't asserted in time
|
|
||||||
// return ( -1 );
|
|
||||||
// }
|
|
||||||
// regWr( rMODE, bmDPPULLDN|bmDMPULLDN|bmHOST ); // set pull-downs, Host
|
|
||||||
//
|
|
||||||
// return( 0 );
|
|
||||||
//}
|
|
||||||
/* initialize MAX3421E. Set Host mode, pullups, and stuff. Returns 0 if success, -1 if not */
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
int8_t MAX3421e< SS, INTR >::Init()
|
|
||||||
{
|
|
||||||
if( reset() == 0 )
|
|
||||||
{ //OSCOKIRQ hasn't asserted in time
|
|
||||||
return ( -1 );
|
|
||||||
}
|
|
||||||
regWr( rMODE, bmDPPULLDN|bmDMPULLDN|bmHOST ); // set pull-downs, Host
|
|
||||||
|
|
||||||
regWr( rHIEN, bmCONDETIE|bmFRAMEIE ); //connection detection
|
|
||||||
|
|
||||||
/* check if device is connected */
|
|
||||||
regWr( rHCTL,bmSAMPLEBUS ); // sample USB bus
|
|
||||||
while(!(regRd( rHCTL ) & bmSAMPLEBUS )); //wait for sample operation to finish
|
|
||||||
|
|
||||||
busprobe(); //check if anything is connected
|
|
||||||
|
|
||||||
regWr( rHIRQ, bmCONDETIRQ ); //clear connection detect interrupt
|
|
||||||
regWr( rCPUCTL, 0x01 ); //enable interrupt pin
|
|
||||||
return( 0 );
|
|
||||||
}
|
|
||||||
|
|
||||||
/* probe bus to determine device presense and speed and switch host to this speed */
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
void MAX3421e< SS, INTR >::busprobe()
|
|
||||||
{
|
|
||||||
uint8_t bus_sample;
|
|
||||||
bus_sample = regRd( rHRSL ); //Get J,K status
|
|
||||||
bus_sample &= ( bmJSTATUS|bmKSTATUS ); //zero the rest of the byte
|
|
||||||
switch( bus_sample ) { //start full-speed or low-speed host
|
|
||||||
case( bmJSTATUS ):
|
|
||||||
if(( regRd( rMODE ) & bmLOWSPEED ) == 0 ) {
|
|
||||||
regWr( rMODE, MODE_FS_HOST ); //start full-speed host
|
|
||||||
vbusState = FSHOST;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
regWr( rMODE, MODE_LS_HOST); //start low-speed host
|
|
||||||
vbusState = LSHOST;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case( bmKSTATUS ):
|
|
||||||
if(( regRd( rMODE ) & bmLOWSPEED ) == 0 ) {
|
|
||||||
regWr( rMODE, MODE_LS_HOST ); //start low-speed host
|
|
||||||
vbusState = LSHOST;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
regWr( rMODE, MODE_FS_HOST ); //start full-speed host
|
|
||||||
vbusState = FSHOST;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case( bmSE1 ): //illegal state
|
|
||||||
vbusState = SE1;
|
|
||||||
break;
|
|
||||||
case( bmSE0 ): //disconnected state
|
|
||||||
regWr( rMODE, bmDPPULLDN|bmDMPULLDN|bmHOST|bmSEPIRQ);
|
|
||||||
vbusState = SE0;
|
|
||||||
break;
|
|
||||||
}//end switch( bus_sample )
|
|
||||||
}
|
|
||||||
/* MAX3421 state change task and interrupt handler */
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
uint8_t MAX3421e< SS, INTR >::Task( void )
|
|
||||||
{
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
uint8_t pinvalue;
|
|
||||||
//Serial.print("Vbus state: ");
|
|
||||||
//Serial.println( vbusState, HEX );
|
|
||||||
pinvalue = INTR::IsSet(); //Read();
|
|
||||||
//pinvalue = digitalRead( MAX_INT );
|
|
||||||
if( pinvalue == 0 ) {
|
|
||||||
rcode = IntHandler();
|
|
||||||
}
|
|
||||||
// pinvalue = digitalRead( MAX_GPX );
|
|
||||||
// if( pinvalue == LOW ) {
|
|
||||||
// GpxHandler();
|
|
||||||
// }
|
|
||||||
// usbSM(); //USB state machine
|
|
||||||
return( rcode );
|
|
||||||
}
|
|
||||||
template< typename SS, typename INTR >
|
|
||||||
uint8_t MAX3421e< SS, INTR >::IntHandler()
|
|
||||||
{
|
|
||||||
uint8_t HIRQ;
|
|
||||||
uint8_t HIRQ_sendback = 0x00;
|
|
||||||
HIRQ = regRd( rHIRQ ); //determine interrupt source
|
|
||||||
//if( HIRQ & bmFRAMEIRQ ) { //->1ms SOF interrupt handler
|
|
||||||
// HIRQ_sendback |= bmFRAMEIRQ;
|
|
||||||
//}//end FRAMEIRQ handling
|
|
||||||
if( HIRQ & bmCONDETIRQ ) {
|
|
||||||
busprobe();
|
|
||||||
HIRQ_sendback |= bmCONDETIRQ;
|
|
||||||
}
|
|
||||||
/* End HIRQ interrupts handling, clear serviced IRQs */
|
|
||||||
regWr( rHIRQ, HIRQ_sendback );
|
|
||||||
return( HIRQ_sendback );
|
|
||||||
}
|
|
||||||
//template< typename SS, typename INTR >
|
|
||||||
//uint8_t MAX3421e< SS, INTR >::GpxHandler()
|
|
||||||
//{
|
|
||||||
// uint8_t GPINIRQ = regRd( rGPINIRQ ); //read GPIN IRQ register
|
|
||||||
//// if( GPINIRQ & bmGPINIRQ7 ) { //vbus overload
|
|
||||||
//// vbusPwr( OFF ); //attempt powercycle
|
|
||||||
//// delay( 1000 );
|
|
||||||
//// vbusPwr( ON );
|
|
||||||
//// regWr( rGPINIRQ, bmGPINIRQ7 );
|
|
||||||
//// }
|
|
||||||
// return( GPINIRQ );
|
|
||||||
//}
|
|
||||||
|
|
||||||
#endif //_USBHOST_H_
|
|
414
usbhub.cpp
414
usbhub.cpp
|
@ -1,414 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#include "usbhub.h"
|
|
||||||
|
|
||||||
bool USBHub::bResetInitiated = false;
|
|
||||||
|
|
||||||
USBHub::USBHub(USB *p) :
|
|
||||||
pUsb(p),
|
|
||||||
bAddress(0),
|
|
||||||
bNbrPorts(0),
|
|
||||||
bInitState(0),
|
|
||||||
qNextPollTime(0),
|
|
||||||
bPollEnable(false)
|
|
||||||
{
|
|
||||||
epInfo[0].epAddr = 0;
|
|
||||||
epInfo[0].maxPktSize = 8;
|
|
||||||
epInfo[0].epAttribs = 0;
|
|
||||||
epInfo[0].bmNakPower = USB_NAK_MAX_POWER;
|
|
||||||
|
|
||||||
epInfo[1].epAddr = 1;
|
|
||||||
epInfo[1].maxPktSize = 8; //kludge
|
|
||||||
epInfo[1].epAttribs = 0;
|
|
||||||
epInfo[1].bmNakPower = USB_NAK_NOWAIT;
|
|
||||||
|
|
||||||
if (pUsb)
|
|
||||||
pUsb->RegisterDeviceClass(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t USBHub::Init(uint8_t parent, uint8_t port, bool lowspeed)
|
|
||||||
{
|
|
||||||
uint8_t buf[32];
|
|
||||||
uint8_t rcode;
|
|
||||||
UsbDevice *p = NULL;
|
|
||||||
EpInfo *oldep_ptr = NULL;
|
|
||||||
uint8_t len = 0;
|
|
||||||
uint16_t cd_len = 0;
|
|
||||||
|
|
||||||
//USBTRACE("\r\nHub Init Start");
|
|
||||||
|
|
||||||
AddressPool &addrPool = pUsb->GetAddressPool();
|
|
||||||
|
|
||||||
switch (bInitState)
|
|
||||||
{
|
|
||||||
case 0:
|
|
||||||
if (bAddress)
|
|
||||||
return USB_ERROR_CLASS_INSTANCE_ALREADY_IN_USE;
|
|
||||||
|
|
||||||
// Get pointer to pseudo device with address 0 assigned
|
|
||||||
p = addrPool.GetUsbDevicePtr(0);
|
|
||||||
|
|
||||||
if (!p)
|
|
||||||
return USB_ERROR_ADDRESS_NOT_FOUND_IN_POOL;
|
|
||||||
|
|
||||||
if (!p->epinfo)
|
|
||||||
return USB_ERROR_EPINFO_IS_NULL;
|
|
||||||
|
|
||||||
// Save old pointer to EP_RECORD of address 0
|
|
||||||
oldep_ptr = p->epinfo;
|
|
||||||
|
|
||||||
// Temporary assign new pointer to epInfo to p->epinfo in order to avoid toggle inconsistence
|
|
||||||
p->epinfo = epInfo;
|
|
||||||
|
|
||||||
p->lowspeed = lowspeed;
|
|
||||||
|
|
||||||
// Get device descriptor
|
|
||||||
rcode = pUsb->getDevDescr( 0, 0, 8, (uint8_t*)buf );
|
|
||||||
|
|
||||||
p->lowspeed = false;
|
|
||||||
|
|
||||||
if (!rcode)
|
|
||||||
len = (buf[0] > 32) ? 32 : buf[0];
|
|
||||||
|
|
||||||
if( rcode )
|
|
||||||
{
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Extract device class from device descriptor
|
|
||||||
// If device class is not a hub return
|
|
||||||
if (((USB_DEVICE_DESCRIPTOR*)buf)->bDeviceClass != 0x09)
|
|
||||||
return USB_DEV_CONFIG_ERROR_DEVICE_NOT_SUPPORTED;
|
|
||||||
|
|
||||||
// Allocate new address according to device class
|
|
||||||
bAddress = addrPool.AllocAddress(parent, (((USB_DEVICE_DESCRIPTOR*)buf)->bDeviceClass == 0x09) ? true : false, port);
|
|
||||||
|
|
||||||
if (!bAddress)
|
|
||||||
return USB_ERROR_OUT_OF_ADDRESS_SPACE_IN_POOL;
|
|
||||||
|
|
||||||
// Extract Max Packet Size from the device descriptor
|
|
||||||
epInfo[0].maxPktSize = ((USB_DEVICE_DESCRIPTOR*)buf)->bMaxPacketSize0;
|
|
||||||
|
|
||||||
// Assign new address to the device
|
|
||||||
rcode = pUsb->setAddr( 0, 0, bAddress );
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
addrPool.FreeAddress(bAddress);
|
|
||||||
bAddress = 0;
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
//USBTRACE2("\r\nHub address: ", bAddress );
|
|
||||||
|
|
||||||
// Restore p->epinfo
|
|
||||||
p->epinfo = oldep_ptr;
|
|
||||||
|
|
||||||
if (len)
|
|
||||||
rcode = pUsb->getDevDescr( bAddress, 0, len, (uint8_t*)buf );
|
|
||||||
|
|
||||||
if(rcode)
|
|
||||||
goto FailGetDevDescr;
|
|
||||||
|
|
||||||
// Assign epInfo to epinfo pointer
|
|
||||||
rcode = pUsb->setEpInfoEntry(bAddress, 2, epInfo);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetDevTblEntry;
|
|
||||||
|
|
||||||
bInitState = 1;
|
|
||||||
|
|
||||||
case 1:
|
|
||||||
// Get hub descriptor
|
|
||||||
rcode = GetHubDescriptor(0, 8, buf);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailGetHubDescr;
|
|
||||||
|
|
||||||
// Save number of ports for future use
|
|
||||||
bNbrPorts = ((HubDescriptor*)buf)->bNbrPorts;
|
|
||||||
|
|
||||||
bInitState = 2;
|
|
||||||
|
|
||||||
case 2:
|
|
||||||
// Read configuration Descriptor in Order To Obtain Proper Configuration Value
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, 8, 0, buf);
|
|
||||||
|
|
||||||
if (!rcode)
|
|
||||||
{
|
|
||||||
cd_len = ((USB_CONFIGURATION_DESCRIPTOR*)buf)->wTotalLength;
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, cd_len, 0, buf);
|
|
||||||
}
|
|
||||||
if (rcode)
|
|
||||||
goto FailGetConfDescr;
|
|
||||||
|
|
||||||
// The following code is of no practical use in real life applications.
|
|
||||||
// It only intended for the usb protocol sniffer to properly parse hub-class requests.
|
|
||||||
{
|
|
||||||
uint8_t buf2[24];
|
|
||||||
|
|
||||||
rcode = pUsb->getConfDescr(bAddress, 0, buf[0], 0, buf2);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailGetConfDescr;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set Configuration Value
|
|
||||||
rcode = pUsb->setConf(bAddress, 0, buf[5]);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
goto FailSetConfDescr;
|
|
||||||
|
|
||||||
bInitState = 3;
|
|
||||||
|
|
||||||
case 3:
|
|
||||||
// Power on all ports
|
|
||||||
for (uint8_t j=1; j<=bNbrPorts; j++)
|
|
||||||
SetPortFeature(HUB_FEATURE_PORT_POWER, j, 0); //HubPortPowerOn(j);
|
|
||||||
|
|
||||||
pUsb->SetHubPreMask();
|
|
||||||
bPollEnable = true;
|
|
||||||
bInitState = 0;
|
|
||||||
}
|
|
||||||
bInitState = 0;
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
FailGetDevDescr:
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetDevTblEntry:
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetHubDescr:
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetConfDescr:
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailSetConfDescr:
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
FailGetPortStatus:
|
|
||||||
goto Fail;
|
|
||||||
|
|
||||||
Fail:
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t USBHub::Release()
|
|
||||||
{
|
|
||||||
pUsb->GetAddressPool().FreeAddress(bAddress);
|
|
||||||
|
|
||||||
if (bAddress == 0x41)
|
|
||||||
pUsb->SetHubPreMask();
|
|
||||||
|
|
||||||
bAddress = 0;
|
|
||||||
bNbrPorts = 0;
|
|
||||||
qNextPollTime = 0;
|
|
||||||
bPollEnable = false;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t USBHub::Poll()
|
|
||||||
{
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
|
|
||||||
if (!bPollEnable)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
if (qNextPollTime <= millis())
|
|
||||||
{
|
|
||||||
rcode = CheckHubStatus();
|
|
||||||
qNextPollTime = millis() + 100;
|
|
||||||
}
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t USBHub::CheckHubStatus()
|
|
||||||
{
|
|
||||||
uint8_t rcode;
|
|
||||||
uint8_t buf[8];
|
|
||||||
uint16_t read = 1;
|
|
||||||
|
|
||||||
rcode = pUsb->inTransfer(bAddress, 1, &read, buf);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
return rcode;
|
|
||||||
|
|
||||||
if (buf[0] & 0x01) // Hub Status Change
|
|
||||||
{
|
|
||||||
//pUsb->PrintHubStatus(addr);
|
|
||||||
//rcode = GetHubStatus(1, 0, 1, 4, buf);
|
|
||||||
//if (rcode)
|
|
||||||
//{
|
|
||||||
// Serial.print("GetHubStatus Error");
|
|
||||||
// Serial.println(rcode, HEX);
|
|
||||||
// return rcode;
|
|
||||||
//}
|
|
||||||
}
|
|
||||||
for (uint8_t port=1,mask=0x02; port<8; mask<<=1, port++)
|
|
||||||
{
|
|
||||||
if (buf[0] & mask)
|
|
||||||
{
|
|
||||||
HubEvent evt;
|
|
||||||
evt.bmEvent = 0;
|
|
||||||
|
|
||||||
rcode = GetPortStatus(port, 4, evt.evtBuff);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
rcode = PortStatusChange(port, evt);
|
|
||||||
|
|
||||||
if (rcode == HUB_ERROR_PORT_HAS_BEEN_RESET)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
return rcode;
|
|
||||||
}
|
|
||||||
} // for
|
|
||||||
|
|
||||||
for (uint8_t port=1; port<=bNbrPorts; port++)
|
|
||||||
{
|
|
||||||
HubEvent evt;
|
|
||||||
evt.bmEvent = 0;
|
|
||||||
|
|
||||||
rcode = GetPortStatus(port, 4, evt.evtBuff);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if ((evt.bmStatus & bmHUB_PORT_STATE_CHECK_DISABLED) != bmHUB_PORT_STATE_DISABLED)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
// Emulate connection event for the port
|
|
||||||
evt.bmChange |= bmHUB_PORT_STATUS_C_PORT_CONNECTION;
|
|
||||||
|
|
||||||
rcode = PortStatusChange(port, evt);
|
|
||||||
|
|
||||||
if (rcode == HUB_ERROR_PORT_HAS_BEEN_RESET)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
return rcode;
|
|
||||||
} // for
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t USBHub::PortStatusChange(uint8_t port, HubEvent &evt)
|
|
||||||
{
|
|
||||||
switch (evt.bmEvent)
|
|
||||||
{
|
|
||||||
// Device connected event
|
|
||||||
case bmHUB_PORT_EVENT_CONNECT:
|
|
||||||
case bmHUB_PORT_EVENT_LS_CONNECT:
|
|
||||||
if (bResetInitiated)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
ClearPortFeature(HUB_FEATURE_C_PORT_ENABLE, port, 0);
|
|
||||||
ClearPortFeature(HUB_FEATURE_C_PORT_CONNECTION, port, 0);
|
|
||||||
SetPortFeature(HUB_FEATURE_PORT_RESET, port, 0);
|
|
||||||
bResetInitiated = true;
|
|
||||||
return HUB_ERROR_PORT_HAS_BEEN_RESET;
|
|
||||||
|
|
||||||
// Device disconnected event
|
|
||||||
case bmHUB_PORT_EVENT_DISCONNECT:
|
|
||||||
ClearPortFeature(HUB_FEATURE_C_PORT_ENABLE, port, 0);
|
|
||||||
ClearPortFeature(HUB_FEATURE_C_PORT_CONNECTION, port, 0);
|
|
||||||
bResetInitiated = false;
|
|
||||||
|
|
||||||
UsbDeviceAddress a;
|
|
||||||
a.bmHub = 0;
|
|
||||||
a.bmParent = bAddress;
|
|
||||||
a.bmAddress = port;
|
|
||||||
pUsb->ReleaseDevice(a.devAddress);
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
// Reset complete event
|
|
||||||
case bmHUB_PORT_EVENT_RESET_COMPLETE:
|
|
||||||
case bmHUB_PORT_EVENT_LS_RESET_COMPLETE:
|
|
||||||
ClearPortFeature(HUB_FEATURE_C_PORT_RESET, port, 0);
|
|
||||||
ClearPortFeature(HUB_FEATURE_C_PORT_CONNECTION, port, 0);
|
|
||||||
|
|
||||||
delay(20);
|
|
||||||
|
|
||||||
a.devAddress = bAddress;
|
|
||||||
|
|
||||||
pUsb->Configuring(a.bmAddress, port, (evt.bmStatus & bmHUB_PORT_STATUS_PORT_LOW_SPEED) );
|
|
||||||
bResetInitiated = false;
|
|
||||||
break;
|
|
||||||
|
|
||||||
} // switch (evt.bmEvent)
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void PrintHubPortStatus(USBHub *hubptr, uint8_t addr, uint8_t port, bool print_changes)
|
|
||||||
{
|
|
||||||
uint8_t rcode = 0;
|
|
||||||
HubEvent evt;
|
|
||||||
|
|
||||||
rcode = hubptr->GetPortStatus(port, 4, evt.evtBuff);
|
|
||||||
|
|
||||||
if (rcode)
|
|
||||||
{
|
|
||||||
Serial.println("ERROR!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
Serial.print("\r\nPort ");
|
|
||||||
Serial.println(port, DEC);
|
|
||||||
|
|
||||||
Serial.println("Status");
|
|
||||||
Serial.print("CONNECTION:\t");
|
|
||||||
Serial.println((evt.bmStatus & bmHUB_PORT_STATUS_PORT_CONNECTION) > 0, DEC);
|
|
||||||
Serial.print("ENABLE:\t\t");
|
|
||||||
Serial.println((evt.bmStatus & bmHUB_PORT_STATUS_PORT_ENABLE) > 0, DEC);
|
|
||||||
Serial.print("SUSPEND:\t");
|
|
||||||
Serial.println((evt.bmStatus & bmHUB_PORT_STATUS_PORT_SUSPEND) > 0, DEC);
|
|
||||||
Serial.print("OVER_CURRENT:\t");
|
|
||||||
Serial.println((evt.bmStatus & bmHUB_PORT_STATUS_PORT_OVER_CURRENT) > 0, DEC);
|
|
||||||
Serial.print("RESET:\t\t");
|
|
||||||
Serial.println((evt.bmStatus & bmHUB_PORT_STATUS_PORT_RESET) > 0, DEC);
|
|
||||||
Serial.print("POWER:\t\t");
|
|
||||||
Serial.println((evt.bmStatus & bmHUB_PORT_STATUS_PORT_POWER) > 0, DEC);
|
|
||||||
Serial.print("LOW_SPEED:\t");
|
|
||||||
Serial.println((evt.bmStatus & bmHUB_PORT_STATUS_PORT_LOW_SPEED) > 0, DEC);
|
|
||||||
Serial.print("HIGH_SPEED:\t");
|
|
||||||
Serial.println((evt.bmStatus & bmHUB_PORT_STATUS_PORT_HIGH_SPEED) > 0, DEC);
|
|
||||||
Serial.print("TEST:\t\t");
|
|
||||||
Serial.println((evt.bmStatus & bmHUB_PORT_STATUS_PORT_TEST) > 0, DEC);
|
|
||||||
Serial.print("INDICATOR:\t");
|
|
||||||
Serial.println((evt.bmStatus & bmHUB_PORT_STATUS_PORT_INDICATOR) > 0, DEC);
|
|
||||||
|
|
||||||
if (!print_changes)
|
|
||||||
return;
|
|
||||||
|
|
||||||
Serial.println("\nChange");
|
|
||||||
Serial.print("CONNECTION:\t");
|
|
||||||
Serial.println((evt.bmChange & bmHUB_PORT_STATUS_C_PORT_CONNECTION) > 0, DEC);
|
|
||||||
Serial.print("ENABLE:\t\t");
|
|
||||||
Serial.println((evt.bmChange & bmHUB_PORT_STATUS_C_PORT_ENABLE) > 0, DEC);
|
|
||||||
Serial.print("SUSPEND:\t");
|
|
||||||
Serial.println((evt.bmChange & bmHUB_PORT_STATUS_C_PORT_SUSPEND) > 0, DEC);
|
|
||||||
Serial.print("OVER_CURRENT:\t");
|
|
||||||
Serial.println((evt.bmChange & bmHUB_PORT_STATUS_C_PORT_OVER_CURRENT) > 0, DEC);
|
|
||||||
Serial.print("RESET:\t\t");
|
|
||||||
Serial.println((evt.bmChange & bmHUB_PORT_STATUS_C_PORT_RESET) > 0, DEC);
|
|
||||||
}
|
|
259
usbhub.h
259
usbhub.h
|
@ -1,259 +0,0 @@
|
||||||
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
||||||
|
|
||||||
This software may be distributed and modified under the terms of the GNU
|
|
||||||
General Public License version 2 (GPL2) as published by the Free Software
|
|
||||||
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
||||||
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
||||||
on this software must also be made publicly available under the terms of
|
|
||||||
the GPL2 ("Copyleft").
|
|
||||||
|
|
||||||
Contact information
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
Circuits At Home, LTD
|
|
||||||
Web : http://www.circuitsathome.com
|
|
||||||
e-mail : support@circuitsathome.com
|
|
||||||
*/
|
|
||||||
#if !defined(__USBHUB_H__)
|
|
||||||
#define __USBHUB_H__
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <avr/pgmspace.h>
|
|
||||||
#include "avrpins.h"
|
|
||||||
#include "max3421e.h"
|
|
||||||
#include "usbhost.h"
|
|
||||||
#include "usb_ch9.h"
|
|
||||||
#include "Usb.h"
|
|
||||||
|
|
||||||
#if defined(ARDUINO) && ARDUINO >=100
|
|
||||||
#include "Arduino.h"
|
|
||||||
#else
|
|
||||||
#include <WProgram.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define USB_DESCRIPTOR_HUB 0x09 // Hub descriptor type
|
|
||||||
|
|
||||||
// Hub Requests
|
|
||||||
#define bmREQ_CLEAR_HUB_FEATURE USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_DEVICE
|
|
||||||
#define bmREQ_CLEAR_PORT_FEATURE USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_OTHER
|
|
||||||
#define bmREQ_CLEAR_TT_BUFFER USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_OTHER
|
|
||||||
#define bmREQ_GET_HUB_DESCRIPTOR USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_DEVICE
|
|
||||||
#define bmREQ_GET_HUB_STATUS USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_DEVICE
|
|
||||||
#define bmREQ_GET_PORT_STATUS USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_OTHER
|
|
||||||
#define bmREQ_RESET_TT USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_OTHER
|
|
||||||
#define bmREQ_SET_HUB_DESCRIPTOR USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_DEVICE
|
|
||||||
#define bmREQ_SET_HUB_FEATURE USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_DEVICE
|
|
||||||
#define bmREQ_SET_PORT_FEATURE USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_OTHER
|
|
||||||
#define bmREQ_GET_TT_STATE USB_SETUP_DEVICE_TO_HOST|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_OTHER
|
|
||||||
#define bmREQ_STOP_TT USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_OTHER
|
|
||||||
|
|
||||||
// Hub Class Requests
|
|
||||||
#define HUB_REQUEST_CLEAR_TT_BUFFER 8
|
|
||||||
#define HUB_REQUEST_RESET_TT 9
|
|
||||||
#define HUB_REQUEST_GET_TT_STATE 10
|
|
||||||
#define HUB_REQUEST_STOP_TT 11
|
|
||||||
|
|
||||||
// Hub Features
|
|
||||||
#define HUB_FEATURE_C_HUB_LOCAL_POWER 0
|
|
||||||
#define HUB_FEATURE_C_HUB_OVER_CURRENT 1
|
|
||||||
#define HUB_FEATURE_PORT_CONNECTION 0
|
|
||||||
#define HUB_FEATURE_PORT_ENABLE 1
|
|
||||||
#define HUB_FEATURE_PORT_SUSPEND 2
|
|
||||||
#define HUB_FEATURE_PORT_OVER_CURRENT 3
|
|
||||||
#define HUB_FEATURE_PORT_RESET 4
|
|
||||||
#define HUB_FEATURE_PORT_POWER 8
|
|
||||||
#define HUB_FEATURE_PORT_LOW_SPEED 9
|
|
||||||
#define HUB_FEATURE_C_PORT_CONNECTION 16
|
|
||||||
#define HUB_FEATURE_C_PORT_ENABLE 17
|
|
||||||
#define HUB_FEATURE_C_PORT_SUSPEND 18
|
|
||||||
#define HUB_FEATURE_C_PORT_OVER_CURRENT 19
|
|
||||||
#define HUB_FEATURE_C_PORT_RESET 20
|
|
||||||
#define HUB_FEATURE_PORT_TEST 21
|
|
||||||
#define HUB_FEATURE_PORT_INDICATOR 22
|
|
||||||
|
|
||||||
// Hub Port Test Modes
|
|
||||||
#define HUB_PORT_TEST_MODE_J 1
|
|
||||||
#define HUB_PORT_TEST_MODE_K 2
|
|
||||||
#define HUB_PORT_TEST_MODE_SE0_NAK 3
|
|
||||||
#define HUB_PORT_TEST_MODE_PACKET 4
|
|
||||||
#define HUB_PORT_TEST_MODE_FORCE_ENABLE 5
|
|
||||||
|
|
||||||
// Hub Port Indicator Color
|
|
||||||
#define HUB_PORT_INDICATOR_AUTO 0
|
|
||||||
#define HUB_PORT_INDICATOR_AMBER 1
|
|
||||||
#define HUB_PORT_INDICATOR_GREEN 2
|
|
||||||
#define HUB_PORT_INDICATOR_OFF 3
|
|
||||||
|
|
||||||
// Hub Port Status Bitmasks
|
|
||||||
#define bmHUB_PORT_STATUS_PORT_CONNECTION 0x0001
|
|
||||||
#define bmHUB_PORT_STATUS_PORT_ENABLE 0x0002
|
|
||||||
#define bmHUB_PORT_STATUS_PORT_SUSPEND 0x0004
|
|
||||||
#define bmHUB_PORT_STATUS_PORT_OVER_CURRENT 0x0008
|
|
||||||
#define bmHUB_PORT_STATUS_PORT_RESET 0x0010
|
|
||||||
#define bmHUB_PORT_STATUS_PORT_POWER 0x0100
|
|
||||||
#define bmHUB_PORT_STATUS_PORT_LOW_SPEED 0x0200
|
|
||||||
#define bmHUB_PORT_STATUS_PORT_HIGH_SPEED 0x0400
|
|
||||||
#define bmHUB_PORT_STATUS_PORT_TEST 0x0800
|
|
||||||
#define bmHUB_PORT_STATUS_PORT_INDICATOR 0x1000
|
|
||||||
|
|
||||||
// Hub Port Status Change Bitmasks (used one byte instead of two)
|
|
||||||
#define bmHUB_PORT_STATUS_C_PORT_CONNECTION 0x0001
|
|
||||||
#define bmHUB_PORT_STATUS_C_PORT_ENABLE 0x0002
|
|
||||||
#define bmHUB_PORT_STATUS_C_PORT_SUSPEND 0x0004
|
|
||||||
#define bmHUB_PORT_STATUS_C_PORT_OVER_CURRENT 0x0008
|
|
||||||
#define bmHUB_PORT_STATUS_C_PORT_RESET 0x0010
|
|
||||||
|
|
||||||
// Hub Status Bitmasks (used one byte instead of two)
|
|
||||||
#define bmHUB_STATUS_LOCAL_POWER_SOURCE 0x01
|
|
||||||
#define bmHUB_STATUS_OVER_CURRENT 0x12
|
|
||||||
|
|
||||||
// Hub Status Change Bitmasks (used one byte instead of two)
|
|
||||||
#define bmHUB_STATUS_C_LOCAL_POWER_SOURCE 0x01
|
|
||||||
#define bmHUB_STATUS_C_OVER_CURRENT 0x12
|
|
||||||
|
|
||||||
|
|
||||||
// Hub Port Configuring Substates
|
|
||||||
#define USB_STATE_HUB_PORT_CONFIGURING 0xb0
|
|
||||||
#define USB_STATE_HUB_PORT_POWERED_OFF 0xb1
|
|
||||||
#define USB_STATE_HUB_PORT_WAIT_FOR_POWER_GOOD 0xb2
|
|
||||||
#define USB_STATE_HUB_PORT_DISCONNECTED 0xb3
|
|
||||||
#define USB_STATE_HUB_PORT_DISABLED 0xb4
|
|
||||||
#define USB_STATE_HUB_PORT_RESETTING 0xb5
|
|
||||||
#define USB_STATE_HUB_PORT_ENABLED 0xb6
|
|
||||||
|
|
||||||
// Additional Error Codes
|
|
||||||
#define HUB_ERROR_PORT_HAS_BEEN_RESET 0xb1
|
|
||||||
|
|
||||||
// The bit mask to check for all necessary state bits
|
|
||||||
#define bmHUB_PORT_STATUS_ALL_MAIN ((0UL | bmHUB_PORT_STATUS_C_PORT_CONNECTION | bmHUB_PORT_STATUS_C_PORT_ENABLE | bmHUB_PORT_STATUS_C_PORT_SUSPEND | bmHUB_PORT_STATUS_C_PORT_RESET) << 16) | bmHUB_PORT_STATUS_PORT_POWER | bmHUB_PORT_STATUS_PORT_ENABLE | bmHUB_PORT_STATUS_PORT_CONNECTION | bmHUB_PORT_STATUS_PORT_SUSPEND)
|
|
||||||
|
|
||||||
// Bit mask to check for DISABLED state in HubEvent::bmStatus field
|
|
||||||
#define bmHUB_PORT_STATE_CHECK_DISABLED (0x0000 | bmHUB_PORT_STATUS_PORT_POWER | bmHUB_PORT_STATUS_PORT_ENABLE | bmHUB_PORT_STATUS_PORT_CONNECTION | bmHUB_PORT_STATUS_PORT_SUSPEND)
|
|
||||||
|
|
||||||
// Hub Port States
|
|
||||||
#define bmHUB_PORT_STATE_DISABLED (0x0000 | bmHUB_PORT_STATUS_PORT_POWER | bmHUB_PORT_STATUS_PORT_CONNECTION)
|
|
||||||
|
|
||||||
// Hub Port Events
|
|
||||||
#define bmHUB_PORT_EVENT_CONNECT (((0UL | bmHUB_PORT_STATUS_C_PORT_CONNECTION) << 16) | bmHUB_PORT_STATUS_PORT_POWER | bmHUB_PORT_STATUS_PORT_CONNECTION)
|
|
||||||
#define bmHUB_PORT_EVENT_DISCONNECT (((0UL | bmHUB_PORT_STATUS_C_PORT_CONNECTION) << 16) | bmHUB_PORT_STATUS_PORT_POWER)
|
|
||||||
#define bmHUB_PORT_EVENT_RESET_COMPLETE (((0UL | bmHUB_PORT_STATUS_C_PORT_RESET) << 16) | bmHUB_PORT_STATUS_PORT_POWER | bmHUB_PORT_STATUS_PORT_ENABLE | bmHUB_PORT_STATUS_PORT_CONNECTION)
|
|
||||||
|
|
||||||
#define bmHUB_PORT_EVENT_LS_CONNECT (((0UL | bmHUB_PORT_STATUS_C_PORT_CONNECTION) << 16) | bmHUB_PORT_STATUS_PORT_POWER | bmHUB_PORT_STATUS_PORT_CONNECTION | bmHUB_PORT_STATUS_PORT_LOW_SPEED)
|
|
||||||
#define bmHUB_PORT_EVENT_LS_RESET_COMPLETE (((0UL | bmHUB_PORT_STATUS_C_PORT_RESET) << 16) | bmHUB_PORT_STATUS_PORT_POWER | bmHUB_PORT_STATUS_PORT_ENABLE | bmHUB_PORT_STATUS_PORT_CONNECTION | bmHUB_PORT_STATUS_PORT_LOW_SPEED)
|
|
||||||
#define bmHUB_PORT_EVENT_LS_PORT_ENABLED (((0UL | bmHUB_PORT_STATUS_C_PORT_CONNECTION | bmHUB_PORT_STATUS_C_PORT_ENABLE) << 16) | bmHUB_PORT_STATUS_PORT_POWER | bmHUB_PORT_STATUS_PORT_ENABLE | bmHUB_PORT_STATUS_PORT_CONNECTION | bmHUB_PORT_STATUS_PORT_LOW_SPEED)
|
|
||||||
|
|
||||||
struct HubDescriptor
|
|
||||||
{
|
|
||||||
uint8_t bDescLength; // descriptor length
|
|
||||||
uint8_t bDescriptorType; // descriptor type
|
|
||||||
uint8_t bNbrPorts; // number of ports a hub equiped with
|
|
||||||
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
uint16_t LogPwrSwitchMode : 2;
|
|
||||||
uint16_t CompoundDevice : 1;
|
|
||||||
uint16_t OverCurrentProtectMode : 2;
|
|
||||||
uint16_t TTThinkTime : 2;
|
|
||||||
uint16_t PortIndicatorsSupported : 1;
|
|
||||||
uint16_t Reserved : 8;
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t bPwrOn2PwrGood;
|
|
||||||
uint8_t bHubContrCurrent;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct HubEvent
|
|
||||||
{
|
|
||||||
union
|
|
||||||
{
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
uint16_t bmStatus; // port status bits
|
|
||||||
uint16_t bmChange; // port status change bits
|
|
||||||
};
|
|
||||||
uint32_t bmEvent;
|
|
||||||
uint8_t evtBuff[4];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
class USBHub : USBDeviceConfig
|
|
||||||
{
|
|
||||||
static bool bResetInitiated; // True when reset is triggered
|
|
||||||
|
|
||||||
USB *pUsb; // USB class instance pointer
|
|
||||||
|
|
||||||
EpInfo epInfo[2]; // interrupt endpoint info structure
|
|
||||||
|
|
||||||
uint8_t bAddress; // address
|
|
||||||
uint8_t bNbrPorts; // number of ports
|
|
||||||
uint8_t bInitState; // initialization state variable
|
|
||||||
uint32_t qNextPollTime; // next poll time
|
|
||||||
bool bPollEnable; // poll enable flag
|
|
||||||
|
|
||||||
uint8_t CheckHubStatus();
|
|
||||||
uint8_t PortStatusChange(uint8_t port, HubEvent &evt);
|
|
||||||
|
|
||||||
public:
|
|
||||||
USBHub(USB *p);
|
|
||||||
|
|
||||||
uint8_t ClearHubFeature( uint8_t fid );
|
|
||||||
uint8_t ClearPortFeature( uint8_t fid, uint8_t port, uint8_t sel = 0 );
|
|
||||||
uint8_t GetHubDescriptor( uint8_t index, uint16_t nbytes, uint8_t *dataptr );
|
|
||||||
uint8_t GetHubStatus( uint16_t nbytes, uint8_t* dataptr );
|
|
||||||
uint8_t GetPortStatus( uint8_t port, uint16_t nbytes, uint8_t* dataptr );
|
|
||||||
uint8_t SetHubDescriptor( uint8_t port, uint16_t nbytes, uint8_t* dataptr );
|
|
||||||
uint8_t SetHubFeature( uint8_t fid );
|
|
||||||
uint8_t SetPortFeature( uint8_t fid, uint8_t port, uint8_t sel = 0 );
|
|
||||||
|
|
||||||
void PrintHubStatus();
|
|
||||||
|
|
||||||
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
||||||
virtual uint8_t Release();
|
|
||||||
virtual uint8_t Poll();
|
|
||||||
virtual uint8_t GetAddress() { return bAddress; };
|
|
||||||
};
|
|
||||||
|
|
||||||
// Clear Hub Feature
|
|
||||||
inline uint8_t USBHub::ClearHubFeature( uint8_t fid )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_CLEAR_HUB_FEATURE, USB_REQUEST_CLEAR_FEATURE, fid, 0, 0, 0, 0, NULL, NULL ));
|
|
||||||
}
|
|
||||||
// Clear Port Feature
|
|
||||||
inline uint8_t USBHub::ClearPortFeature( uint8_t fid, uint8_t port, uint8_t sel )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_CLEAR_PORT_FEATURE, USB_REQUEST_CLEAR_FEATURE, fid, 0, ((0x0000|port)|(sel<<8)), 0, 0, NULL, NULL ));
|
|
||||||
}
|
|
||||||
// Get Hub Descriptor
|
|
||||||
inline uint8_t USBHub::GetHubDescriptor( uint8_t index, uint16_t nbytes, uint8_t *dataptr )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_GET_HUB_DESCRIPTOR, USB_REQUEST_GET_DESCRIPTOR, index, 0x29, 0, nbytes, nbytes, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
// Get Hub Status
|
|
||||||
inline uint8_t USBHub::GetHubStatus( uint16_t nbytes, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_GET_HUB_STATUS, USB_REQUEST_GET_STATUS, 0, 0, 0x0000, nbytes, nbytes, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
// Get Port Status
|
|
||||||
inline uint8_t USBHub::GetPortStatus( uint8_t port, uint16_t nbytes, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_GET_PORT_STATUS, USB_REQUEST_GET_STATUS, 0, 0, port, nbytes, nbytes, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
// Set Hub Descriptor
|
|
||||||
inline uint8_t USBHub::SetHubDescriptor( uint8_t port, uint16_t nbytes, uint8_t* dataptr )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_SET_HUB_DESCRIPTOR, USB_REQUEST_SET_DESCRIPTOR, 0, 0, port, nbytes, nbytes, dataptr, NULL ));
|
|
||||||
}
|
|
||||||
// Set Hub Feature
|
|
||||||
inline uint8_t USBHub::SetHubFeature( uint8_t fid )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_SET_HUB_FEATURE, USB_REQUEST_SET_FEATURE, fid, 0, 0, 0, 0, NULL, NULL ));
|
|
||||||
}
|
|
||||||
// Set Port Feature
|
|
||||||
inline uint8_t USBHub::SetPortFeature( uint8_t fid, uint8_t port, uint8_t sel )
|
|
||||||
{
|
|
||||||
return( pUsb->ctrlReq( bAddress, 0, bmREQ_SET_PORT_FEATURE, USB_REQUEST_SET_FEATURE, fid, 0, (((0x0000|sel)<<8)|port), 0, 0, NULL, NULL ));
|
|
||||||
}
|
|
||||||
|
|
||||||
void PrintHubPortStatus(USB *usbptr, uint8_t addr, uint8_t port, bool print_changes = false);
|
|
||||||
|
|
||||||
#endif // __USBHUB_H__
|
|
Loading…
Reference in a new issue