XenevaOS
Loading...
Searching...
No Matches
uspilibrary.h
Go to the documentation of this file.
1//
2// uspilibrary.h
3//
4// USPi - An USB driver for Raspberry Pi written in C
5// Copyright (C) 2014-2018 R. Stange <rsta2@o2online.de>
6//
7// This program is free software: you can redistribute it and/or modify
8// it under the terms of the GNU General Public License as published by
9// the Free Software Foundation, either version 3 of the License, or
10// (at your option) any later version.
11//
12// This program is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16//
17// You should have received a copy of the GNU General Public License
18// along with this program. If not, see <http://www.gnu.org/licenses/>.
19//
20#ifndef _uspi_uspilibrary_h
21#define _uspi_uspilibrary_h
22
24#include "uspi/dwhcidevice.h"
25#include "uspi/usbkeyboard.h"
26#include "uspi/usbmouse.h"
27#include "uspi/usbgamepad.h"
28#include "uspi/usbmassdevice.h"
29#include "uspi/usbmidi.h"
30#include "uspi/smsc951x.h"
31#include "uspi/lan7800.h"
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
37#define MAX_DEVICES 4
38
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif
Definition dwhcidevice.h:39
Definition devicenameservice.h:35
Definition lan7800.h:32
Definition smsc951x.h:32
Definition usbmassdevice.h:38
Definition usbgamepad.h:32
Definition usbkeyboard.h:40
Definition usbmidi.h:32
Definition usbmouse.h:33
Definition uspilibrary.h:40
TLAN7800Device * pEth10
Definition uspilibrary.h:47
TUSBMIDIDevice * pMIDI1
Definition uspilibrary.h:49
TUSBKeyboardDevice * pUKBD1
Definition uspilibrary.h:43
TDeviceNameService NameService
Definition uspilibrary.h:41
TUSBMouseDevice * pUMouse1
Definition uspilibrary.h:44
TUSBBulkOnlyMassStorageDevice * pUMSD[MAX_DEVICES]
Definition uspilibrary.h:45
TUSBGamePadDevice * pUPAD[MAX_DEVICES]
Definition uspilibrary.h:48
TDWHCIDevice DWHCI
Definition uspilibrary.h:42
TSMSC951xDevice * pEth0
Definition uspilibrary.h:46
#define MAX_DEVICES
Definition uspilibrary.h:37