mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
ath: enhance radar detection by looking up chirp
Certain radar types such as FCC radar type 5 are using chirp in their pulses, hence looking up the chirp status will enhance to avoid false radar detection. Signed-off-by: Peter Oh <poh@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
parent
2c3f26a065
commit
dab74cde38
1 changed files with 4 additions and 0 deletions
|
@ -390,6 +390,10 @@ static struct pri_sequence *pri_detector_add_pulse(struct pri_detector *de,
|
|||
if ((ts - de->last_ts) < rs->max_pri_tolerance)
|
||||
/* if delta to last pulse is too short, don't use this pulse */
|
||||
return NULL;
|
||||
/* radar detector spec needs chirp, but not detected */
|
||||
if (rs->chirp && rs->chirp != event->chirp)
|
||||
return NULL;
|
||||
|
||||
de->last_ts = ts;
|
||||
|
||||
max_updated_seq = pseq_handler_add_to_existing_seqs(de, ts);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue