Is it NOT possible to use RLP for starting a timer interrupt?
(even not for catching a UART interrupt )
when will this feature be available?
I theory, ISRs are available and possible now but we do not have examples yet. A new SDK will come this/next week that will add many new features and enhancements and examples for RLP. Examples for ISR installing using RLP will come after. If you can't wait for few weeks then we can work with you one-on-one to help you out.
Does your protocol require such accurate timing? Most UART interfaces work fine with 10ms or even 100ms delays. What I mean is why no call your state machine handler from a timer in managed code?
RLPs are great but not as simple as managed code and so you should use them only when it is a must. Sometimes you can device the code so, for example, the state machine and UART driver is in managed but the CRC calculation and data parsing is done in RLP.