You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • If you're seeing >Puck.IR(mode) presumably it's because you were trying to output the IR data?

    Is the issue that you are trying to record IR data at the same time as sending it, so you're basically recording what you're sending?

    I wouldn't worry too much about FIFO_FULL though - it's letting you know that some data it was receiving got lost because too much came in too fast. Realistically that's probably not a problem though - worst case the signal doesn't work and you have to re-record it.

    On new firmwares you could also try JIT which should improve capture speed:

    setWatch(function(e) { "jit"
      d.push(1000*(e.time-e.lastTime));
    }, D1, {edge:"both",repeat:true});
    
About

Avatar for Gordon @Gordon started