FatFs integration (SDIO backend)

This commit is contained in:
rus 2016-10-20 12:29:34 +05:00 committed by UncleRus
parent 2994a566a6
commit 14b2118b06
23 changed files with 38479 additions and 0 deletions

16
extras/fatfs/volumes.h Normal file
View file

@ -0,0 +1,16 @@
/*
* FatFs integration to esp-open-rtos
*
* Part of esp-open-rtos
* Copyright (C) 2016 Ruslan V. Uss <unclerus@gmail.com>
* BSD Licensed as described in the file LICENSE
*/
#ifndef _EXTRAS_FATFS_VOLUMES_H_
#define _EXTRAS_FATFS_VOLUMES_H_
#include <stdint.h>
const char *f_gpio_to_volume(uint8_t gpio);
uint8_t f_drv_to_gpio(uint8_t drv);
#endif /* _EXTRAS_FATFS_VOLUMES_H_ */