File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -127,20 +127,17 @@ int PTYSerial::get_port() {
127
127
}
128
128
int PTYSerial::write (const void *buffer) {
129
129
const char *buf_ptr = static_cast <const char *>(buffer);
130
- tr_info (" %s" , buffer);
131
130
return write (buf_ptr, sizeof (buffer));
132
131
}
133
132
134
133
int PTYSerial::write (const void *buffer, size_t length) {
135
134
const char *buf_ptr = static_cast <const char *>(buffer);
136
- tr_info (" %s" , buffer);
137
135
int ret = _parent->populate_tx_buffer (buf_ptr, length, this ->get_port ());
138
136
return ret;
139
137
}
140
138
141
139
int PTYSerial::write (const void *buffer, size_t length, int id) {
142
140
const char *buf_ptr = static_cast <const char *>(buffer);
143
- tr_info (" %s" , buffer);
144
141
int ret = _parent->populate_tx_buffer (buf_ptr, length, id);
145
142
return ret;
146
143
}
You can’t perform that action at this time.
0 commit comments