mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 16:59:57 +00:00
24 lines
527 B
C
24 lines
527 B
C
/*! \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.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef CALLSIGN
|
|
#define CALLSIGN "N0CALL"
|
|
#warning "CALLSIGN is not defined in config.h"
|
|
#endif
|
|
|
|
#ifndef COREVOLTAGE
|
|
#define COREVOLTAGE 0
|
|
#endif
|
|
|
|
#ifndef DEFAULTAPP
|
|
#define DEFAULTAPP 0
|
|
#endif
|