Skip to content

Commit

Permalink
re-enable channel steering for series2. update the ifdef condition
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartinez-silabs committed Dec 16, 2024
1 parent 750432a commit 0c5d46c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/platform/silabs/BaseApplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ void BaseApplication::OnPlatformEvent(const ChipDeviceEvent * event, intptr_t)

// SL-Only
#ifdef SL_CATALOG_ZIGBEE_STACK_COMMON_PRESENT
#if defined(SL_MATTER_ZIGBEE_CMP) && defined(_SILICON_LABS_32B_SERIES_3)
#if defined(SL_MATTER_ZIGBEE_CMP) && !defined(SL_CATALOG_RAIL_UTIL_IEEE802154_FAST_CHANNEL_SWITCHING_PRESENT)
uint8_t channel = otLinkGetChannel(DeviceLayer::ThreadStackMgrImpl().OTInstance());
Zigbee::RequestStart(channel); // leave handle internally
#elif defined(SL_MATTER_ZIGBEE_SEQUENTIAL) // Matter Zigbee sequential
Expand Down

0 comments on commit 0c5d46c

Please sign in to comment.