We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23dae48 commit bc16787Copy full SHA for bc16787
src/platform/silabs/wifi/WifiInterface.h
@@ -412,7 +412,6 @@ class WifiInterface
412
*/
413
virtual void CancelScanNetworks() = 0;
414
415
- using WiFiBandEnum = app::Clusters::NetworkCommissioning::WiFiBandEnum;
416
/**
417
* @brief Provide all the frequency bands supported by the Wi-Fi interface.
418
*
@@ -423,7 +422,7 @@ class WifiInterface
423
422
virtual uint32_t GetSupportedWiFiBandsMask() const
424
{
425
// Default to 2.4G support only
426
- return static_cast<uint32_t>(1UL << chip::to_underlying(WiFiBandEnum::k2g4));
+ return static_cast<uint32_t>(1UL << chip::to_underlying(app::Clusters::NetworkCommissioning::WiFiBandEnum::k2g4));
427
}
428
429
protected:
0 commit comments