Skip to content

Commit

Permalink
Fixed timeout bug in different frequencies
Browse files Browse the repository at this point in the history
  • Loading branch information
BiliouriV authored Apr 8, 2021
1 parent 40d2eca commit 7a6a75e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/LuosAnalyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void LuosAnalyzer::WorkerThread()
U32 state = 0; //initialization of state machine
//Initial Position of the first bit -- falling edge -- beginning of the start bit
mTx->AdvanceToNextEdge();
U32 timeout = 20 * (1000000 / mSettings->mBitRate); //Timeout = 2*10*(1sec/baudrate)
U32 timeout = 20; //Timeout = 2*10*(1sec/baudrate)

//used for aknowledgement time tracking

Expand Down

0 comments on commit 7a6a75e

Please sign in to comment.