Resolving expressions in intercepted codes.
-
Using dsf-python is there a way to resolve expressions passed to codes that are intercepted?
I was expecting a method like
resolve_expression()
but I didn't see anything like that. -
@nmsmith89 can you give a specific example please.
-
@t3p3tony I found it finally!
What I was looking for was:
con.perform_command(evaluate_expression(CodeChannel.SBC, expression))
based on
dsf.commands.basecommands.evaluate_expression
. Since RRF expressions aren't automatically resolved as they are intercepted you have to do it yourself.It just wasn't immediately clear.