This commit is contained in:
parent
eb27ab4bb0
commit
4c63fed69d
@ -246,12 +246,13 @@ ReturnValue_t CcsdsIpCoreHandler::checkModeCommand(Mode_t mode, Submode_t submod
|
|||||||
void CcsdsIpCoreHandler::startTransition(Mode_t mode, Submode_t submode) {
|
void CcsdsIpCoreHandler::startTransition(Mode_t mode, Submode_t submode) {
|
||||||
triggerEvent(CHANGING_MODE, mode, submode);
|
triggerEvent(CHANGING_MODE, mode, submode);
|
||||||
if (mode == HasModesIF::MODE_ON) {
|
if (mode == HasModesIF::MODE_ON) {
|
||||||
|
uint32_t currenRate = ptmeConfig.getRate();
|
||||||
// Check whether the rate actually changes.
|
// Check whether the rate actually changes.
|
||||||
if ((this->submode != submode) and
|
if ((this->submode != submode) and
|
||||||
((submode == static_cast<Submode_t>(com::CcsdsSubmode::DATARATE_LOW) and
|
(((submode == static_cast<Submode_t>(com::CcsdsSubmode::DATARATE_LOW) and
|
||||||
ptmeConfig.getRate() != RATE_100KBPS)) or
|
(currenRate != RATE_100KBPS))) or
|
||||||
((submode == static_cast<Submode_t>(com::CcsdsSubmode::DATARATE_HIGH) and
|
((submode == static_cast<Submode_t>(com::CcsdsSubmode::DATARATE_HIGH) and
|
||||||
ptmeConfig.getRate() != RATE_500KBPS))) {
|
(currenRate != RATE_500KBPS))))) {
|
||||||
initPtmeUpdateAfterXCycles();
|
initPtmeUpdateAfterXCycles();
|
||||||
updateContext.enableTransmitAfterPtmeUpdate = true;
|
updateContext.enableTransmitAfterPtmeUpdate = true;
|
||||||
updateContext.updateClockRate = true;
|
updateContext.updateClockRate = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user