Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
554B

  1. Pad driver - read input from MD controller
  2. Conveniently expose an API to read the status of a MD pad A.
  3. Moreover, implement a mechanism to input arbitrary characters
  4. from it. It goes as follow:
  5. * Direction pad select characters. Up/Down move by one,
  6. Left/Right move by 5
  7. * Start acts like Return
  8. * A acts like Backspace
  9. * B changes "character class": lowercase, uppercase, numbers,
  10. special chars. The space character is the first among special
  11. chars.
  12. * C confirms letter selection
  13. (cont.)