added link library gpiod

This commit is contained in:
2021-02-22 12:57:41 +01:00
committed by Robin Mueller
parent b75113b084
commit 7f969a47d6
5 changed files with 29 additions and 5 deletions

View File

@ -24,7 +24,7 @@ ReturnValue_t LibgpiodTest::performPeriodicAction() {
ReturnValue_t result;
switch(testCase) {
case(testCase == TestCases::READ): {
case(TestCases::READ): {
result = gpioInterface->readGpio(gpioIds::Test_ID, &gpioState);
if (result != RETURN_OK) {
sif::debug << "LibgpiodTest::performPeriodicAction: Failed to read gpio "
@ -37,7 +37,7 @@ ReturnValue_t LibgpiodTest::performPeriodicAction() {
}
break;
}
case(testCase == TestCases::LOOPBACK): {
case(TestCases::LOOPBACK): {
}
}