@@ -43,7 +43,7 @@ Start pathnames on SD Cards with "/sdcard/" and pathnames on USB thumb drives wi
43
43
44
44
The following are additional functions provided by the library:
45
45
46
- ### ` int ` [ ` mount ` ] ( # ) ` (enum DeviceNames deviceName, enum FileSystems fileSystem, enum MountFlags mountFlags) `
46
+ ### ` int ` [ ` mount ` ] ( # ) ` (enum StorageDevices deviceName, enum FileSystems fileSystem, enum MountFlags mountFlags) `
47
47
48
48
Attach a file system to a device.
49
49
@@ -56,7 +56,7 @@ Attach a file system to a device.
56
56
On success: 0. On failure: -1 with an error code in the errno variable.
57
57
58
58
59
- ### ` int ` [ ` umount ` ] ( # ) ` (enum DeviceNames deviceName) `
59
+ ### ` int ` [ ` umount ` ] ( # ) ` (enum StorageDevices deviceName) `
60
60
61
61
Remove the attached file system from a device.
62
62
@@ -67,7 +67,7 @@ Remove the attached file system from a device.
67
67
On success: 0. On failure: -1 with an error code in the errno variable.
68
68
69
69
70
- ### ` int ` [ ` register_hotplug_callback ` ] ( # ) ` (enum DeviceNames deviceName, void (*callbackFunction)()) `
70
+ ### ` int ` [ ` register_hotplug_callback ` ] ( # ) ` (enum StorageDevices deviceName, void (*callbackFunction)()) `
71
71
72
72
Register a hotplug callback function. Currently only supported for DEV_USB on Portenta C33.
73
73
@@ -79,7 +79,7 @@ Register a hotplug callback function. Currently only supported for DEV_USB on Po
79
79
On success: 0. On failure: -1 with an error code in the errno variable.
80
80
81
81
82
- ### ` int ` [ ` deregister_hotplug_callback ` ] ( # ) ` (enum DeviceNames deviceName) `
82
+ ### ` int ` [ ` deregister_hotplug_callback ` ] ( # ) ` (enum StorageDevices deviceName) `
83
83
84
84
Deregister a previously registered hotplug callback function. Not currently supported on any platform.
85
85
@@ -90,7 +90,7 @@ Deregister a previously registered hotplug callback function. Not currently supp
90
90
On success: 0. On failure: -1 with an error code in the errno variable.
91
91
92
92
93
- ### ` int ` [ ` mkfs ` ] ( # ) ` (enum DeviceNames deviceName, enum FileSystems fileSystem) `
93
+ ### ` int ` [ ` mkfs ` ] ( # ) ` (enum StorageDevices deviceName, enum FileSystems fileSystem) `
94
94
95
95
Format a device (make file system).
96
96
0 commit comments