aboutsummaryrefslogtreecommitdiffstats
path: root/src/debugcmds.c
Commit message (Collapse)AuthorAgeFilesLines
* debugcmds: Remove start/end_group commandsKevin O'Connor2021-05-071-38/+2
| | | | | | | | These commands were never used by the main code and are not particularly helpful for debugging. Remove them to reduce code size - in particular on the pru architecture. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* command: Add command_decode_ptr() helperKevin O'Connor2020-10-301-3/+3
| | | | | | | | Add a helper function to convert from a string buffer passed in the args[] parameter to an actual pointer. This avoids all the callers needing to perfrom pointer manipulation. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* debugcmds: Add support for reading/writing 32bit valuesKevin O'Connor2019-02-071-29/+25
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* debugcmds: Move debugging commands from basecmd.c to new fileKevin O'Connor2017-05-151-0/+99
Move the implementation of debug commands to their own file. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>