Commands
Use the shortest command path that matches the documented firmware workflow. When a mode needs setup, follow the prompts shown on first entry.
Result
What it means
The command path is working when the target responds and the firmware prints the expected menu, status or captured data.
Troubleshooting
- Re-enter the mode setup when pins or peripherals are not already initialized.
- Check common ground and target voltage before blaming software.
- Prefer Serial CLI for long captures or high-volume output.
- Repeat the read or capture to confirm stability.
I2C monitor FAQ
When should I use monitor instead of a single I2C read?
Use monitor when a register changes over time and a single read misses the transition. It is useful for sensors, status flags and state machines where the interesting value appears after an event.
Why does monitor show too much changing data?
The interval may be too fast, the register window may be too broad, or the device may expose counters and live sensor values. Narrow the address/register range before interpreting the output.
Can monitoring change the state of an I2C device?
Usually reads are low risk, but some status registers clear on read or trigger side effects. Check the datasheet before monitoring interrupt, FIFO or event registers for a long session.