1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-24 16:46:13 +01:00

using a bunch of memory?

This commit is contained in:
travis-farmer 2023-10-21 15:57:50 -04:00
parent f88c617dbe
commit 1745fa72db

View File

@ -295,10 +295,13 @@ int DCCTimer::getMinimumFreeMemory() {
interrupts(); interrupts();
return retval; return retval;
} }
extern "C" char* sbrk(int incr);
int DCCTimer::freeMemory() { int DCCTimer::freeMemory() {
char top; char top;
return (int)(1024000);
return (int)(&top - reinterpret_cast<char*>(sbrk(0)));
} }
void DCCTimer::reset() { void DCCTimer::reset() {