1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/mtd: improve doc consistency for MTDs

This commit is contained in:
Gunar Schorcht 2023-12-14 15:30:19 +01:00
parent d089c122c1
commit aabc331494
4 changed files with 9 additions and 8 deletions

View File

@ -7,6 +7,7 @@
*/
/**
* @defgroup drivers_mtd_emulated MTD wrapper for emulated MTD devices
* @ingroup drivers_mtd
* @{
* @brief MTD device that is emulated in RAM for test purposes

View File

@ -7,7 +7,7 @@
*/
/**
* @defgroup drivers_mtd_flashpage Flashpage MTD
* @defgroup drivers_mtd_flashpage MTD wrapper for Flashpage devices
* @ingroup drivers_storage
* @brief Driver for internal flash devices implementing flashpage interface
*

View File

@ -7,14 +7,14 @@
*/
/**
* @defgroup drivers_mtd_sdcard mtd wrapper for sdcard_spi
* @defgroup drivers_mtd_sdcard MTD wrapper for SPI SD Cards
* @ingroup drivers_storage
* @brief Driver for SD-cards using mtd interface
* @brief Driver for SPI SD Cards using the MTD interface
*
* @{
*
* @file
* @brief Interface definition for mtd_sdcard driver
* @brief Interface definition for the mtd_sdcard driver
*
* @author Michel Rottleuthner <michel.rottleuthner@haw-hamburg.de>
*/

View File

@ -8,14 +8,14 @@
*/
/**
* @defgroup drivers_mtd_sdmmc mtd wrapper for sdmmc
* @defgroup drivers_mtd_sdmmc MTD wrapper for SD/MMC devices
* @ingroup drivers_storage
* @brief Driver for SD Memory Cards and MMCs/eMMCs using mtd interface
* @brief Driver for SD Memory Cards and MMCs/eMMCs using the MTD interface
*
* @{
*
* @file
* @brief Interface definition for mtd_sdmmc driver
* @brief Interface definition for the mtd_sdmmc driver
*
* @author Michel Rottleuthner <michel.rottleuthner@haw-hamburg.de>
* @author Gunar Schorcht <gunar@schorcht.net>
@ -46,7 +46,7 @@ typedef struct {
} mtd_sdmmc_t;
/**
* @brief sdcard device operations table for mtd
* @brief SD/MMC device operations table for mtd
*/
extern const mtd_desc_t mtd_sdmmc_driver;