v1.15.0 #311
@ -13,6 +13,9 @@ list yields a list of all related PRs for each release.
|
|||||||
# [v1.15.0]
|
# [v1.15.0]
|
||||||
|
|
||||||
- Consistent device file naming
|
- Consistent device file naming
|
||||||
|
- Remove rad sensor from EM build, lead to weird bugs on EM which
|
||||||
|
prevented `xsc_boot_copy` from working properly
|
||||||
|
- CFDP closure handling is now working
|
||||||
|
|
||||||
# [v1.14.1]
|
# [v1.14.1]
|
||||||
|
|
||||||
|
@ -193,7 +193,7 @@ void ObjectFactory::createPcduComponents(LinuxLibgpioIF* gpioComIF, PowerSwitchI
|
|||||||
|
|
||||||
ReturnValue_t ObjectFactory::createRadSensorComponent(LinuxLibgpioIF* gpioComIF) {
|
ReturnValue_t ObjectFactory::createRadSensorComponent(LinuxLibgpioIF* gpioComIF) {
|
||||||
using namespace gpio;
|
using namespace gpio;
|
||||||
if(gpioComIF == nullptr) {
|
if (gpioComIF == nullptr) {
|
||||||
return returnvalue::FAILED;
|
return returnvalue::FAILED;
|
||||||
}
|
}
|
||||||
GpioCookie* gpioCookieRadSensor = new GpioCookie;
|
GpioCookie* gpioCookieRadSensor = new GpioCookie;
|
||||||
|
@ -422,7 +422,7 @@ ReturnValue_t GyroADIS1650XHandler::spiSendCallback(SpiComIF *comIf, SpiCookie *
|
|||||||
cookie->setTransferSize(2);
|
cookie->setTransferSize(2);
|
||||||
|
|
||||||
gpioId_t gpioId = cookie->getChipSelectPin();
|
gpioId_t gpioId = cookie->getChipSelectPin();
|
||||||
GpioIF& gpioIF = comIf->getGpioInterface();
|
GpioIF &gpioIF = comIf->getGpioInterface();
|
||||||
MutexIF::TimeoutType timeoutType = MutexIF::TimeoutType::WAITING;
|
MutexIF::TimeoutType timeoutType = MutexIF::TimeoutType::WAITING;
|
||||||
uint32_t timeoutMs = 0;
|
uint32_t timeoutMs = 0;
|
||||||
MutexIF *mutex = comIf->getCsMutex();
|
MutexIF *mutex = comIf->getCsMutex();
|
||||||
|
Loading…
Reference in New Issue
Block a user