libgpiod test
This commit is contained in:
parent
f17e983cad
commit
c36727bd3d
@ -58,7 +58,7 @@ ReturnValue_t LibgpiodTest::performOneShotAction() {
|
|||||||
case(TestCases::LOOPBACK): {
|
case(TestCases::LOOPBACK): {
|
||||||
result = gpioInterface->pullHigh(gpioIds::TEST_ID_0);
|
result = gpioInterface->pullHigh(gpioIds::TEST_ID_0);
|
||||||
if(result == HasReturnvaluesIF::RETURN_OK) {
|
if(result == HasReturnvaluesIF::RETURN_OK) {
|
||||||
sif::info << "LibgpiodTest::performOneShotAction:"
|
sif::info << "LibgpiodTest::performOneShotAction: "
|
||||||
"GPIO pulled high successfully for loopback test" << std::endl;
|
"GPIO pulled high successfully for loopback test" << std::endl;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -68,7 +68,7 @@ ReturnValue_t LibgpiodTest::performOneShotAction() {
|
|||||||
}
|
}
|
||||||
result = gpioInterface->readGpio(gpioIds::TEST_ID_1, &gpioState);
|
result = gpioInterface->readGpio(gpioIds::TEST_ID_1, &gpioState);
|
||||||
if(result == HasReturnvaluesIF::RETURN_OK and gpioState == 1) {
|
if(result == HasReturnvaluesIF::RETURN_OK and gpioState == 1) {
|
||||||
sif::info << "LibgpiodTest::performOneShotAction:"
|
sif::info << "LibgpiodTest::performOneShotAction: "
|
||||||
"GPIO state read successfully and is high" << std::endl;
|
"GPIO state read successfully and is high" << std::endl;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -79,12 +79,12 @@ ReturnValue_t LibgpiodTest::performOneShotAction() {
|
|||||||
|
|
||||||
result = gpioInterface->pullLow(gpioIds::TEST_ID_0);
|
result = gpioInterface->pullLow(gpioIds::TEST_ID_0);
|
||||||
if(result == HasReturnvaluesIF::RETURN_OK) {
|
if(result == HasReturnvaluesIF::RETURN_OK) {
|
||||||
sif::info << "LibgpiodTest::performOneShotAction:"
|
sif::info << "LibgpiodTest::performOneShotAction: "
|
||||||
"GPIO pulled low successfully for loopback test" << std::endl;
|
"GPIO pulled low successfully for loopback test" << std::endl;
|
||||||
}
|
}
|
||||||
result = gpioInterface->readGpio(gpioIds::TEST_ID_1, &gpioState);
|
result = gpioInterface->readGpio(gpioIds::TEST_ID_1, &gpioState);
|
||||||
if(result == HasReturnvaluesIF::RETURN_OK and gpioState == 0) {
|
if(result == HasReturnvaluesIF::RETURN_OK and gpioState == 0) {
|
||||||
sif::info << "LibgpiodTest::performOneShotAction:"
|
sif::info << "LibgpiodTest::performOneShotAction: "
|
||||||
"GPIO state read successfully and is low" << std::endl;
|
"GPIO state read successfully and is low" << std::endl;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user