Hi,
I faced some issues regarding multiple IRQ_CONNECT being onvoked on the same irq and I went into this post :
LPUART nRF5340 fatal error - Nordic Q&A - Nordic DevZone - Nordic DevZone (nordicsemi.com)
Does it means that any <PERIPHERAL>X interrput can be re-routed to any <PERIPHERAL>Y line?
For instance, I use TWIM0, and I assume following code is not valid :
&i2c0 {
compatible = "nordic,nrf-twim";
status = "okay";
pinctrl-0 = <&i2c0_default>;
pinctrl-1 = <&i2c0_sleep>;
pinctrl-names = "default", "sleep";
// re-route to TWIM1 interrupt
interrputs: <9 5>
};
