Evan

> Could you provide a list of what order you give GDB/OpenOCD commands and
> which GDB-Remote commands/responses you see?

I have attached two files.  gdb_trace.txt shows two runs through the
same sequence of events:
- attach to the remote target
- reset the target
- set breakpoint
- run to breakpoint
- "info threads"
- single step

The first time through, the thread information looks correct, as far
as I can tell.  However, single stepping causes the error message.  I
immediately reconnect to OpenOCD and perform the exact same steps, and
I don't get an error message.  The output from OpenOCD is also
attached.  Notice on the first connection (line 35) we return QC0 for
current thread, and on the second connection (line 168) we return
QC00000005.  The data in the last response is incorrect, since the
RTOS code hasn't even queried the target at that point.  Still, it
seems to make a difference of some kind...

GDB is version 7.2, modified as you described in your bug report -
this has made no noticeable difference in this case.  OpenOCD is
top-of-trunk, except that I have edited the functions you suggested to
print the GDB messages going in and out.

I hope you can see something I've missed

Alan
alan@shiny:~/eval_board$ ~/software/gdb_build/bin/arm-eabi-gdb 
install/tests/kernel/current/tests/thread2 
GNU gdb (GDB) 7.2
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "--host=x86_64-unknown-linux-gnu --target=arm-eabi".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from 
/home/alan/eval_board/install/tests/kernel/current/tests/thread2...done.
(gdb) target remote silver.config:3333
Remote debugging using silver.config:3333
hal_reset_vsr () at 
/home/alan/ecos-tools/ecos_hg/packages/hal/cortexm/arch/current/src/hal_misc.c:124
124     {
(gdb) mon reset halt
JTAG tap: stm32.cpu tap/device found: 0x3ba00477 (mfg: 0x23b, part: 0xba00, 
ver: 0x3)
JTAG tap: stm32.bs tap/device found: 0x06430041 (mfg: 0x020, part: 0x6430, ver: 
0x0)
target state: halted
target halted due to debug-request, current mode: Thread 
xPSR: 0x01000000 pc: 0x08001764 msp: 0x20010000
(gdb) br thread2.cxx:148
Breakpoint 1 at 0x80001d6: file 
/home/alan/ecos-tools/ecos_hg/packages/kernel/current/tests/thread2.cxx, line 
148.
(gdb) c
Continuing.
Note: automatically using hardware breakpoints for read-only addresses.

Breakpoint 1, entry2 (data=2) at 
/home/alan/ecos-tools/ecos_hg/packages/kernel/current/tests/thread2.cxx:148
148         s0.post();
(gdb) info threads
[New Thread 1]
[New Thread 2]
[New Thread 3]
[New Thread 4]
  5 Thread 4 (No Name :  : Sleeping)  Cyg_Scheduler::unlock_inner (new_lock=1) 
at /home/alan/ecos-tools/ecos_hg/packages/kernel/current/src/sched/sched.cxx:223
  4 Thread 3 (No Name :  : Sleeping)  Cyg_Scheduler::unlock_inner (new_lock=1) 
at /home/alan/ecos-tools/ecos_hg/packages/kernel/current/src/sched/sched.cxx:223
  3 Thread 2 (main :  : Ready)  Cyg_HardwareThread::thread_entry 
(thread=0x20006074) at 
/home/alan/ecos-tools/ecos_hg/packages/kernel/current/src/common/thread.cxx:84
  2 Thread 1 (Idle Thread :  : Ready)  Cyg_HardwareThread::thread_entry 
(thread=0x20003f24) at 
/home/alan/ecos-tools/ecos_hg/packages/kernel/current/src/common/thread.cxx:84
* 1 Thread 5 (No Name :  : Ready)  entry2 (data=2) at 
/home/alan/ecos-tools/ecos_hg/packages/kernel/current/tests/thread2.cxx:148
(gdb) n
thread.c:598: internal-error: is_thread_state: Assertion `tp' failed.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Quit this debugging session? (y or n) y
thread.c:598: internal-error: is_thread_state: Assertion `tp' failed.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Create a core file of GDB? (y or n) n
alan@shiny:~/eval_board$ ~/software/gdb_build/bin/arm-eabi-gdb 
install/tests/kernel/current/tests/thread2 
GNU gdb (GDB) 7.2
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "--host=x86_64-unknown-linux-gnu --target=arm-eabi".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from 
/home/alan/eval_board/install/tests/kernel/current/tests/thread2...done.
(gdb) target remote silver.config:3333
Remote debugging using silver.config:3333
hal_reset_vsr () at 
/home/alan/ecos-tools/ecos_hg/packages/hal/cortexm/arch/current/src/hal_misc.c:124
124     {
(gdb) mon reset halt
JTAG tap: stm32.cpu tap/device found: 0x3ba00477 (mfg: 0x23b, part: 0xba00, 
ver: 0x3)
JTAG tap: stm32.bs tap/device found: 0x06430041 (mfg: 0x020, part: 0x6430, ver: 
0x0)
target state: halted
target halted due to debug-request, current mode: Thread 
xPSR: 0x01000000 pc: 0x08001764 msp: 0x20010000
(gdb) br thread2.cxx:148
Breakpoint 1 at 0x80001d6: file 
/home/alan/ecos-tools/ecos_hg/packages/kernel/current/tests/thread2.cxx, line 
148.
(gdb) c
Continuing.
Note: automatically using hardware breakpoints for read-only addresses.

Breakpoint 1, entry2 (data=2) at 
/home/alan/ecos-tools/ecos_hg/packages/kernel/current/tests/thread2.cxx:148
148         s0.post();
(gdb) info threads
[New Thread 1]
[New Thread 2]
[New Thread 3]
[New Thread 4]
  5 Thread 4 (No Name :  : Sleeping)  Cyg_Scheduler::unlock_inner (new_lock=1) 
at /home/alan/ecos-tools/ecos_hg/packages/kernel/current/src/sched/sched.cxx:223
  4 Thread 3 (No Name :  : Sleeping)  Cyg_Scheduler::unlock_inner (new_lock=1) 
at /home/alan/ecos-tools/ecos_hg/packages/kernel/current/src/sched/sched.cxx:223
  3 Thread 2 (main :  : Ready)  Cyg_HardwareThread::thread_entry 
(thread=0x20006074) at 
/home/alan/ecos-tools/ecos_hg/packages/kernel/current/src/common/thread.cxx:84
  2 Thread 1 (Idle Thread :  : Ready)  Cyg_HardwareThread::thread_entry 
(thread=0x20003f24) at 
/home/alan/ecos-tools/ecos_hg/packages/kernel/current/src/common/thread.cxx:84
* 1 Thread 5 (No Name :  : Ready)  entry2 (data=2) at 
/home/alan/ecos-tools/ecos_hg/packages/kernel/current/tests/thread2.cxx:148
(gdb) n
149         CHECK(  7 == q++ );
(gdb) n
150         s2.wait();
(gdb) q
A debugging session is active.

        Inferior 1 [Remote target] will be detached.

Quit anyway? (y or n) y
Ending remote debugging.
alan@shiny:~/eval_board$ 
Open On-Chip Debugger 0.5.0-dev-00873-g289cece-dirty (2011-05-10-19:49)
Licensed under GNU GPL v2
For bug reports, read
        http://openocd.berlios.de/doc/doxygen/bugs.html
Info : only one transport option; autoselect 'jtag'
1000 kHz
adapter_nsrst_delay: 100
jtag_ntrst_delay: 100
cortex_m3 reset_config sysresetreq
Info : max TCK change to: 30000 kHz
Info : clock speed 1000 kHz
Info : JTAG tap: stm32.cpu tap/device found: 0x3ba00477 (mfg: 0x23b, part: 
0xba00, ver: 0x3)
Info : JTAG tap: stm32.bs tap/device found: 0x06430041 (mfg: 0x020, part: 
0x6430, ver: 0x0)
Info : stm32.cpu: hardware has 6 breakpoints, 4 watchpoints
Info : accepting 'gdb' connection from 3333
Info : JTAG tap: stm32.cpu tap/device found: 0x3ba00477 (mfg: 0x23b, part: 
0xba00, ver: 0x3)
Info : JTAG tap: stm32.bs tap/device found: 0x06430041 (mfg: 0x020, part: 
0x6430, ver: 0x0)
target state: halted
target halted due to debug-request, current mode: Thread 
xPSR: 0x01000000 pc: 0x08001764 msp: 0x20010000
Info : device id = 0x10006430
Info : flash size = 512kbytes
received packet: 'qSupported:qRelocInsn+'
put: 
PacketSize=3fff;qXfer:memory-map:read+;qXfer:features:read-;QStartNoAckMode+
received packet: 'QStartNoAckMode'
put: OK
Warn : acknowledgment received, but no packet pending
received packet: 'Hg0'
put: OK
received packet: '?'
put: S02
received packet: 'Hc-1'
put: OK
received packet: 'qC'
put: QC00000000
received packet: 'qAttached'
put: 1
received packet: 'qOffsets'
put: Text=0;Data=0;Bss=0
received packet: 'g'
put: 
000000000100000008000000ec050020000000000000000000000000b0350020000000000000000000000000dc3500200000000000000120ffffffff651700080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000001
received packet: 'qXfer:memory-map:read::0,fff'
put: l<memory-map>
<memory type="ram" start="0x0" length="0x8000000"/>
<memory type="flash" start="0x8000000" length="0x80000">
<property name="blocksize">0x800</property>
</memory>
<memory type="ram" start="0x8080000" length="0xf7f80000"/>
</memory-map>
00
received packet: 'm8001764,4'
put: 80b58ab0
received packet: 'qSymbol::'
put: qSymbol:4379675f5468726561643a3a7468726561645f6c697374
received packet: 
'qSymbol:20003674:4379675f5468726561643a3a7468726561645f6c697374'
put: 
qSymbol:4379675f5363686564756c65725f426173653a3a63757272656e745f746872656164
received packet: 
'qSymbol:20003f40:4379675f5363686564756c65725f426173653a3a63757272656e745f746872656164'
put: OK
received packet: 'qTStatus'
put: 
received packet: 'qRcmd,72657365742068616c74'
put: O
Info : JTAG tap: stm32.cpu tap/device found: 0x3ba00477 (mfg: 0x23b, part: 
0xba00, ver: 0x3)
put: 
O4a544147207461703a2073746d33322e637075207461702f64657669636520666f756e643a203078336261303034373720286d66673a2030783233622c20706172743a203078626130302c207665723a20307833290a
Info : JTAG tap: stm32.bs tap/device found: 0x06430041 (mfg: 0x020, part: 
0x6430, ver: 0x0)
put: 
O4a544147207461703a2073746d33322e6273207461702f64657669636520666f756e643a203078303634333030343120286d66673a2030783032302c20706172743a203078363433302c207665723a20307830290a
target state: halted
put: O7461726765742073746174653a2068616c7465640a
target halted due to debug-request, current mode: Thread 
xPSR: 0x01000000 pc: 0x08001764 msp: 0x20010000
put: 
O7461726765742068616c7465642064756520746f2064656275672d726571756573742c2063757272656e74206d6f64653a20546872656164200a785053523a20307830313030303030302070633a2030783038303031373634206d73703a20307832303031303030300a
put: OK
received packet: 'm80001d6,2'
put: 7248�
received packet: 'Z1,80001d6,2'
put: OK
received packet: 'vCont?'
put: 
received packet: 'Hc0'
put: OK
received packet: 'c'
put: T05
received packet: 'g'
put: 
020000000100000003000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b0350020154c0008d70100080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000021
received packet: 'z1,80001d6,2'
put: OK
received packet: 'm80001d6,4'
put: 724805f0
received packet: 'm20003580,40'
put: 
000000000000000000000000000000004807002098350020a0350020c140000800000000a8350020b0350020c35c00084807002002000000c0350020154c0008
received packet: 'qfThreadInfo'
put: 
m0000000000000005,0000000000000001,0000000000000002,0000000000000003,0000000000000004
received packet: 'qsThreadInfo'
put: l
received packet: 'qThreadExtraInfo,4'
put: 4e6f204e616d65203a20203a20536c656570696e67
received packet: 'Hg4'
put: OK
received packet: 'g'
put: 
54070020ac06002054070020ac060020000000000000000000000000202600200000000000000000000000008c260020000000002026002000000000375c00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
received packet: 'm8005c36,4'
put: 144a3b69
received packet: 'm20002600,40'
put: 
00000000202600200000000000000000000000008c26002000000000375c0008d4050020000000000100000001000000a0060020480700204026002079440008c000)
received packet: 'qThreadExtraInfo,3'
put: 4e6f204e616d65203a20203a20536c656570696e67
received packet: 'Hg3'
put: OK
received packet: 'g'
put: 
ac06002004060020ac06002004060020000000000000000000000000d01600200000000000000000000000003c17002000000000d016002000000000375c00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
received packet: 'm8005c36,4'
put: 144a3b69
received packet: 'm200016c0,40'
put: 
000000003c17002000000000375c0008cc050020000000000100000001000000f8050020a0060020f016002079440008f8160020835e000800170020c8050020c000)
received packet: 'qThreadExtraInfo,2'
put: 6d61696e203a20203a205265616479
received packet: 'Hg2'
put: OK
received packet: 'g'
put: 
d03f00200000111100000000000000000000000000000000000000000000000000000000000000000000000074600020000000007060002000000000f94b00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
received packet: 'm8004bf8,4'
put: 80b582b0
received packet: 'm20006040,40'
put: 
0000000000000000000000000000000000000000000000000000000000000000000000007460002000000000f94b000800000000f94b00080100000080600020c000)
received packet: 'qThreadExtraInfo,1'
put: 49646c6520546872656164203a20203a205265616479
received packet: 'Hg1'
put: OK
received packet: 'g'
put: 
8036002000001111000000000000000000000000000000000000000000000000000000000000000000000000243f002000000000203f002000000000f94b00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
received packet: 'm8004bf8,4'
put: 80b582b0
received packet: 'm20003f00,40'
put: 
0000000000000000000000000000000000000000243f002000000000f94b000800000000f94b0008214c00080000000000000000000000000000000005000000c000)
received packet: 'qThreadExtraInfo,5'
put: 4e6f204e616d65203a20203a205265616479
received packet: 'Hg5'
put: OK
received packet: 'g'
put: 
020000000100000003000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b0350020154c0008d70100080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000021
received packet: 'm80001d6,4'
put: 724805f0
received packet: 'm20003580,40'
put: 
000000000000000000000000000000004807002098350020a0350020c140000800000000a8350020b0350020c35c00084807002002000000c0350020154c0008c000)
received packet: 'Hg0'
put: OK
received packet: 'g'
put: 
020000000100000003000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b0350020154c0008d70100080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000021
Info : dropped 'gdb' connection
Info : accepting 'gdb' connection from 3333
Info : JTAG tap: stm32.cpu tap/device found: 0x3ba00477 (mfg: 0x23b, part: 
0xba00, ver: 0x3)
Info : JTAG tap: stm32.bs tap/device found: 0x06430041 (mfg: 0x020, part: 
0x6430, ver: 0x0)
target state: halted
target halted due to debug-request, current mode: Thread 
xPSR: 0x01000000 pc: 0x08001764 msp: 0x20010000
received packet: 'qSupported:qRelocInsn+'
put: 
PacketSize=3fff;qXfer:memory-map:read+;qXfer:features:read-;QStartNoAckMode+
received packet: 'QStartNoAckMode'
put: OK
Warn : acknowledgment received, but no packet pending
received packet: 'Hg0'
put: OK
received packet: '?'
put: S02
received packet: 'Hc-1'
put: OK
received packet: 'qC'
put: QC00000005
received packet: 'qAttached'
put: 1
received packet: 'qOffsets'
put: Text=0;Data=0;Bss=0
received packet: 'g'
put: 
020000000100000003000000ec050020000000000000000000000000b0350020000000000000000000000000dc3500200000000000000120ffffffff6517000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000010000
received packet: 'qXfer:memory-map:read::0,fff'
put: l<memory-map>
<memory type="ram" start="0x0" length="0x8000000"/>
<memory type="flash" start="0x8000000" length="0x80000">
<property name="blocksize">0x800</property>
</memory>
<memory type="ram" start="0x8080000" length="0xf7f80000"/>
</memory-map>

received packet: 'm8001764,4'
put: 80b58ab0
received packet: 'qSymbol::'
put: qSymbol:4379675f5468726561643a3a7468726561645f6c697374
received packet: 
'qSymbol:20003674:4379675f5468726561643a3a7468726561645f6c697374'
put: 
qSymbol:4379675f5363686564756c65725f426173653a3a63757272656e745f746872656164
received packet: 
'qSymbol:20003f40:4379675f5363686564756c65725f426173653a3a63757272656e745f746872656164'
put: OK
received packet: 'qTStatus'
put: 
received packet: 'qRcmd,72657365742068616c74'
put: O
Info : JTAG tap: stm32.cpu tap/device found: 0x3ba00477 (mfg: 0x23b, part: 
0xba00, ver: 0x3)
put: 
O4a544147207461703a2073746d33322e637075207461702f64657669636520666f756e643a203078336261303034373720286d66673a2030783233622c20706172743a203078626130302c207665723a20307833290a
Info : JTAG tap: stm32.bs tap/device found: 0x06430041 (mfg: 0x020, part: 
0x6430, ver: 0x0)
put: 
O4a544147207461703a2073746d33322e6273207461702f64657669636520666f756e643a203078303634333030343120286d66673a2030783032302c20706172743a203078363433302c207665723a20307830290a
target state: halted
put: O7461726765742073746174653a2068616c7465640a
target halted due to debug-request, current mode: Thread 
xPSR: 0x01000000 pc: 0x08001764 msp: 0x20010000
put: 
O7461726765742068616c7465642064756520746f2064656275672d726571756573742c2063757272656e74206d6f64653a20546872656164200a785053523a20307830313030303030302070633a2030783038303031373634206d73703a20307832303031303030300a
put: OK
received packet: 'm80001d6,2'
put: 7248�
received packet: 'Z1,80001d6,2'
put: OK
received packet: 'vCont?'
put: 
received packet: 'Hc0'
put: OK
received packet: 'c'
put: T05
received packet: 'g'
put: 
020000000100000003000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b0350020154c0008d70100080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000021
received packet: 'z1,80001d6,2'
put: OK
received packet: 'm80001d6,4'
put: 724805f0
received packet: 'm20003580,40'
put: 
000000000000000000000000000000004807002098350020a0350020c140000800000000a8350020b0350020c35c00084807002002000000c0350020154c0008t-end
received packet: 'T5'
put: OK
received packet: 'qfThreadInfo'
put: 
m0000000000000005,0000000000000001,0000000000000002,0000000000000003,0000000000000004
received packet: 'qsThreadInfo'
put: l
received packet: 'qThreadExtraInfo,4'
put: 4e6f204e616d65203a20203a20536c656570696e67
received packet: 'Hg4'
put: OK
received packet: 'g'
put: 
54070020ac06002054070020ac060020000000000000000000000000202600200000000000000000000000008c260020000000002026002000000000375c00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
received packet: 'm8005c36,4'
put: 144a3b69
received packet: 'm20002600,40'
put: 
00000000202600200000000000000000000000008c26002000000000375c0008d4050020000000000100000001000000a0060020480700204026002079440008t-end
received packet: 'qThreadExtraInfo,3'
put: 4e6f204e616d65203a20203a20536c656570696e67
received packet: 'Hg3'
put: OK
received packet: 'g'
put: 
ac06002004060020ac06002004060020000000000000000000000000d01600200000000000000000000000003c17002000000000d016002000000000375c00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
received packet: 'm8005c36,4'
put: 144a3b69
received packet: 'm200016c0,40'
put: 
000000003c17002000000000375c0008cc050020000000000100000001000000f8050020a0060020f016002079440008f8160020835e000800170020c8050020t-end
received packet: 'qThreadExtraInfo,2'
put: 6d61696e203a20203a205265616479
received packet: 'Hg2'
put: OK
received packet: 'g'
put: 
d03f00200000111100000000000000000000000000000000000000000000000000000000000000000000000074600020000000007060002000000000f94b00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
received packet: 'm8004bf8,4'
put: 80b582b0
received packet: 'm20006040,40'
put: 
0000000000000000000000000000000000000000000000000000000000000000000000007460002000000000f94b000800000000f94b00080100000080600020t-end
received packet: 'qThreadExtraInfo,1'
put: 49646c6520546872656164203a20203a205265616479
received packet: 'Hg1'
put: OK
received packet: 'g'
put: 
8036002000001111000000000000000000000000000000000000000000000000000000000000000000000000243f002000000000203f002000000000f94b00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
received packet: 'm8004bf8,4'
put: 80b582b0
received packet: 'm20003f00,40'
put: 
0000000000000000000000000000000000000000243f002000000000f94b000800000000f94b0008214c000800000000000000000000000000000000050000000000�
received packet: 'qThreadExtraInfo,5'
put: 4e6f204e616d65203a20203a205265616479
received packet: 'Hg5'
put: OK
received packet: 'g'
put: 
020000000100000003000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b0350020154c0008d70100080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000021
received packet: 'm80001d6,4'
put: 724805f0
received packet: 'm20003580,40'
put: 
000000000000000000000000000000004807002098350020a0350020c140000800000000a8350020b0350020c35c00084807002002000000c0350020154c00080000�
received packet: 'Hc5'
put: OK
received packet: 's'
put: T05
received packet: 'g'
put: 
c80500200100000003000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b0350020154c0008d90100080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000021
received packet: 'Hg4'
put: OK
received packet: 'g'
put: 
54070020ac06002054070020ac060020000000000000000000000000202600200000000000000000000000008c260020000000002026002000000000375c00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
received packet: 'Z1,80001d6,2'
put: OK
received packet: 'Hg5'
put: OK
received packet: 'g'
put: 
c80500200100000003000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b0350020154c0008d901000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000210000!
received packet: 'Hc0'
put: OK
received packet: 's'
put: T05
received packet: 'g'
put: 
c80500200100000003000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b0350020dd010008e95d000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000210000!
received packet: 'm8005de8,4'
put: 80b584b0
received packet: 'm80001dc,4'
put: 6d4b1a68
received packet: 'Z1,80001dc,2'
put: OK
received packet: 'c'
put: T05
received packet: 'g'
put: 
00000000540700200000000000000000000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008dd01000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000610000!
received packet: 'm80001dc,4'
put: 6d4b1a68
received packet: 'z1,80001dc,2'
put: OK
received packet: 'z1,80001d6,2'
put: OK
received packet: 'Hg4'
put: OK
received packet: 'g'
put: 
54070020ac06002054070020ac060020000000000000000000000000182600200000000000000000000000008c260020000000001826002000000000375c00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
received packet: 'Z1,80001d6,2'
put: OK
received packet: 'Hg5'
put: OK
received packet: 'g'
put: 
00000000540700200000000000000000000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008dd01000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000610000!
received packet: 'm80001dc,4'
put: 6d4b1a68
received packet: 's'
put: T05
received packet: 'g'
put: 
000000005407002000000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008df01000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000610000!
received packet: 's'
put: T05
received packet: 'g'
put: 
000000005407002007000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008e101000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000610000!
received packet: 's'
put: T05
received packet: 'g'
put: 
000000005407002007000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008e301000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000610000!
received packet: 's'
put: T05
received packet: 'g'
put: 
000000005407002007000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008e501000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000201400610000!
received packet: 's'
put: T05
received packet: 'g'
put: 
000000005407002007000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008e701000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200800610000!
received packet: 's'
put: T05
received packet: 'g'
put: 
00000000540700200700000001000000000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008e901000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000610000!
received packet: 's'
put: T05
received packet: 'g'
put: 
00000000010000000700000001000000000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008eb01000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000610000!
received packet: 's'
put: T05
received packet: 'g'
put: 
00000000010000000800000001000000000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008ef01000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000610000!
received packet: 's'
put: T05
received packet: 'g'
put: 
000000000100000008000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008f101000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000610000!
received packet: 's'
put: T05
received packet: 'g'
put: 
000000000100000008000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008f301000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000610000!
received packet: 's'
put: T05
received packet: 'g'
put: 
000000000100000008000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c0008f501000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000210000!
received packet: 's'
put: T05
received packet: 'g'
put: 
000000000100000008000000ec050020000000000000000000000000b0350020000000000000000000000000dc35002000000000b03500205b5c00080b02000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000210000!
received packet: 'm800020a,4'
put: 674805f0
received packet: 'z1,80001d6,2'
put: OK
received packet: 'qTStatus'
put: 
received packet: 'Hg4'
put: OK
received packet: 'g'
put: 
54070020ac06002054070020ac060020000000000000000000000000182600200000000000000000000000008c260020000000001826002000000000375c00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
received packet: 'D'
put: OK
Info : dropped 'gdb' connection
_______________________________________________
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to