mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
15 lines
257 B
C++
15 lines
257 B
C++
/*
|
|
* StaticMemoryCfg.hpp:
|
|
*
|
|
* Configuration settings for the static memory component.
|
|
*/
|
|
|
|
#ifndef SVC_STATIC_MEMORY_CFG_HPP_
|
|
#define SVC_STATIC_MEMORY_CFG_HPP_
|
|
|
|
namespace Svc {
|
|
enum StaticMemoryConfig { STATIC_MEMORY_ALLOCATION_SIZE = 2048 };
|
|
}
|
|
|
|
#endif
|