mirror of
https://github.com/ClusterM/fdskey.git
synced 2025-12-19 14:29:21 +01:00
13 lines
228 B
C
13 lines
228 B
C
#ifndef INC_NEWDISK_H_
|
|
#define INC_NEWDISK_H_
|
|
|
|
#include "ff.h"
|
|
|
|
#define NEW_DISK_FILENAME_LENGTH 10
|
|
#define NEW_DISK_FILENAME_START_CHAR 32
|
|
#define NEW_DISK_FILENAME_END_CHAR 90
|
|
|
|
FRESULT new_disk();
|
|
|
|
#endif /* INC_NEWDISK_H_ */
|