Keyboard firmwares for Atmel AVR and Cortex-M
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.

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