2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2011-11-18 22:17:37 +01:00
|
|
|
*
|
2016-03-24 19:01:20 +01:00
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
2011-11-18 22:17:37 +01:00
|
|
|
*
|
2016-03-24 19:01:20 +01:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2011-11-18 22:17:37 +01:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2016-03-24 19:01:20 +01:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-11-18 22:17:37 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2016-03-24 19:01:20 +01:00
|
|
|
*
|
2011-11-18 22:17:37 +01:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2016-03-24 19:01:20 +01:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Arduino SdFat Library
|
|
|
|
* Copyright (C) 2008 by William Greiman
|
|
|
|
*
|
|
|
|
* This file is part of the Arduino Sd2Card Library
|
2011-11-18 22:17:37 +01:00
|
|
|
*/
|
2015-01-16 00:52:10 +01:00
|
|
|
#include "Marlin.h"
|
|
|
|
|
2015-07-31 07:21:18 +02:00
|
|
|
#if ENABLED(SDSUPPORT)
|
2011-11-18 22:17:37 +01:00
|
|
|
#include "SdFatUtil.h"
|
2011-12-22 14:55:45 +01:00
|
|
|
|
2011-11-18 22:17:37 +01:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** Amount of free RAM
|
|
|
|
* \return The number of free bytes.
|
|
|
|
*/
|
2014-12-30 16:36:18 +01:00
|
|
|
#ifdef __arm__
|
|
|
|
extern "C" char* sbrk(int incr);
|
2011-11-18 22:17:37 +01:00
|
|
|
int SdFatUtil::FreeRam() {
|
2014-12-30 16:36:18 +01:00
|
|
|
char top;
|
|
|
|
return &top - reinterpret_cast<char*>(sbrk(0));
|
2011-11-18 22:17:37 +01:00
|
|
|
}
|
2014-12-30 16:36:18 +01:00
|
|
|
#else // __arm__
|
2015-10-03 08:08:58 +02:00
|
|
|
extern char* __brkval;
|
2014-12-30 16:36:18 +01:00
|
|
|
extern char __bss_end;
|
|
|
|
/** Amount of free RAM
|
|
|
|
* \return The number of free bytes.
|
|
|
|
*/
|
|
|
|
int SdFatUtil::FreeRam() {
|
|
|
|
char top;
|
|
|
|
return __brkval ? &top - __brkval : &top - &__bss_end;
|
|
|
|
}
|
|
|
|
#endif // __arm
|
|
|
|
|
2011-11-18 22:17:37 +01:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** %Print a string in flash memory.
|
|
|
|
*
|
|
|
|
* \param[in] pr Print object for output.
|
|
|
|
* \param[in] str Pointer to string stored in flash memory.
|
|
|
|
*/
|
2015-10-03 08:08:58 +02:00
|
|
|
void SdFatUtil::print_P(PGM_P str) {
|
2012-02-11 16:02:47 +01:00
|
|
|
for (uint8_t c; (c = pgm_read_byte(str)); str++) MYSERIAL.write(c);
|
2011-11-18 22:17:37 +01:00
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** %Print a string in flash memory followed by a CR/LF.
|
|
|
|
*
|
|
|
|
* \param[in] pr Print object for output.
|
|
|
|
* \param[in] str Pointer to string stored in flash memory.
|
|
|
|
*/
|
2015-10-03 08:08:58 +02:00
|
|
|
void SdFatUtil::println_P(PGM_P str) {
|
|
|
|
print_P(str);
|
2012-02-11 16:02:47 +01:00
|
|
|
MYSERIAL.println();
|
2011-11-18 22:17:37 +01:00
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** %Print a string in flash memory to Serial.
|
|
|
|
*
|
|
|
|
* \param[in] str Pointer to string stored in flash memory.
|
|
|
|
*/
|
2015-01-16 00:52:10 +01:00
|
|
|
void SdFatUtil::SerialPrint_P(PGM_P str) {
|
|
|
|
print_P(str);
|
2011-11-18 22:17:37 +01:00
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** %Print a string in flash memory to Serial followed by a CR/LF.
|
|
|
|
*
|
|
|
|
* \param[in] str Pointer to string stored in flash memory.
|
|
|
|
*/
|
2015-01-16 00:52:10 +01:00
|
|
|
void SdFatUtil::SerialPrintln_P(PGM_P str) {
|
2015-10-03 08:08:58 +02:00
|
|
|
println_P(str);
|
2011-11-18 22:17:37 +01:00
|
|
|
}
|
2015-01-16 00:52:10 +01:00
|
|
|
#endif
|