How to switch between various RCP API versions? #8162
-
I am not able to find the release tags or branches which can help me switch to desired RCP API version. The last tag that I could find was created on "26 Apr 2021". Not able to find any other release tags after this date. Thanks in Advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You can use https://github.com/openthread/openthread/blame/main/src/lib/spinel/spinel.h#L380 If possible, I would suggest updating to the latest OpenThread implementation since it includes the latest Thread 1.3 features and bug fixes. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the reply. The reason for not using latest version is because the RPi BR that I have is expecting older version. Thanks again! |
Beta Was this translation helpful? Give feedback.
You can use
git blame
to identify the commits that changedSPINEL_RCP_API_VERSION
.https://github.com/openthread/openthread/blame/main/src/lib/spinel/spinel.h#L380
If possible, I would suggest updating to the latest OpenThread implementation since it includes the latest Thread 1.3 features and bug fixes.