Currently on NCS 2.9.2 and radio_test is buildable with CONFIG_BT=y and CONFIG_COUNTER=y. Trying to switch to 3.1.0 but getting an error that "MPSL reserves TIMER10 on this SoC" coming from the mpsl_init.c.
What are the options? At the moment, I've changed radio_test.c to use TIMER24, but this is a different PD and I am not sure it is correct way to fix it:
```
#elif defined(CONFIG_SOC_SERIES_NRF54LX) && !defined(CONFIG_NRFX_TIMER10)
#define RADIO_TEST_EGU NRF_EGU20
#define RADIO_TEST_TIMER_INSTANCE 24
#define RADIO_TEST_TIMER_IRQn TIMER24_IRQn
#define RADIO_TEST_RADIO_IRQn RADIO_0_IRQn
#define RADIO_TEST_SHORT_END_DISABLE_MASK NRF_RADIO_SHORT_PHYEND_DISABLE_MASK
#define RADIO_TEST_INT_END_MASK NRF_RADIO_INT_PHYEND_MASK
#define RADIO_TEST_EVENT_END NRF_RADIO_EVENT_PHYEND
```
Can you confirm or add anything to this solution? Do I need to worry that TIMER24 is in different PD and less precise (if I am not mistaken), or I better use TIMER00? Are any additional routing / tunnelling / etc required?