mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-24 00:35:39 +03:00
Added RSNR to the OSD (#11062)
* Added RNSR to the OSD * filtering with pt1 * update pgconfig ver * rssi_smoothness and proper define wrapping * missing define wrap * smoothing moved to updateRSSI * minor comment update * fixed rx tests Co-authored-by: Tony Cabello <> Co-authored-by: J Blackman <blckmn@users.noreply.github.com>
This commit is contained in:
parent
b197d1d6bd
commit
22c5bf4eb3
17 changed files with 215 additions and 64 deletions
|
@ -606,6 +606,12 @@ extern "C" {
|
|||
UNUSED(k);
|
||||
}
|
||||
|
||||
void pt1FilterUpdateCutoff(pt1Filter_t *filter, float k)
|
||||
{
|
||||
UNUSED(filter);
|
||||
UNUSED(k);
|
||||
}
|
||||
|
||||
float pt1FilterApply(pt1Filter_t *filter, float input)
|
||||
{
|
||||
UNUSED(filter);
|
||||
|
|
|
@ -253,6 +253,12 @@ void pt1FilterInit(pt1Filter_t *filter, float k)
|
|||
UNUSED(k);
|
||||
}
|
||||
|
||||
void pt1FilterUpdateCutoff(pt1Filter_t *filter, float k)
|
||||
{
|
||||
UNUSED(filter);
|
||||
UNUSED(k);
|
||||
}
|
||||
|
||||
float pt1FilterApply(pt1Filter_t *filter, float input)
|
||||
{
|
||||
UNUSED(filter);
|
||||
|
|
|
@ -259,6 +259,12 @@ extern "C" {
|
|||
UNUSED(k);
|
||||
}
|
||||
|
||||
void pt1FilterUpdateCutoff(pt1Filter_t *filter, float k)
|
||||
{
|
||||
UNUSED(filter);
|
||||
UNUSED(k);
|
||||
}
|
||||
|
||||
float pt1FilterApply(pt1Filter_t *filter, float input)
|
||||
{
|
||||
UNUSED(filter);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue