mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-20 22:13:47 +00:00
reset noise_floor sampling after agc reset
This commit is contained in:
parent
a2dc2eb50c
commit
9106ab46e1
1 changed files with 8 additions and 0 deletions
|
|
@ -63,6 +63,14 @@ void RadioLibWrapper::resetAGC() {
|
||||||
|
|
||||||
doResetAGC();
|
doResetAGC();
|
||||||
state = STATE_IDLE; // trigger a startReceive()
|
state = STATE_IDLE; // trigger a startReceive()
|
||||||
|
|
||||||
|
// Reset noise floor sampling so it reconverges from scratch.
|
||||||
|
// Without this, a stuck _noise_floor of -120 makes the sampling threshold
|
||||||
|
// too low (-106) to accept normal samples (~-105), self-reinforcing the
|
||||||
|
// stuck value even after the receiver has recovered.
|
||||||
|
_noise_floor = 0;
|
||||||
|
_num_floor_samples = 0;
|
||||||
|
_floor_sample_sum = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void RadioLibWrapper::loop() {
|
void RadioLibWrapper::loop() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue