rusefi_documentation/FSIO.md

18 lines
451 B
Markdown
Raw Normal View History

2020-04-18 11:59:55 -07:00
![img](overview/FSIO/FSIO_for_idle_target.png)
2019-12-30 07:37:44 -08:00
2020-04-28 13:58:39 -07:00
rusEFI console now has build-in decoder of RPN form, for example:
2020-04-18 18:04:46 -07:00
```decode_rpn "0 fsio_analog_input 20 > 0 10 if"```
Would return "Human form is "if((fsio_analog_input(0) > 20), 0, 10)"
"
and
```decode_rpn "0 fsio_input 20 > 0 10 if"```
2020-04-28 13:58:39 -07:00
It would show a filing to parse message with a list of some known functions.
2020-04-18 18:04:46 -07:00
2019-12-30 07:37:44 -08:00
See [legacy wiki](https://rusefi.com/wiki/index.php?title=Manual:Flexible_Logic)