Keyboard firmwares for Atmel AVR and Cortex-M
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ps2_io.h 213B

123456789101112131415
  1. #ifndef PS2_IO_H
  2. #define PS2_IO_H
  3. void clock_init(void);
  4. void clock_lo(void);
  5. void clock_hi(void);
  6. bool clock_in(void);
  7. void data_init(void);
  8. void data_lo(void);
  9. void data_hi(void);
  10. bool data_in(void);
  11. #endif