| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /*-----------------------------------------------------------------------*/
- /* Low level disk I/O module SKELETON for FatFs (C)ChaN, 2019 */
- /*-----------------------------------------------------------------------*/
- /* If a working storage control module is available, it should be */
- /* attached to the FatFs via a glue function rather than modifying it. */
- /* This is an example of glue functions to attach various exsisting */
- /* storage control modules to the FatFs module with a defined API. */
- /*-----------------------------------------------------------------------*/
- #include "luat_base.h"
- #include "luat_spi.h"
- #include "luat_timer.h"
- #include "luat_gpio.h"
- #ifdef __LUATOS__
- #include "lauxlib.h"
- #endif
- #include "ff.h" /* Obtains integer types */
- #include "diskio.h" /* Declarations of disk functions */
- #define LUAT_LOG_TAG "luat.fatfs"
- #include "luat_log.h"
- uint16_t FATFS_POWER_DELAY = 1;
- BYTE FATFS_DEBUG = 0; // debug log, 0 -- disable , 1 -- enable
- BYTE FATFS_POWER_PIN = 0xff;
- uint8_t FATFS_NO_CRC_CHECK = 0;
- uint16_t FATFS_WRITE_TO = 100;
- static block_disk_t disks[FF_VOLUMES+1] = {0};
- DSTATUS disk_initialize (BYTE pdrv) {
- if (FATFS_DEBUG)
- LLOGD("disk_initialize >> %d", pdrv);
- if (pdrv >= FF_VOLUMES || disks[pdrv].opts == NULL) {
- LLOGD("NOTRDY >> %d", pdrv);
- return RES_NOTRDY;
- }
- if (FATFS_POWER_PIN != 0xff)
- {
- luat_gpio_mode(FATFS_POWER_PIN, Luat_GPIO_OUTPUT, Luat_GPIO_DEFAULT, 0);
- luat_timer_mdelay(FATFS_POWER_DELAY);
- luat_gpio_mode(FATFS_POWER_PIN, Luat_GPIO_OUTPUT, Luat_GPIO_DEFAULT, 1);
- }
- return disks[pdrv].opts->initialize(disks[pdrv].userdata);
- }
- DSTATUS disk_status (BYTE pdrv) {
- if (FATFS_DEBUG)
- LLOGD("disk_status >> %d", pdrv);
- if (pdrv >= FF_VOLUMES || disks[pdrv].opts == NULL) {
- return RES_NOTRDY;
- }
- return disks[pdrv].opts->status(disks[pdrv].userdata);
- }
- DRESULT disk_read (BYTE pdrv, BYTE* buff, LBA_t sector, UINT count) {
- if (FATFS_DEBUG)
- LLOGD("disk_read >> %d", pdrv);
- if (pdrv >= FF_VOLUMES || disks[pdrv].opts == NULL) {
- return RES_NOTRDY;
- }
- return disks[pdrv].opts->read(disks[pdrv].userdata, buff, sector, count);
- }
- DRESULT disk_write (BYTE pdrv, const BYTE* buff, LBA_t sector, UINT count) {
- //if (FATFS_DEBUG)
- // LLOGD("disk_write >> %d", pdrv);
- if (pdrv >= FF_VOLUMES || disks[pdrv].opts == NULL) {
- return RES_NOTRDY;
- }
- return disks[pdrv].opts->write(disks[pdrv].userdata, buff, sector, count);
- }
- DRESULT disk_ioctl (BYTE pdrv, BYTE cmd, void* buff) {
- if (FATFS_DEBUG)
- LLOGD("disk_ioctl >> %d %d", pdrv, cmd);
- if (pdrv >= FF_VOLUMES || disks[pdrv].opts == NULL) {
- return RES_NOTRDY;
- }
- return disks[pdrv].opts->ioctl(disks[pdrv].userdata, cmd, buff);
- }
- DRESULT diskio_open(BYTE pdrv, block_disk_t * disk) {
- if (FATFS_DEBUG)
- LLOGD("disk_open >> %d", pdrv);
- if (pdrv >= FF_VOLUMES || disks[pdrv].opts != NULL) {
- return RES_NOTRDY;
- }
- disks[pdrv].opts = disk->opts;
- disks[pdrv].userdata = disk->userdata;
- return RES_OK;
- }
- #include "luat_mem.h"
- DRESULT diskio_close(BYTE pdrv) {
- if (pdrv >= FF_VOLUMES || disks[pdrv].opts == NULL) {
- return RES_NOTRDY;
- }
- disks[pdrv].opts = NULL;
- if (disks[pdrv].userdata)
- luat_heap_free(disks[pdrv].userdata);
- disks[pdrv].userdata = NULL;
- return RES_OK;
- }
- #include "time.h"
- DWORD get_fattime (void) {
- struct tm *tm;
- time_t t;
- time(&t);
- tm = gmtime(&t);
- return ( ((tm->tm_year-80) & 0x3F) << 25)
- | ((tm->tm_mon + 1) << 21)
- | (tm->tm_mday << 16)
- | (tm->tm_hour << 11)
- | (tm->tm_min << 5)
- | ((tm->tm_sec % 60) >> 1)
- ;
- }
|