summaryrefslogtreecommitdiff
path: root/include/cmd_fat.h
blob: 222b14c21dea5bfdb7a10087ffeea9f0017f78d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * (C) Copyright 2014-2018 Leo C. <erbl259-lmu@yahoo.de>
 *
 * SPDX-License-Identifier:	GPL-2.0
 */

#ifndef CMD_FAT_H
#define CMD_FAT_H

#include "command.h"
#include "ff.h"

extern cmd_tbl_t cmd_tbl_fat[];

const FLASH char * fat_rctostr(FRESULT rc);
command_ret_t do_fat(cmd_tbl_t *, uint_fast8_t, int, char * const []);

void setup_fatfs(void);

#endif /* CMD_FAT_H */