fprime/default/config/StaticMemoryConfig.hpp
2025-09-10 15:02:07 -07:00

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