mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
15 lines
482 B
C++
15 lines
482 B
C++
// ======================================================================
|
|
// \title CRCCheckerConfig.hpp
|
|
// \brief Configuration file for CRCChecker module
|
|
// ======================================================================
|
|
|
|
#ifndef CONFIG_CRC_CHECKER_CONFIG_HPP
|
|
#define CONFIG_CRC_CHECKER_CONFIG_HPP
|
|
|
|
#include <Fw/FPrimeBasicTypes.hpp>
|
|
|
|
// Default block size used when reading files for CRC calculation
|
|
constexpr FwSignedSizeType CONFIG_CRC_FILE_READ_BLOCK = 2048;
|
|
|
|
#endif
|