10 lines
298 B
C++
10 lines
298 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";
|
|
} // namespace configfile
|
|
|
|
#endif /* MISSION_CONFIG_CONFIGFILE_H_ */
|