In the API file nrf_drv_twis.h
for the nRF SDK, the definition of NRF_DRV_TWIS_DEFAULT_CONFIG
looks interesting. The definitions for SCL and SDA pins are both set to the same value (31).
/**
* @brief Generate default configuration for TWIS driver instance
*/
#define NRF_DRV_TWIS_DEFAULT_CONFIG \
{ \
.addr = { TWIS_DEFAULT_CONFIG_ADDR0, TWIS_DEFAULT_CONFIG_ADDR1 }, \
.scl = 31, \
.scl_pull = (nrf_gpio_pin_pull_t)TWIS_DEFAULT_CONFIG_SCL_PULL, \
.sda = 31, \
.sda_pull = (nrf_gpio_pin_pull_t)TWIS_DEFAULT_CONFIG_SDA_PULL, \
.interrupt_priority = TWIS_DEFAULT_CONFIG_IRQ_PRIORITY \
}
It looks the same in both SDK 12 and SDK 13.