i2c_nrfx_twim power management in NCS 2.7.0

NCS 2.7.0 nrf52840

I noticed in i2c_nrfx_twim.c  there are some calls to pm_device_runtime_get, while in another thread (thread) it was mentioned that Nordic is no longer supporting CONFG_PM_DEVICE.

The git history for i2c_nrfx_twim.c mentions that previously nrfx_twim_enable/nrfx_twim_disable were used and gave a 2-3 uA reduction in current.

Do later versions of NCS revert the PM_DEVICE changes or is nordic not actually dropping support for CONFIG_PM_DEVICE_RUNTIME ?

Should I replace the pm-device_runtime_get calls with nrfx_twim_enable/nrfx_twim_disable calls to get the previously available current reduction?

Related