ACS controller init
EIVE/eive-obsw/pipeline/head There was a failure building this commit Details

This commit is contained in:
Robin Müller 2022-08-12 12:29:28 +02:00
parent 6551cbe1b4
commit 77cfc6e714
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
5 changed files with 44 additions and 3 deletions

2
fsfw

@ -1 +1 @@
Subproject commit 904ae2cc0ef61706a385d498942154da4f923a18
Subproject commit 03fa77e2b305d66b65d6db8f1181972b7b2643d2

View File

@ -1,6 +1,6 @@
#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 <string>

View File

@ -0,0 +1,10 @@
/*
* AcsController.cpp
*
* Created on: Aug 12, 2022
* Author: rmueller
*/

View 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

@ -1 +1 @@
Subproject commit 811a553ebeede481ae5ac9d78809593fbba4c5e2
Subproject commit e383263d2f39c17e432ae51b9a01db8466c34b68