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() {
127127}
128128int PTYSerial::write (const void *buffer) {
129129 const char *buf_ptr = static_cast <const char *>(buffer);
130- tr_info (" %s" , buffer);
131130 return write (buf_ptr, sizeof (buffer));
132131}
133132
134133int PTYSerial::write (const void *buffer, size_t length) {
135134 const char *buf_ptr = static_cast <const char *>(buffer);
136- tr_info (" %s" , buffer);
137135 int ret = _parent->populate_tx_buffer (buf_ptr, length, this ->get_port ());
138136 return ret;
139137}
140138
141139int PTYSerial::write (const void *buffer, size_t length, int id) {
142140 const char *buf_ptr = static_cast <const char *>(buffer);
143- tr_info (" %s" , buffer);
144141 int ret = _parent->populate_tx_buffer (buf_ptr, length, id);
145142 return ret;
146143}
You can’t perform that action at this time.
0 commit comments