this is weird
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

This commit is contained in:
Robin Müller 2023-03-27 18:59:31 +02:00
parent 1727168ee5
commit 7023fe5c42
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
2 changed files with 4 additions and 3 deletions

View File

@ -33,14 +33,14 @@ ReturnValue_t PapbVcInterface::write(const uint8_t* data, size_t size) {
return DirectTmSinkIF::IS_BUSY;
}
for (size_t idx = 0; idx < size; idx++) {
if (pollPapbBusySignal(10) == returnvalue::OK) {
if (pollPapbBusySignal(20) == returnvalue::OK) {
*(vcBaseReg + DATA_REG_OFFSET) = static_cast<uint32_t>(data[idx]);
} else {
abortPacketTransfer();
return returnvalue::FAILED;
}
}
if (pollPapbBusySignal(10) == returnvalue::OK) {
if (pollPapbBusySignal(20) == returnvalue::OK) {
completePacketTransfer();
} else {
abortPacketTransfer();
@ -57,7 +57,7 @@ ReturnValue_t PapbVcInterface::pollPapbBusySignal(uint32_t maxPollRetries) const
gpio::Levels papbBusyState = gpio::Levels::LOW;
ReturnValue_t result;
uint32_t busyIdx = 0;
struct timespec nextDelay = {.tv_sec = 0, .tv_nsec = 1000};
nextDelay.tv_nsec = 1000;
while (true) {
/** Check if PAPB interface is ready to receive data */

View File

@ -87,6 +87,7 @@ class PapbVcInterface : public VirtualChannelIF {
std::string uioFile;
int mapNum = 0;
mutable struct timespec nextDelay = {.tv_sec = 0, .tv_nsec = 1000};
mutable struct timespec remDelay;
volatile uint32_t* vcBaseReg = nullptr;