Skip to content

Commit 80dea4f

Browse files
committed
Add empty line after docs for each member
1 parent 53e83ce commit 80dea4f

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

docs/api.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Enum to select the storage device to use.
2222
DEV_SDCARD | SD Card.
2323
DEV_USB | USB Thumb Drive.
2424

25+
<hr />
2526
#### `enum ` [`FileSystems`](#_arduino___p_o_s_i_x_storage_8h_1ac01996562b852a6b36ad87908429ad35) <a id="_arduino___p_o_s_i_x_storage_8h_1ac01996562b852a6b36ad87908429ad35" class="anchor"></a>
2627

2728
Enum to select the file system to use.
@@ -31,6 +32,7 @@ Enum to select the file system to use.
3132
FS_FAT | FAT file system.
3233
FS_LITTLEFS | LittleFS file system.
3334

35+
<hr />
3436
#### `enum ` [`MountFlags`](#_arduino___p_o_s_i_x_storage_8h_1a069889b849809b552adf0513c6db2b85) <a id="_arduino___p_o_s_i_x_storage_8h_1a069889b849809b552adf0513c6db2b85" class="anchor"></a>
3537

3638
Enum to select the mount mode to use. The default mode is Read/Write.
@@ -40,6 +42,7 @@ Enum to select the mount mode to use. The default mode is Read/Write.
4042
MNT_DEFAULT | Default mount mode (Read/Write)
4143
MNT_RDONLY | Read only mode.
4244

45+
<hr />
4346
#### `public int ` [`mount`](#_arduino___p_o_s_i_x_storage_8h_1a22178afb74ae05ab1dcf8c50eb4a9d1f)`(const enum ` [`StorageDevices`](#_arduino___p_o_s_i_x_storage_8h_1a97a26676f4f644e3db23bb63b9227546)` deviceName, const enum ` [`FileSystems`](#_arduino___p_o_s_i_x_storage_8h_1ac01996562b852a6b36ad87908429ad35)` fileSystem, const enum ` [`MountFlags`](#_arduino___p_o_s_i_x_storage_8h_1a069889b849809b552adf0513c6db2b85)` mountFlags)` <a id="_arduino___p_o_s_i_x_storage_8h_1a22178afb74ae05ab1dcf8c50eb4a9d1f" class="anchor"></a>
4447

4548
Attach a file system to a device.
@@ -53,7 +56,7 @@ Attach a file system to a device.
5356

5457
#### Returns
5558
On success: 0. On failure: -1 with an error code in the errno variable.
56-
59+
<hr />
5760
#### `public int ` [`umount`](#_arduino___p_o_s_i_x_storage_8h_1a57b5f0c881dedaf55fe1b9c5fa59e1f8)`(const enum ` [`StorageDevices`](#_arduino___p_o_s_i_x_storage_8h_1a97a26676f4f644e3db23bb63b9227546)` deviceName)` <a id="_arduino___p_o_s_i_x_storage_8h_1a57b5f0c881dedaf55fe1b9c5fa59e1f8" class="anchor"></a>
5861

5962
Remove the attached file system from a device.
@@ -63,7 +66,7 @@ Remove the attached file system from a device.
6366

6467
#### Returns
6568
On success: 0. On failure: -1 with an error code in the errno variable.
66-
69+
<hr />
6770
#### `public int ` [`register_hotplug_callback`](#_arduino___p_o_s_i_x_storage_8h_1a1a914f0970d317b6a74bef4368cbcae8)`(const enum ` [`StorageDevices`](#_arduino___p_o_s_i_x_storage_8h_1a97a26676f4f644e3db23bb63b9227546)` deviceName, void(*)() callbackFunction)` <a id="_arduino___p_o_s_i_x_storage_8h_1a1a914f0970d317b6a74bef4368cbcae8" class="anchor"></a>
6871

6972
Register a hotplug callback function. Currently only supported for DEV_USB on Portenta C33.
@@ -75,7 +78,7 @@ Register a hotplug callback function. Currently only supported for DEV_USB on Po
7578

7679
#### Returns
7780
On success: 0. On failure: -1 with an error code in the errno variable.
78-
81+
<hr />
7982
#### `public int ` [`deregister_hotplug_callback`](#_arduino___p_o_s_i_x_storage_8h_1ae80d0ace82aad5ef4a130953290efbd7)`(const enum ` [`StorageDevices`](#_arduino___p_o_s_i_x_storage_8h_1a97a26676f4f644e3db23bb63b9227546)` deviceName)` <a id="_arduino___p_o_s_i_x_storage_8h_1ae80d0ace82aad5ef4a130953290efbd7" class="anchor"></a>
8083

8184
Deregister a previously registered hotplug callback function. Not currently supported on any platform.
@@ -85,7 +88,7 @@ Deregister a previously registered hotplug callback function. Not currently supp
8588

8689
#### Returns
8790
On success: 0. On failure: -1 with an error code in the errno variable.
88-
91+
<hr />
8992
#### `public int ` [`mkfs`](#_arduino___p_o_s_i_x_storage_8h_1a834ae6d0e65c5b47f9d8932f7ad0c499)`(const enum ` [`StorageDevices`](#_arduino___p_o_s_i_x_storage_8h_1a97a26676f4f644e3db23bb63b9227546)` deviceName, const enum ` [`FileSystems`](#_arduino___p_o_s_i_x_storage_8h_1ac01996562b852a6b36ad87908429ad35)` fileSystem)` <a id="_arduino___p_o_s_i_x_storage_8h_1a834ae6d0e65c5b47f9d8932f7ad0c499" class="anchor"></a>
9093

9194
Format a device (make file system).
@@ -97,3 +100,4 @@ Format a device (make file system).
97100

98101
#### Returns
99102
On success: 0. On failure: -1 with an error code in the errno variable.
103+
<hr />

0 commit comments

Comments
 (0)