From 62bdd1bea53e470af1f6f3ba851930eeb211f536 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 19 Jul 2022 11:55:35 -0700 Subject: [PATCH] band: add band_freq HE has different rules depending on the frequency, so the band structure also needs to track the frequency for any rate information to have context. --- src/band.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/band.h b/src/band.h index 7b9e901f..ba887ee6 100644 --- a/src/band.h +++ b/src/band.h @@ -50,6 +50,7 @@ struct band_chandef { }; struct band { + enum band_freq freq; uint8_t vht_mcs_set[8]; uint8_t vht_capabilities[4]; bool vht_supported : 1;