nRF Connect SDK revisions

Hi there,

We are currently using nRF Conenct SDK revision v2.5.0

https://github.com/nrfconnect/

Initially started with v2.6.1 but had to downgrade to v2.5.0 due to some limitations with other third party libraries

Found out that nRF Connect SDK revision v2.6.1 is using Zephyr revision 3.5.x

And the SDK revision v2.5.0 is using Zephyr revision 3.4

 

Question:

Moving forward, trying to figure out which nRF Connect SDK revision would support latest Zephyr revision 3.7.0

https://zephyrproject.org/announcing-zephyr-3-7-new-long-term-support-release-of-zephyr-rtos/

 

I have found here

https://github.com/nrfconnect/sdk-nrf/releases

That nRF Connect SDK v2.7.0 is available

But cannot figure out which Zephyr revision it is associated with?

Please let me know if I missed other relevant documentation / link(s)

Thank you

Jamal Mouline

Connected Development

Parents Reply
  • I'm not sure if there is an official function for it, but if you include "ncs_version.h" it has the following:

    #define NCSVERSION                   
    #define NCS_VERSION_NUMBER           0x20600
    #define NCS_VERSION_MAJOR            2
    #define NCS_VERSION_MINOR            6
    #define NCS_PATCHLEVEL               0
    #define NCS_TWEAK                    
    #define NCS_VERSION_STRING           "2.6.0"
    #define NCS_VERSION_EXTENDED_STRING  ""
    #define NCS_VERSION_TWEAK_STRING     ""
    
    #define NCS_BUILD_VERSION v2.6.0
    #define BANNER_VERSION STRINGIFY(NCS_BUILD_VERSION)

    Not sure if that will always be there for all versions, but it may be helpful.

Children
Related