| 292 | |
| 293 | #if defined(ARDUINO) |
| 294 | int _write(int file, char *ptr, int len) { |
| 295 | int wrote = Serial.write(ptr, len); |
| 296 | Serial.flush(); |
| 297 | return wrote; |
| 298 | } |
| 299 | #else |
| 300 | int getch( ) { |
| 301 | termios oldt; |
nothing calls this directly
no outgoing calls
no test coverage detected