0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-06-24 16:00:58 +00:00

Updated SERIAL define to MYSERIAL, because Arduino 1.0 defines SERIAL as 0.

This commit is contained in:
daid 2012-02-11 16:02:47 +01:00
parent d47a3e5950
commit 2a77c84c8f
5 changed files with 35 additions and 35 deletions

View file

@ -343,38 +343,38 @@ int8_t SdBaseFile::lsPrintNext( uint8_t flags, uint8_t indent) {
&& DIR_IS_FILE_OR_SUBDIR(&dir)) break;
}
// indent for dir level
for (uint8_t i = 0; i < indent; i++) SERIAL.write(' ');
for (uint8_t i = 0; i < indent; i++) MYSERIAL.write(' ');
// print name
for (uint8_t i = 0; i < 11; i++) {
if (dir.name[i] == ' ')continue;
if (i == 8) {
SERIAL.write('.');
MYSERIAL.write('.');
w++;
}
SERIAL.write(dir.name[i]);
MYSERIAL.write(dir.name[i]);
w++;
}
if (DIR_IS_SUBDIR(&dir)) {
SERIAL.write('/');
MYSERIAL.write('/');
w++;
}
if (flags & (LS_DATE | LS_SIZE)) {
while (w++ < 14) SERIAL.write(' ');
while (w++ < 14) MYSERIAL.write(' ');
}
// print modify date/time if requested
if (flags & LS_DATE) {
SERIAL.write(' ');
MYSERIAL.write(' ');
printFatDate( dir.lastWriteDate);
SERIAL.write(' ');
MYSERIAL.write(' ');
printFatTime( dir.lastWriteTime);
}
// print size if requested
if (!DIR_IS_SUBDIR(&dir) && (flags & LS_SIZE)) {
SERIAL.write(' ');
SERIAL.print(dir.fileSize);
MYSERIAL.write(' ');
MYSERIAL.print(dir.fileSize);
}
SERIAL.println();
MYSERIAL.println();
return DIR_IS_FILE(&dir) ? 1 : 2;
}
//------------------------------------------------------------------------------
@ -945,26 +945,26 @@ void SdBaseFile::printDirName(const dir_t& dir,
for (uint8_t i = 0; i < 11; i++) {
if (dir.name[i] == ' ')continue;
if (i == 8) {
SERIAL.write('.');
MYSERIAL.write('.');
w++;
}
SERIAL.write(dir.name[i]);
MYSERIAL.write(dir.name[i]);
w++;
}
if (DIR_IS_SUBDIR(&dir) && printSlash) {
SERIAL.write('/');
MYSERIAL.write('/');
w++;
}
while (w < width) {
SERIAL.write(' ');
MYSERIAL.write(' ');
w++;
}
}
//------------------------------------------------------------------------------
// print uint8_t with width 2
static void print2u( uint8_t v) {
if (v < 10) SERIAL.write('0');
SERIAL.print(v, DEC);
if (v < 10) MYSERIAL.write('0');
MYSERIAL.print(v, DEC);
}
//------------------------------------------------------------------------------
/** %Print a directory date field to Serial.
@ -983,10 +983,10 @@ static void print2u( uint8_t v) {
* \param[in] fatDate The date field from a directory entry.
*/
void SdBaseFile::printFatDate(uint16_t fatDate) {
SERIAL.print(FAT_YEAR(fatDate));
SERIAL.write('-');
MYSERIAL.print(FAT_YEAR(fatDate));
MYSERIAL.write('-');
print2u( FAT_MONTH(fatDate));
SERIAL.write('-');
MYSERIAL.write('-');
print2u( FAT_DAY(fatDate));
}
@ -1000,9 +1000,9 @@ void SdBaseFile::printFatDate(uint16_t fatDate) {
*/
void SdBaseFile::printFatTime( uint16_t fatTime) {
print2u( FAT_HOUR(fatTime));
SERIAL.write(':');
MYSERIAL.write(':');
print2u( FAT_MINUTE(fatTime));
SERIAL.write(':');
MYSERIAL.write(':');
print2u( FAT_SECOND(fatTime));
}
//------------------------------------------------------------------------------
@ -1014,7 +1014,7 @@ void SdBaseFile::printFatTime( uint16_t fatTime) {
bool SdBaseFile::printName() {
char name[13];
if (!getFilename(name)) return false;
SERIAL.print(name);
MYSERIAL.print(name);
return true;
}
//------------------------------------------------------------------------------