USB_Host_Shield_2.0/PS3BT.h

139 lines
6 KiB
C
Raw Normal View History

2012-03-04 02:38:50 +01:00
/* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
2012-03-02 08:34:29 +01:00
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
-------------------
2012-03-04 02:38:50 +01:00
Kristian Lauszus, TKJ Electronics
2012-03-02 08:34:29 +01:00
Web : http://www.tkjelectronics.com
2012-03-04 02:38:50 +01:00
e-mail : kristianl@tkjelectronics.com
2012-03-02 08:34:29 +01:00
*/
#ifndef _ps3bt_h_
#define _ps3bt_h_
2012-08-04 12:20:47 +02:00
#include "BTD.h"
#include "PS3Enums.h"
2012-03-02 08:34:29 +01:00
#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
2012-03-02 08:34:29 +01:00
/* Bluetooth L2CAP states for L2CAP_task() */
2012-08-17 14:18:55 +02:00
#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
2012-03-02 08:34:29 +01:00
/* L2CAP event flags */
2012-08-04 12:20:47 +02:00
#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
2012-03-02 08:34:29 +01:00
/*Macros for L2CAP event flag tests */
2012-08-04 12:20:47 +02:00
#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)
2012-03-02 08:34:29 +01:00
2012-08-04 12:20:47 +02:00
class PS3BT : public BluetoothService {
2012-05-24 14:39:01 +02:00
public:
2012-08-04 12:20:47 +02:00
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
2012-08-08 05:40:53 +02:00
virtual void Run(); // Used to run part of the state maschine
virtual void Reset(); // Use this to reset the service
2012-08-04 12:20:47 +02:00
virtual void disconnect(); // Use this void to disconnect any of the controllers
2012-03-02 08:34:29 +01:00
/* PS3 Controller Commands */
bool getButtonPress(Button b);
bool getButtonClick(Button b);
2012-03-02 08:34:29 +01:00
uint8_t getAnalogButton(AnalogButton a);
uint8_t getAnalogHat(AnalogHat a);
2012-06-01 17:27:21 +02:00
int16_t getSensor(Sensor a);
2012-04-24 01:35:43 +02:00
double getAngle(Angle a);
double get9DOFValues(Sensor a);
2012-03-02 08:34:29 +01:00
bool getStatus(Status c);
String getStatusString();
2012-06-01 18:47:15 +02:00
String getTemperature();
2012-03-02 08:34:29 +01:00
/* 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);
2012-05-09 18:38:38 +02:00
void setLedToggle(LED a);
2012-08-04 12:20:47 +02:00
2012-03-02 08:34:29 +01:00
/* 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);
2012-05-26 01:46:18 +02:00
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
2012-03-02 08:34:29 +01:00
2012-08-04 12:20:47 +02:00
private:
2012-03-02 08:34:29 +01:00
/* mandatory members */
2012-08-04 12:20:47 +02:00
BTD *pBtd;
2012-08-08 05:40:53 +02:00
void L2CAP_task(); // L2CAP state machine
2012-08-04 12:20:47 +02:00
/* Variables filled from HCI event management */
2012-04-24 01:35:43 +02:00
int16_t hci_handle;
2012-08-04 12:20:47 +02:00
uint8_t remote_name[30]; // first 30 chars of remote name
2012-03-02 08:34:29 +01:00
/* variables used by high level L2CAP task */
uint8_t l2cap_state;
uint16_t l2cap_event_flag;// l2cap flags of received bluetooth events
2012-04-15 01:42:16 +02:00
unsigned long timer;
2012-03-02 08:34:29 +01:00
uint32_t ButtonState;
uint32_t OldButtonState;
uint32_t ButtonClickState;
2012-03-02 08:34:29 +01:00
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
2012-08-04 20:10:59 +02:00
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
2012-03-02 08:34:29 +01:00
/* L2CAP Channels */
uint8_t control_scid[2];// L2CAP source CID for HID_Control
2012-08-04 12:20:47 +02:00
uint8_t control_dcid[2];//0x0040
2012-03-02 08:34:29 +01:00
uint8_t interrupt_scid[2];// L2CAP source CID for HID_Interrupt
uint8_t interrupt_dcid[2];//0x0041
2012-08-04 12:20:47 +02:00
uint8_t identifier;//Identifier for connection
2012-03-02 08:34:29 +01:00
/* HID Commands */
2012-08-04 12:20:47 +02:00
void HID_Command(uint8_t* data, uint8_t nbytes);
void HIDMove_Command(uint8_t* data, uint8_t nbytes);
2012-03-02 08:34:29 +01:00
void enable_sixaxis();//Command used to enable the Dualshock 3 and Navigation controller to send data via USB
};
#endif