diff options
author | Sergi Granell | 2018-08-27 17:10:36 +0200 |
---|---|---|
committer | Sergi Granell | 2018-08-27 17:10:59 +0200 |
commit | 6bbd8e1e7c7e10a6935e56bc4e8529acf14bb8b2 (patch) | |
tree | 47fcd370d4d95463eca5279930a2ec104562aab3 /include | |
parent | Update UDCD (diff) | |
download | vds-libraries-6bbd8e1e7c7e10a6935e56bc4e8529acf14bb8b2.tar.gz |
Update UDCD
Diffstat (limited to 'include')
-rw-r--r-- | include/kernel/udcd.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/kernel/udcd.h b/include/kernel/udcd.h index cea21d1..1c2552c 100644 --- a/include/kernel/udcd.h +++ b/include/kernel/udcd.h @@ -430,6 +430,16 @@ int sceUdcdStart(const char *driverName, int size, void *args); int sceUdcdStartInternal(const char *driverName, int size, void *args, int bus); /** + * Starts the current USB driver for an UDCD bus. + * + * @param[in] unused - Unused + * @param[in] bus - UDCD bus (default is 2) + * + * @return 0 on success, < 0 on error. + */ +int sceUdcdStartCurrentInternal(int unused, int bus); + +/** * Stop a USB driver. * * @param driverName - Name of the USB driver to stop @@ -453,6 +463,15 @@ int sceUdcdStop(const char *driverName, int size, void *args); int sceUdcdStopInternal(const char *driverName, int size, void *args, int bus); /** + * Stops the current USB driver for an UDCD bus. + * + * @param[in] bus - UDCD bus (default is 2) + * + * @return 0 on success, < 0 on error. + */ +int sceUdcdStopCurrentInternal(int bus); + +/** * Activate a USB driver. * * @param pid - Product ID for the default USB Driver |