That's it!
Of course there are a few caveats which are also called out in Till's documents so you should peruse them. The one most likely to fool you is that after you set breakpoints, they don't become effective until you "CONTINUE".
You may also want to turn off optimization in the Makefile that compiles the modules you're debugging by setting USR_CFLAGS += O0 (that's Oh zero).
Beats the heck out of printf statements! Most of the time.
SETTING A BREAK POINT from rdb:
break <filename>:<line#>
Example:
drvCV.c:449