2011-11-18 21:17:37 +00:00
|
|
|
/* Arduino SdFat Library
|
|
|
|
* Copyright (C) 2008 by William Greiman
|
|
|
|
*
|
|
|
|
* This file is part of the Arduino SdFat Library
|
|
|
|
*
|
|
|
|
* This Library is free software: you can redistribute it and/or modify
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This Library is distributed in the hope that it will be useful,
|
|
|
|
* 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.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with the Arduino SdFat Library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2011-12-22 13:55:45 +00:00
|
|
|
#include "Marlin.h"
|
2011-12-26 08:28:51 +00:00
|
|
|
|
|
|
|
#ifdef SDSUPPORT
|
2011-11-18 21:17:37 +00:00
|
|
|
#include "SdFatUtil.h"
|
2011-12-22 13:55:45 +00:00
|
|
|
|
2011-11-18 21:17:37 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** Amount of free RAM
|
|
|
|
* \return The number of free bytes.
|
|
|
|
*/
|
|
|
|
int SdFatUtil::FreeRam() {
|
|
|
|
extern int __bss_end;
|
|
|
|
extern int* __brkval;
|
|
|
|
int free_memory;
|
|
|
|
if (reinterpret_cast<int>(__brkval) == 0) {
|
|
|
|
// if no heap use from end of bss section
|
|
|
|
free_memory = reinterpret_cast<int>(&free_memory)
|
|
|
|
- reinterpret_cast<int>(&__bss_end);
|
|
|
|
} else {
|
|
|
|
// use from top of stack to heap
|
|
|
|
free_memory = reinterpret_cast<int>(&free_memory)
|
|
|
|
- reinterpret_cast<int>(__brkval);
|
|
|
|
}
|
|
|
|
return free_memory;
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** %Print a string in flash memory.
|
|
|
|
*
|
|
|
|
* \param[in] pr Print object for output.
|
|
|
|
* \param[in] str Pointer to string stored in flash memory.
|
|
|
|
*/
|
2011-11-28 18:13:40 +00:00
|
|
|
void SdFatUtil::print_P( PGM_P str) {
|
2012-02-11 15:02:47 +00:00
|
|
|
for (uint8_t c; (c = pgm_read_byte(str)); str++) MYSERIAL.write(c);
|
2011-11-18 21:17:37 +00: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.
|
|
|
|
*/
|
2011-11-28 18:13:40 +00:00
|
|
|
void SdFatUtil::println_P( PGM_P str) {
|
|
|
|
print_P( str);
|
2012-02-11 15:02:47 +00:00
|
|
|
MYSERIAL.println();
|
2011-11-18 21:17:37 +00:00
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** %Print a string in flash memory to Serial.
|
|
|
|
*
|
|
|
|
* \param[in] str Pointer to string stored in flash memory.
|
|
|
|
*/
|
|
|
|
void SdFatUtil::SerialPrint_P(PGM_P str) {
|
2011-11-28 18:13:40 +00:00
|
|
|
print_P(str);
|
2011-11-18 21:17:37 +00:00
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** %Print a string in flash memory to Serial followed by a CR/LF.
|
|
|
|
*
|
|
|
|
* \param[in] str Pointer to string stored in flash memory.
|
|
|
|
*/
|
|
|
|
void SdFatUtil::SerialPrintln_P(PGM_P str) {
|
2011-11-28 18:13:40 +00:00
|
|
|
println_P( str);
|
2011-11-18 21:17:37 +00:00
|
|
|
}
|
2011-12-26 08:28:51 +00:00
|
|
|
#endif
|