update reset pin handling
Some checks are pending
EIVE/eive-obsw/pipeline/head Build started...

This commit is contained in:
2022-05-25 10:59:20 +02:00
parent d870f5ab10
commit 01bac87afb
6 changed files with 23 additions and 13 deletions

View File

@ -5,14 +5,13 @@
#include "fsfw_hal/linux/gpio/LinuxLibgpioIF.h"
struct ResetArgs {
bool gnss1 = false;
LinuxLibgpioIF* gpioComIF = nullptr;
uint32_t waitPeriodMs = 100;
};
namespace gps {
ReturnValue_t triggerGpioResetPin(void* args);
ReturnValue_t triggerGpioResetPin(const uint8_t* actionData, size_t len, void* args);
}