bpx handler now working
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
2022-02-03 13:37:48 +01:00
parent 6440567585
commit e142408bb8
15 changed files with 678 additions and 514 deletions

View File

@ -1,3 +1,4 @@
#include <linux/boardtest/I2cTestClass.h>
#include "ObjectFactory.h"
#include <sstream>
@ -1130,4 +1131,7 @@ void ObjectFactory::createTestComponents(LinuxLibgpioIF* gpioComIF) {
#if OBSW_ADD_SPI_TEST_CODE == 1
new SpiTestClass(objects::SPI_TEST, gpioComIF);
#endif
#if OBSW_ADD_I2C_TEST_CODE == 1
new I2cTestClass(objects::I2C_TEST, q7s::I2C_DEFAULT_DEV);
#endif
}