| 347 | } |
| 348 | |
| 349 | bool PS2Keyboard::available() { |
| 350 | if (CharBuffer || UTF8next) return true; |
| 351 | CharBuffer = get_iso8859_code(); |
| 352 | if (CharBuffer) return true; |
| 353 | return false; |
| 354 | } |
| 355 | |
| 356 | int PS2Keyboard::read() { |
| 357 | uint8_t result; |
nothing calls this directly
no test coverage detected