Function to calculate the memory available for malloc

Dependents:   AvailableMemory_HelloWorld MCBBThermostat helloaabbc SP14P1_skeleton

AvailableMemory.h

Committer:
segundo
Date:
2010-11-07
Revision:
3:9092256004a5
Parent:
2:5dd69c9259a0
Child:
4:be8247f802ad

File content as of revision 3:9092256004a5:

/** @file AvailableMemory.h
 */
#ifndef SEGUNDO_UTILITIES_AVAILABLEMEMORY_H
#define SEGUNDO_UTILITIES_AVAILABLEMEMORY_H

/** @brief Return the available memory for a malloc call
 */
 
namespace segundo {
namespace Utilities {

/** Return the available memory for a malloc call (to the nearest 256 bytes)
 */
int AvailableMemory();

/** Return the available memory for a malloc call
 *
 * @param resolution A normalised number 0.0-1.0 to represent the full range.
 * @param maximum A normalised number 0.0-1.0 to represent the full range.
 * @param disableInterrupts A normalised number 0.0-1.0 to represent the full range.
 */
int AvailableMemory(int resolution, int maximum, bool disableInterrupts);

} // namespace Utilities
} // namespace segundo

using namespace segundo::Utilities;

#endif // SEGUNDO_UTILITIES_AVAILABLEMEMORY_H