debugging
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit

This commit is contained in:
Robin Müller 2022-02-08 11:59:22 +01:00
parent 191f3c3deb
commit c3e20d6a11

View File

@ -1,6 +1,7 @@
#ifndef MISSION_DEVICES_STARTRACKERHANDLER_H_ #ifndef MISSION_DEVICES_STARTRACKERHANDLER_H_
#define MISSION_DEVICES_STARTRACKERHANDLER_H_ #define MISSION_DEVICES_STARTRACKERHANDLER_H_
#include "OBSWConfig.h"
#include <fsfw/datapool/PoolReadGuard.h> #include <fsfw/datapool/PoolReadGuard.h>
#include "ArcsecDatalinkLayer.h" #include "ArcsecDatalinkLayer.h"
@ -268,10 +269,10 @@ class StarTrackerHandler : public DeviceHandlerBase {
// Countdown to insert delay for star tracker to switch from bootloader to firmware program // Countdown to insert delay for star tracker to switch from bootloader to firmware program
Countdown bootCountdown; Countdown bootCountdown;
#ifdef EGSE #ifndef EGSE
std::string paramJsonFile = "/mnt/sd0/startracker/full.json"; std::string paramJsonFile = "/mnt/sd0/startracker/full.json";
#else #else
std::string paramJsonFile = "/home/pi/arcsec/flight-config.json"; std::string paramJsonFile = "/home/pi/arcsec/ground-config.json";
#endif #endif
enum class InternalState { TEMPERATURE_REQUEST }; enum class InternalState { TEMPERATURE_REQUEST };