Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyocd/utility/rtt_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def get_down_data(self):
LOG.debug("Received non-hello message from SystemView client before hello message; ignoring")
return b''

return data
return data[1:data[0] + 1]

class RTTChanStdioWorker(RTTChanWorker):
"""@brief Implementation of channel worker that forwards RTT data via a STDIO"""
Expand Down
Loading