I have a suggestion for avros...
Consider implementing the C construct:
logical expression ? true expression : false expression
The following would be an example:
r2 > 200 ? w3,0 : w3,1
That is, read pin 2 (r2), compare it to 200 (> 200) and if true, set pin
3 to LOW (w3,0) or if false, set pin 3 to HIGH (w3,1).
This command could be sent to avros and eliminate the communications
latency. Further, groups of these types of command could be stored in
EPROM, and invoked with a monitor command for execution.
(from Ken K.)
Original issue reported on code.google.com by
hyper...@gmail.comon 22 Mar 2012 at 11:03