tomixnscale89
tomixnscale89
Yeah, the higher number functions are working in JMRI itself. I'll create an issue on the Engine Driver repo. What are your thoughts on changing how the extended startup/shutdown commands...
> I think I can modify the code so you can specify two commands to send, e.g.: > > > > ``` > > 0xF801FBF801FC, // Fn28 Start Up Sequence...
The third command (word) would be a checksum, so what you have (layering two commands into a Java long word) should work fine.
Bob, Sorry for the delay. Just gave it a try and it works great. Thank you again.
I was working on implementing the multi-word commands with the checksum, but keep running into issues with the serial traffic controller. It seems that if the opcode is "FB", the...
Bob, Sorry for my extremely late reply on this, I got caught up with other things. Could you please elaborate more, I don't quite understand why my code wouldn't be...
Is my setup different than how you integrated the sequential commands from your branch? I tried to match my approach to yours: `0xF801FBF801FCL, // Fn28 Start Up Sequence 1 (Delayed...
Including the Op Code, it should be three bytes. For the Multi-Word command, it uses the same logic as sending two commands sequentially like you implemented a few weeks ago....
Bob, My code implementation should include what we need, but it seems to have some type of issue with the serial traffic controller, which I'm not familiar with. Perhaps I...
Hey Daniel, My apologies, got quite busy past few months and didn't get around to this. I'll see about making some time at the end of the week and get...