doc: reference: Add disk access API

Add the disk access API to the doc reference.

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
Carles Cufi 2020-03-17 15:13:15 +01:00 committed by Carles Cufí
commit 4ffeb79ecd
3 changed files with 34 additions and 0 deletions

View file

@ -17,6 +17,12 @@
#ifndef ZEPHYR_INCLUDE_DISK_DISK_ACCESS_H_
#define ZEPHYR_INCLUDE_DISK_DISK_ACCESS_H_
/**
* @brief Disk Access APIs
* @defgroup disk_access_interface Disk Access Interface
* @{
*/
#include <kernel.h>
#include <zephyr/types.h>
#include <sys/dlist.h>
@ -131,4 +137,8 @@ int disk_access_unregister(struct disk_info *disk);
}
#endif
/**
* @}
*/
#endif /* ZEPHYR_INCLUDE_DISK_DISK_ACCESS_H_ */