I took the I2S example from SDK15 and while compiling I am getting the following errors. I tried but I am not able to solve it. The same happen when I have taken twi example from SDK15.
Their is a loot of confusion between NRF and NRFX is their any document which can help me solve this issue will be a great help.
compiling main.c...
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_SCK_PIN" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_LRCK_PIN" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_MCK_PIN" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_SDOUT_PIN" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_SDIN_PIN" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_IRQ_PRIORITY" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_MASTER" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_FORMAT" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_ALIGN" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_SWIDTH" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_CHANNELS" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_MCK_SETUP" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\..\..\..\integration\nrfx\legacy\nrf_drv_i2s.h(100): error: #20: identifier "NRFX_I2S_CONFIG_RATIO" is undefined
static nrfx_i2s_config_t const default_config = NRFX_I2S_DEFAULT_CONFIG;
..\..\..\main.c(240): error: #20: identifier "NRF_LOG_TIMESTAMP_DEFAULT_FREQUENCY" is undefined
err_code = NRF_LOG_INIT(NULL);
..\..\..\main.c(247): error: #29: expected an expression
nrf_drv_i2s_config_t config = NRF_DRV_I2S_DEFAULT_CONFIG;
..\..\..\main.c(253): error: #20: identifier "I2S_SDIN_PIN" is undefined
config.sdin_pin = I2S_SDIN_PIN;
..\..\..\main.c(254): error: #20: identifier "I2S_SDOUT_PIN" is undefined
config.sdout_pin = I2S_SDOUT_PIN;
..\..\..\main.c: 0 warnings, 17 errors