diff --git a/_u_h_s2__gpio_8cpp.html b/_u_h_s2__gpio_8cpp.html new file mode 100644 index 00000000..d733f2e8 --- /dev/null +++ b/_u_h_s2__gpio_8cpp.html @@ -0,0 +1,106 @@ + + + + + + +USB Host Shield 2.0: UHS2_gpio.cpp File Reference + + + + + + + + + + +
+
+ + + + + + +
+
USB Host Shield 2.0 +
+
+
+ + + + + + +
+ All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
+ + +
+ +
+ +
+
+
+
UHS2_gpio.cpp File Reference
+
+
+
#include "UHS2_gpio.h"
+
+Include dependency graph for UHS2_gpio.cpp:
+
+
+ + +
+
+

Go to the source code of this file.

+
+ + + + diff --git a/_u_h_s2__gpio_8cpp__incl.map b/_u_h_s2__gpio_8cpp__incl.map new file mode 100644 index 00000000..be3fc23e --- /dev/null +++ b/_u_h_s2__gpio_8cpp__incl.map @@ -0,0 +1,4 @@ + + + + diff --git a/_u_h_s2__gpio_8cpp__incl.md5 b/_u_h_s2__gpio_8cpp__incl.md5 new file mode 100644 index 00000000..7486a2d4 --- /dev/null +++ b/_u_h_s2__gpio_8cpp__incl.md5 @@ -0,0 +1 @@ +5cebe117c82aae024c0d654d4011616a \ No newline at end of file diff --git a/_u_h_s2__gpio_8cpp__incl.png b/_u_h_s2__gpio_8cpp__incl.png new file mode 100644 index 00000000..7cbae3c7 Binary files /dev/null and b/_u_h_s2__gpio_8cpp__incl.png differ diff --git a/_u_h_s2__gpio_8cpp_source.html b/_u_h_s2__gpio_8cpp_source.html new file mode 100644 index 00000000..693faaf7 --- /dev/null +++ b/_u_h_s2__gpio_8cpp_source.html @@ -0,0 +1,163 @@ + + + + + + +USB Host Shield 2.0: UHS2_gpio.cpp Source File + + + + + + + + + + +
+
+ + + + + + +
+
USB Host Shield 2.0 +
+
+
+ + + + + +
+ +
+ All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
+ + +
+ +
+ +
+
+
UHS2_gpio.cpp
+
+
+Go to the documentation of this file.
1 /* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
+
2 
+
3 This program is free software; you can redistribute it and/or modify
+
4 it under the terms of the GNU General Public License as published by
+
5 the Free Software Foundation; either version 2 of the License, or
+
6 (at your option) any later version.
+
7 
+
8 This program is distributed in the hope that it will be useful,
+
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
+
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+
11 GNU General Public License for more details.
+
12 
+
13 You should have received a copy of the GNU General Public License
+
14 along with this program; if not, write to the Free Software
+
15 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
16 
+
17 Contact information
+
18 -------------------
+
19 
+
20 Circuits At Home, LTD
+
21 Web : http://www.circuitsathome.com
+
22 e-mail : support@circuitsathome.com
+
23 
+
24 UHS2_GPIO implements "wiring" style GPIO access. Implemented by Brian Walton brian@riban.co.uk
+
25  */
+
26 
+
27 #include "UHS2_gpio.h"
+
28 
+
32 UHS2_GPIO::UHS2_GPIO(USB *pUsb) : m_pUsb(pUsb)
+
33 {
+
34 }
+
35 
+
40 void UHS2_GPIO::digitalWrite(uint8_t pin, uint8_t val) {
+
41  if(pin > 7)
+
42  return;
+
43  uint8_t nValue = m_pUsb->gpioRdOutput();
+
44  uint8_t nMask = 1 << pin;
+
45  nValue &= (~nMask);
+
46  if(val)
+
47  nValue |= (nMask);
+
48  m_pUsb->gpioWr(nValue);
+
49 }
+
50 
+
55 int UHS2_GPIO::digitalRead(uint8_t pin) {
+
56  if(pin > 7)
+
57  return -1;
+
58  uint8_t nMask = 1 << pin;
+
59  uint8_t nValue = m_pUsb->gpioRd();
+
60  return ((nValue & nMask)?1:0);
+
61 }
+
62 
+
68 int UHS2_GPIO::digitalReadOutput(uint8_t pin) {
+
69  if(pin > 7)
+
70  return -1;
+
71  uint8_t nMask = 1 << pin;
+
72  uint8_t nValue = m_pUsb->gpioRdOutput();
+
73  return ((nValue & nMask)?1:0);
+
74 }
+
int digitalReadOutput(uint8_t pin)
Read the value from a GPIO output pin.
Definition: UHS2_gpio.cpp:68
+ +
int digitalRead(uint8_t pin)
Read the value from a GPIO input pin.
Definition: UHS2_gpio.cpp:55
+
uint8_t gpioRdOutput()
Reads the current GPI output values.
Definition: usbhost.h:401
+
void gpioWr(uint8_t data)
Definition: usbhost.h:274
+
uint8_t gpioRd()
Reads the current GPI input values.
Definition: usbhost.h:388
+
void digitalWrite(uint8_t pin, uint8_t val)
Set a GPIO output value.
Definition: UHS2_gpio.cpp:40
+
UHS2_GPIO(USB *pUsb)
Implement an instance of a UHS2_GPIO object.
Definition: UHS2_gpio.cpp:32
+
Definition: UsbCore.h:208
+
+ + + + diff --git a/_u_h_s2__gpio_8h.html b/_u_h_s2__gpio_8h.html new file mode 100644 index 00000000..9e6dad32 --- /dev/null +++ b/_u_h_s2__gpio_8h.html @@ -0,0 +1,121 @@ + + + + + + +USB Host Shield 2.0: UHS2_gpio.h File Reference + + + + + + + + + + +
+
+ + + + + + +
+
USB Host Shield 2.0 +
+
+
+ + + + + + +
+ All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
+ + +
+ +
+ +
+
+
+Classes
+
+
UHS2_gpio.h File Reference
+
+
+
#include "Usb.h"
+
+Include dependency graph for UHS2_gpio.h:
+
+
+ + +
+
+This graph shows which files directly or indirectly include this file:
+
+
+ + +
+
+

Go to the source code of this file.

+ + + + +

+Classes

class  UHS2_GPIO
 
+
+ + + + diff --git a/_u_h_s2__gpio_8h__dep__incl.map b/_u_h_s2__gpio_8h__dep__incl.map new file mode 100644 index 00000000..1c7a5990 --- /dev/null +++ b/_u_h_s2__gpio_8h__dep__incl.map @@ -0,0 +1,3 @@ + + + diff --git a/_u_h_s2__gpio_8h__dep__incl.md5 b/_u_h_s2__gpio_8h__dep__incl.md5 new file mode 100644 index 00000000..dce6d804 --- /dev/null +++ b/_u_h_s2__gpio_8h__dep__incl.md5 @@ -0,0 +1 @@ +51334fbe4521a42c144b2eda1f0a1d4e \ No newline at end of file diff --git a/_u_h_s2__gpio_8h__dep__incl.png b/_u_h_s2__gpio_8h__dep__incl.png new file mode 100644 index 00000000..09b087eb Binary files /dev/null and b/_u_h_s2__gpio_8h__dep__incl.png differ diff --git a/_u_h_s2__gpio_8h__incl.map b/_u_h_s2__gpio_8h__incl.map new file mode 100644 index 00000000..a1f406df --- /dev/null +++ b/_u_h_s2__gpio_8h__incl.map @@ -0,0 +1,3 @@ + + + diff --git a/_u_h_s2__gpio_8h__incl.md5 b/_u_h_s2__gpio_8h__incl.md5 new file mode 100644 index 00000000..29b3251d --- /dev/null +++ b/_u_h_s2__gpio_8h__incl.md5 @@ -0,0 +1 @@ +2c9161c2a6abcd83c0adca7c1b8a33b7 \ No newline at end of file diff --git a/_u_h_s2__gpio_8h__incl.png b/_u_h_s2__gpio_8h__incl.png new file mode 100644 index 00000000..3623a86f Binary files /dev/null and b/_u_h_s2__gpio_8h__incl.png differ diff --git a/_u_h_s2__gpio_8h_source.html b/_u_h_s2__gpio_8h_source.html new file mode 100644 index 00000000..667990b6 --- /dev/null +++ b/_u_h_s2__gpio_8h_source.html @@ -0,0 +1,147 @@ + + + + + + +USB Host Shield 2.0: UHS2_gpio.h Source File + + + + + + + + + + +
+
+ + + + + + +
+
USB Host Shield 2.0 +
+
+
+ + + + + +
+ +
+ All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
+ + +
+ +
+ +
+
+
UHS2_gpio.h
+
+
+Go to the documentation of this file.
1 /* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
+
2 
+
3 This program is free software; you can redistribute it and/or modify
+
4 it under the terms of the GNU General Public License as published by
+
5 the Free Software Foundation; either version 2 of the License, or
+
6 (at your option) any later version.
+
7 
+
8 This program is distributed in the hope that it will be useful,
+
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
+
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+
11 GNU General Public License for more details.
+
12 
+
13 You should have received a copy of the GNU General Public License
+
14 along with this program; if not, write to the Free Software
+
15 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
16 
+
17 Contact information
+
18 -------------------
+
19 
+
20 Circuits At Home, LTD
+
21 Web : http://www.circuitsathome.com
+
22 e-mail : support@circuitsathome.com
+
23 
+
24 UHS2_GPIO implements "wiring" style GPIO access. Implemented by Brian Walton brian@riban.co.uk
+
25  */
+
26 
+
27 #if !defined(__USB2_GPIO_H__)
+
28 #define __USB2_GPIO_H__
+
29 
+
30 #include "Usb.h"
+
31 
+
32 class UHS2_GPIO {
+
33 public:
+
34  UHS2_GPIO(USB *pUsb);
+
35 
+
36  void digitalWrite(uint8_t pin, uint8_t val);
+
37  int digitalRead(uint8_t pin);
+
38  int digitalReadOutput(uint8_t pin);
+
39 
+
40 private:
+
41  USB* m_pUsb;
+
42 };
+
43 
+
44 #endif // __USB2_GPIO_H__
+
int digitalReadOutput(uint8_t pin)
Read the value from a GPIO output pin.
Definition: UHS2_gpio.cpp:68
+
int digitalRead(uint8_t pin)
Read the value from a GPIO input pin.
Definition: UHS2_gpio.cpp:55
+ +
void digitalWrite(uint8_t pin, uint8_t val)
Set a GPIO output value.
Definition: UHS2_gpio.cpp:40
+
UHS2_GPIO(USB *pUsb)
Implement an instance of a UHS2_GPIO object.
Definition: UHS2_gpio.cpp:32
+ +
Definition: UsbCore.h:208
+
+ + + + diff --git a/_usb_8h.html b/_usb_8h.html index 1a6c6db2..127961a9 100644 --- a/_usb_8h.html +++ b/_usb_8h.html @@ -90,7 +90,7 @@ This graph shows which files directly or indirectly include this file:
- +

Go to the source code of this file.

diff --git a/_usb_8h__dep__incl.map b/_usb_8h__dep__incl.map index 7d250bcd..ecef921b 100644 --- a/_usb_8h__dep__incl.map +++ b/_usb_8h__dep__incl.map @@ -1,51 +1,51 @@ - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_usb_8h__dep__incl.md5 b/_usb_8h__dep__incl.md5 index 2fdd56db..b41a3e43 100644 --- a/_usb_8h__dep__incl.md5 +++ b/_usb_8h__dep__incl.md5 @@ -1 +1 @@ -40a70c1173667006c092d7a256069e78 \ No newline at end of file +03547f0a42b1834a5e9c578b39482572 \ No newline at end of file diff --git a/_usb_8h__dep__incl.png b/_usb_8h__dep__incl.png index 9d9478e2..c2d3dd81 100644 Binary files a/_usb_8h__dep__incl.png and b/_usb_8h__dep__incl.png differ diff --git a/annotated.html b/annotated.html index 71eae898..775d37a1 100644 --- a/annotated.html +++ b/annotated.html @@ -162,27 +162,28 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); oCTEL_RINGER_FUNC_DESCR oCtouchpadXY oCtty_features -oCUniversalReportParser -oCUSB -oCUSB_CONFIGURATION_DESCRIPTOR -oCUSB_DEVICE_DESCRIPTOR -oCUSB_ENDPOINT_DESCRIPTOR -oCUSB_HID_DESCRIPTOR -oCUSB_INTERFACE_DESCRIPTOR -oCUsbConfigXtracter -oCUsbDevice -oCUsbDeviceAddress -oCUSBDeviceConfig -oCUSBH_MIDI -oCUSBHID -oCUSBHub -oCUSBReadParser -oCWII -oCXBOXOLD -oCXBOXONE -oCXBOXRECV -oCXBOXUSB -\CXR21B1411 +oCUHS2_GPIO +oCUniversalReportParser +oCUSB +oCUSB_CONFIGURATION_DESCRIPTOR +oCUSB_DEVICE_DESCRIPTOR +oCUSB_ENDPOINT_DESCRIPTOR +oCUSB_HID_DESCRIPTOR +oCUSB_INTERFACE_DESCRIPTOR +oCUsbConfigXtracter +oCUsbDevice +oCUsbDeviceAddress +oCUSBDeviceConfig +oCUSBH_MIDI +oCUSBHID +oCUSBHub +oCUSBReadParser +oCWII +oCXBOXOLD +oCXBOXONE +oCXBOXRECV +oCXBOXUSB +\CXR21B1411 diff --git a/class_u_h_s2___g_p_i_o-members.html b/class_u_h_s2___g_p_i_o-members.html new file mode 100644 index 00000000..197e8e0b --- /dev/null +++ b/class_u_h_s2___g_p_i_o-members.html @@ -0,0 +1,105 @@ + + + + + + +USB Host Shield 2.0: Member List + + + + + + + + + + +
+
+ + + + + + +
+
USB Host Shield 2.0 +
+
+
+ + + + + + +
+ All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
+ + +
+ +
+ +
+
+
+
UHS2_GPIO Member List
+
+
+ +

This is the complete list of members for UHS2_GPIO, including all inherited members.

+ + + + + +
digitalRead(uint8_t pin)UHS2_GPIO
digitalReadOutput(uint8_t pin)UHS2_GPIO
digitalWrite(uint8_t pin, uint8_t val)UHS2_GPIO
UHS2_GPIO(USB *pUsb)UHS2_GPIO
+ + + + diff --git a/class_u_h_s2___g_p_i_o.html b/class_u_h_s2___g_p_i_o.html new file mode 100644 index 00000000..e5dc6118 --- /dev/null +++ b/class_u_h_s2___g_p_i_o.html @@ -0,0 +1,256 @@ + + + + + + +USB Host Shield 2.0: UHS2_GPIO Class Reference + + + + + + + + + + +
+
+ + + + + + +
+
USB Host Shield 2.0 +
+
+
+ + + + + + +
+ All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
+ + +
+ +
+ +
+
+
+Public Member Functions | +List of all members
+
+
UHS2_GPIO Class Reference
+
+
+ +

#include <UHS2_gpio.h>

+ + + + + + + + + + + + + + +

+Public Member Functions

 UHS2_GPIO (USB *pUsb)
 Implement an instance of a UHS2_GPIO object. More...
 
void digitalWrite (uint8_t pin, uint8_t val)
 Set a GPIO output value. More...
 
int digitalRead (uint8_t pin)
 Read the value from a GPIO input pin. More...
 
int digitalReadOutput (uint8_t pin)
 Read the value from a GPIO output pin. More...
 
+

Detailed Description

+
+

Definition at line 32 of file UHS2_gpio.h.

+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + + +
UHS2_GPIO::UHS2_GPIO (USBpUsb)
+
+ +

Implement an instance of a UHS2_GPIO object.

+
Parameters
+ + +
pUSBPointer to a UHS2 USB object
+
+
+ +

Definition at line 32 of file UHS2_gpio.cpp.

+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
void UHS2_GPIO::digitalWrite (uint8_t pin,
uint8_t val 
)
+
+ +

Set a GPIO output value.

+
Parameters
+ + + +
pinGPIO output pin on USB Host Shield to set
valValue to set the pin to (zero value will clear output, non-zero value will assert output)
+
+
+ +

Definition at line 40 of file UHS2_gpio.cpp.

+ +
+
+ +
+
+ + + + + + + + +
int UHS2_GPIO::digitalRead (uint8_t pin)
+
+ +

Read the value from a GPIO input pin.

+
Parameters
+ + +
pinGPIO input pin on USB Host Shield to read
+
+
+
Return values
+ + +
intValue of GPIO input (-1 on fail)
+
+
+ +

Definition at line 55 of file UHS2_gpio.cpp.

+ +
+
+ +
+
+ + + + + + + + +
int UHS2_GPIO::digitalReadOutput (uint8_t pin)
+
+ +

Read the value from a GPIO output pin.

+
Parameters
+ + +
pinGPIO output pin on USB Host Shield to read
+
+
+
Return values
+ + +
intValue of GPIO output (-1 on fail)
+
+
+
Note
Value of MAX3421E output register, i.e. what the device has been set to, not the physical value on the pin
+ +

Definition at line 68 of file UHS2_gpio.cpp.

+ +
+
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/classes.html b/classes.html index bd1757e1..e1fd9f9d 100644 --- a/classes.html +++ b/classes.html @@ -90,49 +90,49 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
A | B | C | E | F | H | I | K | L | M | P | R | S | T | U | W | X
- + + - + + + - + + - - + + + + - - + + + - + - - + + + - + + - - - + + + + diff --git a/files.html b/files.html index 71648254..401440c0 100644 --- a/files.html +++ b/files.html @@ -142,29 +142,31 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + +
  A  
-
CommandBlockWrapper   KBDLEDS   PS4USB   USB_HID_DESCRIPTOR   
CommandBlockWrapperBase   KeyboardReportParser   PSBuzz   USB_INTERFACE_DESCRIPTOR   
CommandBlockWrapper   KBDLEDS   PS4USB   USB_ENDPOINT_DESCRIPTOR   
CommandBlockWrapperBase   KeyboardReportParser   PSBuzz   USB_HID_DESCRIPTOR   
ACM   CommandStatusWrapper   
  L  
-
PSBUZZButtons   UsbConfigXtracter   
ACM_FUNC_DESCR   ConfigDescParser   PTPListParser   UsbDevice   
PSBUZZButtons   USB_INTERFACE_DESCRIPTOR   
ACM_FUNC_DESCR   ConfigDescParser   PTPListParser   UsbConfigXtracter   
AddressPool   
  E  
LINE_CODING   
  R  
-
UsbDeviceAddress   
UsbDevice   
AddressPoolImpl   
  M  
-
USBDeviceConfig   
ADK   EpInfo   ReportDescParser   USBH_MIDI   
UsbDeviceAddress   
ADK   EpInfo   ReportDescParser   USBDeviceConfig   
  B  
  F  
-
MainItemIOFeature   ReportDescParser2   USBHID   
MAX3421e   ReportDescParserBase   USBHub   
BASICCDB   FTDI   Max_LCD   RequestSenseResponce   USBReadParser   
MainItemIOFeature   ReportDescParser2   USBH_MIDI   
MAX3421e   ReportDescParserBase   USBHID   
BASICCDB   FTDI   Max_LCD   RequestSenseResponce   USBHub   
BluetoothService   FTDIAsyncOper   MODIFIERKEYS   
  S  
-
  W  
-
USBReadParser   
BTD   
  H  
-
MOUSEINFO   
BTHID   MouseReportParser   SETUP_PKT   WII   
BulkOnly   HexDumper   MultiByteValueParser   SinkParser   
  X  
+
MOUSEINFO   
  W  
+
BTHID   MouseReportParser   SETUP_PKT   
BulkOnly   HexDumper   MultiByteValueParser   SinkParser   WII   
ByteSkipper   HID_CLASS_DESCRIPTOR_LEN_AND_TYPE   MultiValueBuffer   SPi   
  X  
ByteSkipper   HID_CLASS_DESCRIPTOR_LEN_AND_TYPE   MultiValueBuffer   SPi   
  C  
HIDBoot   
  P  
-
SPP   XBOXOLD   
SPP   
HIDComposite   
  T  
-
XBOXONE   
CALL_MGMNT_FUNC_DESCR   HidItemPrefix   PL2303   XBOXRECV   
Capacity   HIDReportParser   PS3BT   TEL_RINGER_FUNC_DESCR   XBOXUSB   
XBOXOLD   
CALL_MGMNT_FUNC_DESCR   HidItemPrefix   PL2303   XBOXONE   
Capacity   HIDReportParser   PS3BT   TEL_RINGER_FUNC_DESCR   XBOXRECV   
CDB10   HIDUniversal   PS3USB   
  U  
-
XR21B1411   
CDB12   HubDescriptor   PS4BT   
  t  
+
XBOXUSB   
CDB12   HubDescriptor   PS4BT   XR21B1411   
CDB6   HubEvent   PS4Buttons   UHS2_GPIO   
  t  
CDB6   HubEvent   PS4Buttons   UniversalReportParser   
CDB_LBA32_16   
  I  
-
PS4Data   USB   touchpadXY   
CDB_LBA64_16   PS4Output   USB_CONFIGURATION_DESCRIPTOR   tty_features   
CDCAsyncOper   InquiryResponse   PS4Parser   USB_DEVICE_DESCRIPTOR   
PS4Data   UniversalReportParser   
CDB_LBA64_16   PS4Output   USB   touchpadXY   
CDCAsyncOper   InquiryResponse   PS4Parser   USB_CONFIGURATION_DESCRIPTOR   tty_features   
CLASS_NOTIFICATION   
  K  
-
PS4Status   USB_ENDPOINT_DESCRIPTOR   
PS4Status   USB_DEVICE_DESCRIPTOR   
KBDINFO   
o*sink_parser.h
o*SPP.cpp
o*SPP.h
o*Usb.cpp
o*Usb.h
o*usb_ch9.h
o*UsbCore.h
o*usbh_midi.cpp
o*usbh_midi.h
o*usbhid.cpp
o*usbhid.h
o*usbhost.h
o*usbhub.cpp
o*usbhub.h
o*version_helper.h
o*Wii.cpp
o*Wii.h
o*xboxEnums.h
o*XBOXOLD.cpp
o*XBOXOLD.h
o*XBOXONE.cpp
o*XBOXONE.h
o*XBOXRECV.cpp
o*XBOXRECV.h
o*XBOXUSB.cpp
\*XBOXUSB.h
o*UHS2_gpio.cpp
o*UHS2_gpio.h
o*Usb.cpp
o*Usb.h
o*usb_ch9.h
o*UsbCore.h
o*usbh_midi.cpp
o*usbh_midi.h
o*usbhid.cpp
o*usbhid.h
o*usbhost.h
o*usbhub.cpp
o*usbhub.h
o*version_helper.h
o*Wii.cpp
o*Wii.h
o*xboxEnums.h
o*XBOXOLD.cpp
o*XBOXOLD.h
o*XBOXONE.cpp
o*XBOXONE.h
o*XBOXRECV.cpp
o*XBOXRECV.h
o*XBOXUSB.cpp
\*XBOXUSB.h
diff --git a/functions_d.html b/functions_d.html index 71d5d4de..5b888eef 100644 --- a/functions_d.html +++ b/functions_d.html @@ -167,6 +167,15 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); : HIDBoot< BOOT_PROTOCOL > , USBDeviceConfig +
  • digitalRead() +: UHS2_GPIO +
  • +
  • digitalReadOutput() +: UHS2_GPIO +
  • +
  • digitalWrite() +: UHS2_GPIO +
  • digitTitles0 : ReportDescParserBase
  • diff --git a/functions_func_d.html b/functions_func_d.html index 623463a7..57eaf9c4 100644 --- a/functions_func_d.html +++ b/functions_func_d.html @@ -136,6 +136,15 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); : HIDBoot< BOOT_PROTOCOL > , USBDeviceConfig +
  • digitalRead() +: UHS2_GPIO +
  • +
  • digitalReadOutput() +: UHS2_GPIO +
  • +
  • digitalWrite() +: UHS2_GPIO +
  • discard() : SPP
  • diff --git a/functions_func_r.html b/functions_func_r.html index 2f9e4384..17ca4793 100644 --- a/functions_func_r.html +++ b/functions_func_r.html @@ -129,7 +129,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); , USBH_MIDI
  • Read() -: BulkOnly +: BulkOnly
  • read() : SPP diff --git a/functions_func_u.html b/functions_func_u.html index d648ade4..37a2b67e 100644 --- a/functions_func_u.html +++ b/functions_func_u.html @@ -122,6 +122,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');  

    - u -