formatting

This commit is contained in:
2024-10-11 15:44:59 +02:00
parent c679135138
commit 270ee48148
2 changed files with 7 additions and 7 deletions

View File

@ -1073,7 +1073,7 @@ int setNextFrameNumber(uint64_t value) {
LOG(logINFO, ("Setting next frame number: %lu\n", value));
#ifdef VIRTUAL
setU64BitReg(value, FRAME_NUMBER_LSB_REG, FRAME_NUMBER_MSB_REG);
#else
#else
// decrement by 1 for firmware
setU64BitReg(value - 1, FRAME_NUMBER_LSB_REG, FRAME_NUMBER_MSB_REG);
#endif