There is missing bracket in /components/ble/peer_manager/nrf_ble_lesc.c:103
#elif defined((NRF_CRYPTO_RNG_AUTO_INIT_ENABLED) && (NRF_CRYPTO_RNG_AUTO_INIT_ENABLED == 0)
As a result for example ble_app_hrs example can not build.
There is missing bracket in /components/ble/peer_manager/nrf_ble_lesc.c:103
#elif defined((NRF_CRYPTO_RNG_AUTO_INIT_ENABLED) && (NRF_CRYPTO_RNG_AUTO_INIT_ENABLED == 0)
As a result for example ble_app_hrs example can not build.
Yeah I see it, there seems to be an extra parenthesis after 'defined'.
I'd like to know what IDE/compiler you're using and what modifications you've made to the example.
Hi, How is it going? It stil happened in 15.2! @'[email protected]'
Hi, I fixed it with :
#if NRF_MODULE_ENABLED(NRF_CRYPTO_RNG_AUTO_INIT_ENABLED) /*defined(NRF_CRYPTO_RNG_AUTO_INIT_ENABLED) && (NRF_CRYPTO_RNG_AUTO_INIT_ENABLED == 1)*/
// Do nothing. RNG is initialized with nrf_crypto_init call.
#elif !NRF_MODULE_ENABLED(NRF_CRYPTO_RNG_AUTO_INIT_ENABLED) /*defined((NRF_CRYPTO_RNG_AUTO_INIT_ENABLED) && (NRF_CRYPTO_RNG_AUTO_INIT_ENABLED == 0)*/
// Initialize the RNG.
err_code = nrf_crypto_rng_init(NULL, NULL);
if (err_code != NRF_SUCCESS)
{
NRF_LOG_ERROR("nrf_crypto_rng_init() returned error 0x%x.", err_code);
return err_code;
}
#else
#error Invalid sdk_config.h (does not contain NRF_CRYPTO_RNG_AUTO_INIT_ENABLED)
#endif // defined(NRF_CRYPTO_RNG_AUTO_INIT_ENABLED) && (NRF_CRYPTO_RNG_AUTO_INIT_ENABLED == 1)
fixed in 15.3
I compared 15.2.0 with 15.3.0, and found that it is the same in nrf_ble_lesc.c