Is there a way that I can capture the motion state of an axis? (E.g. in the scope)
I’m curious about when/why an axis transitions between states during some behavior, and it might help if I could know when and to what state the transitions are happening.
I looked for some interrupt events for this, but didn’t see anything I recognized as such.
Is there any way for me to track motion state (not including calling RapidCodeMotion::StateGet())?
If you look within MotionScope, you will see a collection of Status options. These are specific bits of RSIAxisAddressTypeSTATUS. You add them and hit edit to see the specific masking that are used.
I believe you know how to add custom traces in MotionScope. Looking at those existing status options will help you create your own specific status bits. You can skip masking to get all of status together to decode later. You can use Axis::AddressGet() for each type.