Dhananjay Balan 61154bf302 Add watchdog seconds command
- prints the watchdog chain managed at second boundaries.
2014-08-25 09:52:41 +10:00

22 lines
355 B
Python

#
# RTEMS GDB Extensions
#
# main
import gdb
import pretty
import rtems
gdb.pretty_printers = []
gdb.pretty_printers.append(pretty.lookup_function)
# Register commands
# rtems and subcommands
rtems.rtems()
rtems.rtems_object()
rtems.rtems_semaphore()
rtems.rtems_task()
rtems.rtems_message_queue()
rtems.rtems_tod()
rtems.rtems_wdt()
rtems.rtems_wsec()