Go to the source code of this file.
Defines | |
#define | PSP_USBBUS_DRIVERNAME "USBBusDriver" |
#define | PSP_USB_ACTIVATED 0x200 |
#define | PSP_USB_CABLE_CONNECTED 0x020 |
#define | PSP_USB_CONNECTION_ESTABLISHED 0x002 |
Functions | |
int | sceUsbStart (const char *driverName, int size, void *args) |
Start a USB driver. | |
int | sceUsbStop (const char *driverName, int size, void *args) |
Stop a USB driver. | |
int | sceUsbActivate (u32 pid) |
Activate a USB driver. | |
int | sceUsbDeactivate (u32 pid) |
Deactivate USB driver. | |
int | sceUsbGetState (void) |
Get USB state. | |
int | sceUsbGetDrvState (const char *driverName) |
Get state of a specific USB driver. |
#define PSP_USB_ACTIVATED 0x200 |
#define PSP_USB_CABLE_CONNECTED 0x020 |
#define PSP_USB_CONNECTION_ESTABLISHED 0x002 |
#define PSP_USBBUS_DRIVERNAME "USBBusDriver" |
int sceUsbActivate | ( | u32 | pid | ) |
Activate a USB driver.
pid | - Product ID for the default USB Driver |
int sceUsbDeactivate | ( | u32 | pid | ) |
Deactivate USB driver.
pid | - Product ID for the default USB driver |
int sceUsbGetDrvState | ( | const char * | driverName | ) |
Get state of a specific USB driver.
driverName | - name of USB driver to get status from |
int sceUsbGetState | ( | void | ) |
Get USB state.
int sceUsbStart | ( | const char * | driverName, | |
int | size, | |||
void * | args | |||
) |
Start a USB driver.
driverName | - name of the USB driver to start | |
size | - Size of arguments to pass to USB driver start | |
args | - Arguments to pass to USB driver start |
int sceUsbStop | ( | const char * | driverName, | |
int | size, | |||
void * | args | |||
) |
Stop a USB driver.
driverName | - name of the USB driver to stop | |
size | - Size of arguments to pass to USB driver start | |
args | - Arguments to pass to USB driver start |