A few constants where they belong
This commit is contained in:
parent
4d61287807
commit
60598b4cdd
@ -429,7 +429,7 @@ void enquecommand(const char *cmd)
|
|||||||
//this is dangerous if a mixing of serial and this happens
|
//this is dangerous if a mixing of serial and this happens
|
||||||
strcpy(&(cmdbuffer[bufindw][0]),cmd);
|
strcpy(&(cmdbuffer[bufindw][0]),cmd);
|
||||||
SERIAL_ECHO_START;
|
SERIAL_ECHO_START;
|
||||||
SERIAL_ECHOPGM("enqueing \"");
|
SERIAL_ECHOPGM(MSG_Enqueing);
|
||||||
SERIAL_ECHO(cmdbuffer[bufindw]);
|
SERIAL_ECHO(cmdbuffer[bufindw]);
|
||||||
SERIAL_ECHOLNPGM("\"");
|
SERIAL_ECHOLNPGM("\"");
|
||||||
bufindw= (bufindw + 1)%BUFSIZE;
|
bufindw= (bufindw + 1)%BUFSIZE;
|
||||||
@ -444,7 +444,7 @@ void enquecommand_P(const char *cmd)
|
|||||||
//this is dangerous if a mixing of serial and this happens
|
//this is dangerous if a mixing of serial and this happens
|
||||||
strcpy_P(&(cmdbuffer[bufindw][0]),cmd);
|
strcpy_P(&(cmdbuffer[bufindw][0]),cmd);
|
||||||
SERIAL_ECHO_START;
|
SERIAL_ECHO_START;
|
||||||
SERIAL_ECHOPGM("enqueing \"");
|
SERIAL_ECHOPGM(MSG_Enqueing);
|
||||||
SERIAL_ECHO(cmdbuffer[bufindw]);
|
SERIAL_ECHO(cmdbuffer[bufindw]);
|
||||||
SERIAL_ECHOLNPGM("\"");
|
SERIAL_ECHOLNPGM("\"");
|
||||||
bufindw= (bufindw + 1)%BUFSIZE;
|
bufindw= (bufindw + 1)%BUFSIZE;
|
||||||
|
@ -115,6 +115,8 @@ uint8_t const SOFT_SPI_SCK_PIN = 13;
|
|||||||
#define FILENAME_LENGTH 13
|
#define FILENAME_LENGTH 13
|
||||||
/** Number of VFAT entries used. Every entry has 13 UTF-16 characters */
|
/** Number of VFAT entries used. Every entry has 13 UTF-16 characters */
|
||||||
#define MAX_VFAT_ENTRIES (2)
|
#define MAX_VFAT_ENTRIES (2)
|
||||||
|
/** Number of UTF-16 characters per entry */
|
||||||
|
#define FILENAME_LENGTH 13
|
||||||
/** Total size of the buffer used to store the long filenames */
|
/** Total size of the buffer used to store the long filenames */
|
||||||
#define LONG_FILENAME_LENGTH (FILENAME_LENGTH*MAX_VFAT_ENTRIES+1)
|
#define LONG_FILENAME_LENGTH (FILENAME_LENGTH*MAX_VFAT_ENTRIES+1)
|
||||||
#endif // SdFatConfig_h
|
#endif // SdFatConfig_h
|
||||||
|
Loading…
Reference in New Issue
Block a user