Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2013-11-05 00:34:32 +0000
committerEugene Tarassov2013-11-05 00:34:32 +0000
commit163796b86d43ea0a57f994905dd7201262a19823 (patch)
treee3ad41068510a859eed9e40bd638d9b984c5f4ed
parentb1941238b22ed45196d879f4a38671f5fdffdb2f (diff)
downloadorg.eclipse.tcf-163796b86d43ea0a57f994905dd7201262a19823.tar.gz
org.eclipse.tcf-163796b86d43ea0a57f994905dd7201262a19823.tar.xz
org.eclipse.tcf-163796b86d43ea0a57f994905dd7201262a19823.zip
TCF Debugger: fixed sending data from host to virtual UART
-rw-r--r--plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFLaunch.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFLaunch.java b/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFLaunch.java
index dda685d62..1eeb8b1e1 100644
--- a/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFLaunch.java
+++ b/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFLaunch.java
@@ -1332,7 +1332,7 @@ public class TCFLaunch extends Launch {
@Override
public void doneConnect(IToken token, Exception error) {
if (uart_tx_stream_ids.get(tx_id) != null) return;
- uart_rx_stream_ids.put(tx_id, ctx_id);
+ uart_tx_stream_ids.put(tx_id, ctx_id);
if (error == null) {
readStream(ctx_id, tx_id, 0);
return;

Back to the top