Skip to content

Commit

Permalink
submodule: bump third_party/openthread/repo from 130afd9 to f4c2233
Browse files Browse the repository at this point in the history
  • Loading branch information
jwhui committed Jun 24, 2022
1 parent 776c2b8 commit ad4c070
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1492,7 +1492,7 @@ CHIP_ERROR GenericThreadStackManagerImpl_OpenThread<ImplClass>::_WriteThreadNetw
otOperationalDataset activeDataset;
otError otErr = otDatasetGetActive(mOTInst, &activeDataset);
VerifyOrExit(otErr == OT_ERROR_NONE, err = MapOpenThreadError(otErr));
uint64_t activeTimestamp = activeDataset.mPendingTimestamp;
uint64_t activeTimestamp = (activeDataset.mActiveTimestamp.mSeconds << 16) | (activeDataset.mActiveTimestamp.mTicks << 1) | activeDataset.activeDataset.mActiveTimestamp.mTicks.mAuthoritative;
err = encoder.Encode(activeTimestamp);
}
}
Expand All @@ -1505,7 +1505,7 @@ CHIP_ERROR GenericThreadStackManagerImpl_OpenThread<ImplClass>::_WriteThreadNetw
otOperationalDataset activeDataset;
otError otErr = otDatasetGetActive(mOTInst, &activeDataset);
VerifyOrExit(otErr == OT_ERROR_NONE, err = MapOpenThreadError(otErr));
uint64_t pendingTimestamp = activeDataset.mPendingTimestamp;
uint64_t pendingTimestamp = (activeDataset.mPendingTimestamp.mSeconds << 16) | (activeDataset.mPendingTimestamp.mTicks << 1) | activeDataset.mPendingTimestamp.mAuthoritative;
err = encoder.Encode(pendingTimestamp);
}
}
Expand Down
2 changes: 1 addition & 1 deletion third_party/openthread/repo
Submodule repo updated 186 files

0 comments on commit ad4c070

Please sign in to comment.