forked from http://developer.mbed.org/users/segundo/code/AvailableMemory/

Dependents:   Utility_AvailableMemory_blinky

Fork of AvailableMemory by Segundo Equipo

AvailableMemory.h

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

File content as of revision 4:be8247f802ad:

/** @file AvailableMemory.h
 * Return the available memory for a malloc call
 */
#ifndef SEGUNDO_UTILITIES_AVAILABLEMEMORY_H
#define SEGUNDO_UTILITIES_AVAILABLEMEMORY_H
 
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