Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NetworkCommissioning]Add Encoding of the new NetworkCommisisoning attributes #30551

Merged
merged 9 commits into from
Nov 23, 2023
Prev Previous commit
Next Next commit
Leave GetThreadVersion() unimplemented for Tizen,WebOs and Linux app
  • Loading branch information
jmartinez-silabs committed Nov 17, 2023
commit 0782d9969aa36760bac7aef94bbdf08190aebd36
3 changes: 2 additions & 1 deletion src/platform/Linux/NetworkCommissioningThreadDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ ThreadCapabilities LinuxThreadDriver::GetSupportedThreadFeatures()

uint16_t LinuxThreadDriver::GetThreadVersion()
{
return otThreadGetVersion();
// TODO Needs to be implemented with DBUS io.openthread.BorderRouter Thread API
jmartinez-silabs marked this conversation as resolved.
Show resolved Hide resolved
return 0;
}

#endif // CHIP_DEVICE_CONFIG_ENABLE_THREAD
Expand Down
3 changes: 2 additions & 1 deletion src/platform/Tizen/NetworkCommissioningThreadDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ ThreadCapabilities TizenThreadDriver::GetSupportedThreadFeatures()

uint16_t TizenThreadDriver::GetThreadVersion()
{
return otThreadGetVersion();
// TODO Needs to be implemented with Tizen Thread stack api
return 0;
}

#endif // CHIP_DEVICE_CONFIG_ENABLE_THREAD
Expand Down
3 changes: 2 additions & 1 deletion src/platform/webos/NetworkCommissioningThreadDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ ThreadCapabilities LinuxThreadDriver::GetSupportedThreadFeatures()

uint16_t LinuxThreadDriver::GetThreadVersion()
{
return otThreadGetVersion();
// TODO Needs to be implemented with DBUS io.openthread.BorderRouter Thread API
return 0;
}

#endif // CHIP_DEVICE_CONFIG_ENABLE_THREAD
Expand Down
Loading