PAPB multi-byte write support #543

Merged
muellerr merged 8 commits from papb_multi_byte_write_support into develop 2023-03-31 18:37:14 +02:00
4 changed files with 46 additions and 5 deletions
Showing only changes of commit fcf3437410 - Show all commits

View File

@ -180,7 +180,7 @@ class CcsdsIpCoreHandler : public SystemObject,
/** /**
* @brief Starts transmit timer and enables transmitter. * @brief Starts transmit timer and enables transmitter.
*/ */
void enableTransmit(bool resetPtmeUpdateParams); void enableTransmit();
/** /**
* @brief Disables the transmitter by pulling the enable tx clock and tx data pin of the * @brief Disables the transmitter by pulling the enable tx clock and tx data pin of the

View File

@ -43,6 +43,7 @@ ReturnValue_t PersistentLogTmStoreTask::performOperation(uint8_t opCode) {
TaskFactory::delayTask(100); TaskFactory::delayTask(100);
} else if (vcBusyDuringDump) { } else if (vcBusyDuringDump) {
// TODO: Might not be necessary // TODO: Might not be necessary
sif::debug << "VC busy, delaying" << std::endl;
TaskFactory::delayTask(10); TaskFactory::delayTask(10);
} }
} }