minmax

About

Username
minmax
Joined
Visits
90
Last Active
Roles
Member

Comments

  • If you can't reproduce it then it's not an issue.
  • Hi, I included the emit constant example just as a trivial case for the proposed transformer. If you implement the Sequencer DP for arbitrary sequences, it will cover this functionality, so no need to duplicate it in Maths, unless it supports modif…
  • Yes, it doesn't look like it's caused simply by doing  .process (new Sample).log(..) Here are the things I've tried http://pastebin.com/Ct4KrJHM in case it can be reproduced. Might as well be specific to my app/board 
  • Thanks for the hint about Sample. From the docs it looks like it just downsamples the signal. So,  Sample(1) does exactly what I wanted for buffer. On a side note, hooking Sample directly to a log    .process( new Sample((byte) 1)).log("LOG")  raise…
  • So, in this toy example the monitor gets triggered first and the "V" log will contain a stream of 0s, If S is the data produced by the counter - V = S(t) - S(t) But if I chain a dummy processor just before the monitor, it now creates a feedback loo…
  • Yes, I meant execution on the board, not in the Java code that creates the route. For example, does the Subtract op complete before the monitor body in the 2nd branch, or vice versa? .process(new Counter()).split() .branch() .process("X"…
  • I posted the question because of monitoring, but didn't make it clear. The scenario is: a monitor in the second branch after a split modifies a processor token in the first branch. What will be the execution order? branch1 -> monitor commands    …
  • Thank you for that