This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/Marlin/src/sd/SdFatUtil.cpp

61 lines
1.5 KiB
C++
Raw Normal View History

/**
2016-03-24 19:01:20 +01:00
* Marlin 3D Printer Firmware
2019-06-28 06:57:50 +02:00
* Copyright (c) 2019 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.
2019-06-28 06:57:50 +02:00
* 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-24 19:01:20 +01:00
* Arduino SdFat Library
2019-06-28 06:57:50 +02:00
* Copyright (c) 2008 by William Greiman
2016-03-24 19:01:20 +01:00
*
* This file is part of the Arduino Sd2Card Library
2011-11-18 22:17:37 +01:00
*/
2017-09-06 13:28:32 +02:00
#include "../inc/MarlinConfig.h"
#if ENABLED(SDSUPPORT)
2017-09-06 13:28:32 +02:00
2011-11-18 22:17:37 +01:00
#include "SdFatUtil.h"
#include <string.h>
2017-11-15 07:06:20 +01:00
/**
* Amount of free RAM
2011-11-18 22:17:37 +01:00
* \return The number of free bytes.
*/
#ifdef __arm__
2017-11-05 15:49:38 +01:00
extern "C" char* sbrk(int incr);
int SdFatUtil::FreeRam() {
char top;
return &top - reinterpret_cast<char*>(sbrk(0));
}
2017-11-15 07:06:20 +01:00
2017-11-05 15:49:38 +01:00
#else
2017-11-15 07:06:20 +01:00
2017-11-05 15:49:38 +01:00
extern char* __brkval;
extern char __bss_end;
int SdFatUtil::FreeRam() {
char top;
return __brkval ? &top - __brkval : &top - &__bss_end;
}
2017-11-15 07:06:20 +01:00
2017-11-05 15:49:38 +01:00
#endif
2017-09-06 13:28:32 +02:00
#endif // SDSUPPORT