How do I in runtime, not compilte itme, decide which nrf bsdlib version i am using?
How do I in runtime, not compilte itme, decide which nrf bsdlib version i am using?
Hello,
in bsd_platform.h there are these defines
/**@brief Major version number. */ #define BSD_VERSION_MAJOR_NUMBER 0x0001 /**@brief Minor version number. */ #define BSD_VERSION_MINOR_NUMBER 0x0000
but as you can see they are wrong. I will report this internally. We can just hope they will be maintained better in the future. In the meantime, you can modify these yourself to match the version number of you bsdlib revision.
How can I be sure that my code is compiled against the correct BSDLib version? I am testing fw 1.1.0-rc40 for the modem, and I want to make sure that I compile against the correct bsdlib
You should use modem firmware release v1.1.0, not 1.1.0-rc40. Then use bsdlib v0.5.0.
Looking at mfw 1.1.0, there is a lot of changes in pins for spi and i2c. When I build, I get compile time errors for generated code. I've never touched this code, and this makes it impossible to guess what fix is needed in order to make it run, since no documentation is available, as far as i can see. If i google the problem, no suitable answer is returned.
C:/nrfTest-1.1/ncs/zephyr/drivers/spi/spi_nrfx_spim.c:374:8: error: 'DT_NORDIC_NRF_SPIM_SPI_3_IRQ_0_PRIORITY' undeclared (first use in this function); did you mean 'DT_NORDIC_NRF_TWIM_I2C_2_IRQ_0_PRIORITY'?
I had a similar error with i2c, and this was fixed with deleting biuld folders, closing and reopening the project in segger, but this doesn't work for spi.
Are you trying to build an example in the SDK? If yes, which example?