| 115 | |
| 116 | #if defined(ARDUINO) |
| 117 | int _write(int file, char *ptr, int len) { |
| 118 | int wrote = Serial.write(ptr, len); |
| 119 | Serial.flush(); |
| 120 | return wrote; |
| 121 | } |
| 122 | #else |
| 123 | int getch( ) { |
| 124 | termios oldt; |
nothing calls this directly
no outgoing calls
no test coverage detected