2017-11-28 23:28:14 +00:00
|
|
|
/*! \file configdefault.h
|
|
|
|
\brief Default configuration values, to be overloaded in config.h
|
|
|
|
|
|
|
|
Each of these options can be over-written by defining them in
|
|
|
|
config.h, which is intentionally not included by the distribution.
|
|
|
|
See configtemplate.h as an example when constructing your
|
|
|
|
configuration.
|
|
|
|
*/
|
|
|
|
|
2017-11-29 16:27:28 +00:00
|
|
|
#include "config.h"
|
2017-11-28 23:28:14 +00:00
|
|
|
|
|
|
|
#ifndef CALLSIGN
|
|
|
|
#define CALLSIGN "N0CALL"
|
|
|
|
#warning "CALLSIGN is not defined in config.h"
|
|
|
|
#endif
|
|
|
|
|
2017-11-29 16:27:28 +00:00
|
|
|
#ifndef COREVOLTAGE
|
|
|
|
#define COREVOLTAGE 0
|
|
|
|
#endif
|
|
|
|
|
2017-11-30 01:20:06 +00:00
|
|
|
#ifndef DEFAULTAPP
|
|
|
|
#define DEFAULTAPP 0
|
|
|
|
#endif
|