| 578 | } |
| 579 | |
| 580 | static void fillBuffer(char* buff, const char fill) { |
| 581 | uint8_t i = 0; |
| 582 | while (true) { |
| 583 | if (buff[i] == 0) break; |
| 584 | buff[i] = fill; |
| 585 | i++; |
| 586 | } |
| 587 | } |
| 588 | |
| 589 | void XInputController::printDebug(Print &output) const { |
| 590 | const char fillCharacter = '_'; |