Marlin_Firmware/Marlin/src/sd/SdFatUtil.cpp

61 lines
1.5 KiB
C++
Raw Normal View History

/**
2016-03-24 13:01:20 -05:00
* Marlin 3D Printer Firmware
2019-06-27 23:57:50 -05:00
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
2011-11-18 15:17:37 -06:00
*
2016-03-24 13:01:20 -05:00
* Based on Sprinter and grbl.
2019-06-27 23:57:50 -05:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
2011-11-18 15:17:37 -06:00
*
2016-03-24 13:01:20 -05:00
* This program is free software: you can redistribute it and/or modify
2011-11-18 15:17:37 -06: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 13:01:20 -05:00
* This program is distributed in the hope that it will be useful,
2011-11-18 15:17:37 -06: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 13:01:20 -05:00
*
2011-11-18 15:17:37 -06:00
* You should have received a copy of the GNU General Public License
2016-03-24 13:01:20 -05:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/**
2016-03-24 13:01:20 -05:00
* Arduino SdFat Library
2019-06-27 23:57:50 -05:00
* Copyright (c) 2008 by William Greiman
2016-03-24 13:01:20 -05:00
*
* This file is part of the Arduino Sd2Card Library
2011-11-18 15:17:37 -06:00
*/
2017-09-06 06:28:32 -05:00
#include "../inc/MarlinConfig.h"
#if ENABLED(SDSUPPORT)
2017-09-06 06:28:32 -05:00
2011-11-18 15:17:37 -06:00
#include "SdFatUtil.h"
#include <string.h>
2017-11-15 00:06:20 -06:00
/**
* Amount of free RAM
2011-11-18 15:17:37 -06:00
* \return The number of free bytes.
*/
#ifdef __arm__
2017-11-05 08:49:38 -06:00
extern "C" char* sbrk(int incr);
int SdFatUtil::FreeRam() {
char top;
return &top - reinterpret_cast<char*>(sbrk(0));
}
2017-11-15 00:06:20 -06:00
2017-11-05 08:49:38 -06:00
#else
2017-11-15 00:06:20 -06:00
2017-11-05 08:49:38 -06:00
extern char* __brkval;
extern char __bss_end;
int SdFatUtil::FreeRam() {
char top;
return __brkval ? &top - __brkval : &top - &__bss_end;
}
2017-11-15 00:06:20 -06:00
2017-11-05 08:49:38 -06:00
#endif
2017-09-06 06:28:32 -05:00
#endif // SDSUPPORT