-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make a reset if bufferMove wants to move more than in buffer
- test
- skipshortms
- release3.3.1.rc9
- release.3.3.1rc8
- release
- reducesMinLen
- reducedMinLen
- nightly-20181219
- nightly
- dev-3.4.0+200711
- R3.3.1-RC10
- 200105
- 110220
- 050120
- 4.0.0-RC1
- 3.5.1
- 3.5.1-RC1
- 3.5.0
- 3.5.0-dev+20210808
- 3.5.0-dev+20210623
- 3.5.0-dev+20201221
- 3.5.0-dev+20201207
- 3.4.0
- 3.4.0-dev+20200711
- 3.4.0-dev+20200706
- 3.4.0-dev+20200413
- 3.4.0-dev+20200216
- 3.4.0-dev_041219
- 3.4.0-dev
- 3.3.2.1-rc8
- 3.3.1
- 3.3.1-experimental
- 3.3.1-exp
- 3.3.1-dev
- 3.3.1-RC-nightly
- 3.3.1-RC10
- 3.3.1-RC9
- 3.3.1-RC8
- 3.3.1-RC7
- 3.3.1-RC6
- 3.3.1-RC4
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,8 @@ void SignalDetectorClass::bufferMove(const uint8_t start) | |
m_truncated = false; | ||
//DBG_PRINTLN(""); | ||
if (start > messageLen - 1 || start == 0) { | ||
//DBG_PRINT(__FUNCTION__); DBG_PRINT(" start oor "); DBG_PRINT(start); DBG_PRINT(" "); DBG_PRINT(messageLen); | ||
//DBG_PRINT(__FUNCTION__); DBG_PRINT(" start oor "); DBG_PRINT(start); DBG_PRINT(" "); DBG_PRINTLN(messageLen); | ||
reset(); | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
sidey79
Author
Contributor
|
||
} | ||
else if (message.moveLeft(start)) | ||
{ | ||
|
Dies gefällt mir nicht so richtig, damit wird es schwierig die Ursache für das Problem zu finden.
Mir wäre sowas lieber: