Lines Matching full:band
31 /** Maximum length of the band specification string */
38 * @brief Convert a band specification string to a bitmap representing the bands.
40 * @details The function will parse a string which specifies Wi-Fi frequency band
49 * for bit position of each band.
85 * - A colon identifies the value preceding it as a band. A band value
86 * (2: 2.4 GHz, 5: 5 GHz 6: 6 GHz) has to precede the channels in that band (e.g. 2: etc)
88 * - Commas are used to separate channel values within a band. Channels can be specified
90 * - Underscores (_) are used to specify multiple band-channel sets (e.g. 2:1,2_5:36,40 etc)
111 * @brief Validate a channel against a band.
113 * @param band Band to validate the channel against.
116 * @retval true if the channel is valid for the band.
117 * @retval false if the channel is not valid for the band.
119 bool wifi_utils_validate_chan(uint8_t band,
123 * @brief Validate a channel against the 2.4 GHz band.
127 * @retval true if the channel is valid for the band.
128 * @retval false if the channel is not valid for the band.
133 * @brief Validate a channel against the 5 GHz band.
137 * @retval true if the channel is valid for the band.
138 * @retval false if the channel is not valid for the band.
143 * @brief Validate a channel against the 6 GHz band.
147 * @retval true if the channel is valid for the band.
148 * @retval false if the channel is not valid for the band.