Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7caf4c00 authored by spuligil's avatar spuligil
Browse files

fw-api: CL 6985139 - update fw common interface files

Change MODE_UNKNOWN assert for cases with 11AX ed but not 160 MHz supported

Change-Id: I5b87d5ae02a1f7515d301250a7ca6266e6e2ad5c
CRs-Fixed: 2262693
parent 4c3a190c
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -172,11 +172,23 @@ typedef enum {
#endif
} WLAN_PHY_MODE;

#ifndef CONFIG_160MHZ_SUPPORT
#if (!defined(CONFIG_160MHZ_SUPPORT)) && (!defined(SUPPORT_11AX))
A_COMPILE_TIME_ASSERT(
    mode_unknown_value_consistency_Check,
    MODE_UNKNOWN == MODE_UNKNOWN_NO_160MHZ_SUPPORT);
#else
/*
 * If SUPPORT_11AX is defined but CONFIG_160MHZ_SUPPORT is not defined,
 * there will be a gap in the mode values, with 14 and 15 being unused.
 * But MODE_UNKNOWN_NO_160MHZ_SUPPORT will have an invalid value, since
 * mode values 16 through 23 will be used for 11AX modes.
 * Thus, MODE_UNKNOWN would still be MODE_UNKNOWN_160MHZ_SUPPORT, for
 * cases where 160 MHz is not supported by 11AX is supported.
 * (Ideally, MODE_UNKNOWN_160MHZ_SUPPORT and NO_160MHZ_SUPPORT should be
 * renamed to cover the 4 permutations of support or no support for
 * 11AX and 160 MHZ, but that is impractical, due to backwards
 * compatibility concerns.)
 */
A_COMPILE_TIME_ASSERT(
    mode_unknown_value_consistency_Check,
    MODE_UNKNOWN == MODE_UNKNOWN_160MHZ_SUPPORT);