F´ Flight Software - C/C++ Documentation NASA-v1.6.0
A framework for building embedded system applications to NASA flight quality standards.
Loading...
Searching...
No Matches
PrmDbImplCfg.hpp
Go to the documentation of this file.
1/*
2 * PrmDblImplCfg.hpp
3 *
4 * Created on: Mar 13, 2015
5 * Author: tcanham
6 */
7
8#ifndef PRMDB_PRMDBLIMPLCFG_HPP_
9#define PRMDB_PRMDBLIMPLCFG_HPP_
10
11// Anonymous namespace for configuration parameters
12namespace {
13
14 enum {
15 PRMDB_NUM_DB_ENTRIES = 25, // !< Number of entries in the parameter database
16 PRMDB_ENTRY_DELIMITER = 0xA5 // !< Byte value that should precede each parameter in file; sanity check against file integrity. Should match ground system.
17 };
18
19}
20
21
22
23#endif /* PRMDB_PRMDBLIMPLCFG_HPP_ */