Is there a utility (for either or both QNX & Windows hosts)
to download files using the pdebug serial on the target?
gdb has something built in (using the upload command),
but somethings outside of gdb would be useful.
Thanks
Is there a utility (for either or both QNX & Windows hosts)
to download files using the pdebug serial on the target?
gdb has something built in (using the upload command),
but somethings outside of gdb would be useful.
Thanks
Alex Cellarius <acellarius@systems104.co.za> wrote:
Is there a utility (for either or both QNX & Windows hosts)
to download files using the pdebug serial on the target?
gdb has something built in (using the upload command),
but somethings outside of gdb would be useful.
I don’t know of anything outside gdb…but the source to
gdb is available from cvs.qnx.com, and in the file remote-qnx.c
is a function called qnx_upload.c.
Maybe you could extract just the bits you need, and right your
own utility to do it?
http://cvs.qnx.com/cgi-bin/cvsweb.cgi/gdb/gdb/
http://cvs.qnx.com/cgi-bin/cvsweb.cgi/gdb/gdb/remote-qnx.c
(You might need some of the ‘establish contact stuff’ first before
you do the upload as well.)
QNX Training Services
http://www.qnx.com/support/training/
Please followup in this newsgroup if you have further questions.
On 4 Feb 2003 01:10:09 GMT, David Gibbs <dagibbs@qnx.com> wrote:
Alex Cellarius <> acellarius@systems104.co.za> > wrote:
Is there a utility (for either or both QNX & Windows hosts)
to download files using the pdebug serial on the target?
gdb has something built in (using the upload command),
but somethings outside of gdb would be useful.I don’t know of anything outside gdb…but the source to
gdb is available from cvs.qnx.com, and in the file remote-qnx.c
is a function called qnx_upload.c.Maybe you could extract just the bits you need, and right your
own utility to do it?http://cvs.qnx.com/cgi-bin/cvsweb.cgi/gdb/gdb/
http://cvs.qnx.com/cgi-bin/cvsweb.cgi/gdb/gdb/remote-qnx.c(You might need some of the ‘establish contact stuff’ first before
you do the upload as well.)
Thanks David, I will have a look