(int baud)
| 104 | } |
| 105 | |
| 106 | @Override public boolean setBaudRate(int baud) { |
| 107 | AndroidPort port = this.port; |
| 108 | return port != null && port.setBaudRate(baud); |
| 109 | } |
| 110 | |
| 111 | @Override public int write(byte[] data, int length) { |
| 112 | AndroidPort port = this.port; |
nothing calls this directly
no test coverage detected