ACS controller init
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
This commit is contained in:
2
fsfw
2
fsfw
Submodule fsfw updated: 904ae2cc0e...03fa77e2b3
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <fsfw/hal/src/fsfw_hal/linux/gpio/LinuxLibgpioIF.h>
|
#include <fsfw_hal/linux/gpio/LinuxLibgpioIF.h>
|
||||||
#include <fsfw/returnvalues/HasReturnvaluesIF.h>
|
#include <fsfw/returnvalues/HasReturnvaluesIF.h>
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
10
mission/controller/AcsController.cpp
Normal file
10
mission/controller/AcsController.cpp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
/*
|
||||||
|
* AcsController.cpp
|
||||||
|
*
|
||||||
|
* Created on: Aug 12, 2022
|
||||||
|
* Author: rmueller
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
31
mission/controller/AcsController.h
Normal file
31
mission/controller/AcsController.h
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
#ifndef MISSION_CONTROLLER_ACSCONTROLLER_H_
|
||||||
|
#define MISSION_CONTROLLER_ACSCONTROLLER_H_
|
||||||
|
|
||||||
|
#include <fsfw/controller/ExtendedControllerBase.h>
|
||||||
|
|
||||||
|
class AcsController: public ExtendedControllerBase {
|
||||||
|
public:
|
||||||
|
private:
|
||||||
|
|
||||||
|
ReturnValue_t handleCommandMessage(CommandMessage* message) override;
|
||||||
|
void performControlOperation() override;
|
||||||
|
|
||||||
|
|
||||||
|
ReturnValue_t initializeLocalDataPool(localpool::DataPool& localDataPoolMap,
|
||||||
|
LocalDataPoolManager& poolManager) override;
|
||||||
|
LocalPoolDataSetBase* getDataSetHandle(sid_t sid) override;
|
||||||
|
|
||||||
|
// Mode abstract functions
|
||||||
|
ReturnValue_t checkModeCommand(Mode_t mode, Submode_t submode,
|
||||||
|
uint32_t* msToReachTheMode) override;
|
||||||
|
|
||||||
|
// MGMs
|
||||||
|
|
||||||
|
// Sun Sensors
|
||||||
|
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* MISSION_CONTROLLER_ACSCONTROLLER_H_ */
|
2
tmtc
2
tmtc
Submodule tmtc updated: 811a553ebe...e383263d2f
Reference in New Issue
Block a user