mirror of
https://github.com/espressif/openthread.git
synced 2026-08-16 15:47:46 +00:00
[radio] fix sub-ghz build wrt channel page index (#11033)
The .cpp file uses channel page2 for subghz channels, not page1, this fixes that.
This commit is contained in:
@@ -814,7 +814,7 @@ public:
|
||||
#endif
|
||||
|
||||
#if OPENTHREAD_CONFIG_RADIO_915MHZ_OQPSK_SUPPORT
|
||||
if (aChannelPage == kChannelPage1)
|
||||
if (aChannelPage == kChannelPage2)
|
||||
{
|
||||
mask = OT_RADIO_915MHZ_OQPSK_CHANNEL_MASK;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user