10 lines
275 B
C
10 lines
275 B
C
|
#ifndef MISSION_CONFIG_CONFIGFILE_H_
|
||
|
#define MISSION_CONFIG_CONFIGFILE_H_
|
||
|
|
||
|
namespace configfile {
|
||
|
// Name of global config file relative to currently mounted SD card
|
||
|
static const char sdrelative[] = "config/global_config.json";
|
||
|
}
|
||
|
|
||
|
#endif /* MISSION_CONFIG_CONFIGFILE_H_ */
|