mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
17 lines
492 B
C++
17 lines
492 B
C++
#ifndef DEFAULT_CONFIG_FILEMANAGERCONFIG_HPP
|
|
#define DEFAULT_CONFIG_FILEMANAGERCONFIG_HPP
|
|
|
|
#include <config/FpConfig.hpp>
|
|
|
|
namespace Svc {
|
|
namespace FileManagerConfig {
|
|
//! Number of directory entries to process per rate group tick
|
|
//! Higher values = faster directory listing but more events per tick
|
|
//! Lower values = slower directory listing but bounded event rate
|
|
//! Default: 1
|
|
static constexpr U32 FILES_PER_RATE_TICK = 1;
|
|
} // namespace FileManagerConfig
|
|
} // namespace Svc
|
|
|
|
#endif
|