Update EIVE FSFW #8

Merged
meierj merged 31 commits from mueller/master into eive/develop 2021-08-05 16:35:24 +02:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit 4202205182 - Show all commits

View File

@ -156,6 +156,10 @@ int CommandExecutor::getLastError() const {
return this->lastError;
}
CommandExecutor::States CommandExecutor::getCurrentState() const {
return state;
}
ReturnValue_t CommandExecutor::executeBlocking() {
while(fgets(readVec.data(), readVec.size(), currentCmdFile) != nullptr) {
std::string output(readVec.data());

View File

@ -97,6 +97,7 @@ public:
*/
ReturnValue_t close();
States getCurrentState() const;
int getLastError() const;
void printLastError(std::string funcName) const;