Daniel Prilik
Daniel Prilik
The RTC device is described under section 20 in the ep93xx user guide. A simple implementation might be to synchronize the RTCData register to the host machine's clock. A fancier...
Timer 4 is the 40 bit debug timer (as described under section 18.1.3). It's similar to Timers 1-3, albeit without as much "customization" options. It should be fairly easy to...
As `gdbstub` lights up more and more of the GDB protocol, it's becoming increasingly clear that many newer GDB RSP packets boil down to the equivalent of "send back a...
While most users of `gdbstub` are likely debugging over transport mechanisms that are inherently reliable (i.e: pipes, TCP, emulated serial, etc...), it would be good to nice if `gdbstub` also...
`gdbstub` already implements protocol-level multiprocess extensions "under-the-hood", and simply hard-codes a fake PID in single/multi-threaded mode (much the same way it hard-codes a fake TID in single-threaded mode). Adding true...
Right now, `gdbstub` hard-codes the initial stop reason response to `T05thread:;` (in response to the `?` packet). This can be annoying in `gdbstub` integrations where the GDB server is only...