Subversion Repositories pentevo

Rev

Rev 71 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #ifndef PS2_H
  2. #define PS2_H
  3.  
  4. #include "mytypes.h"
  5.  
  6. extern volatile UWORD ps2_shifter;
  7. extern volatile UBYTE ps2_count;
  8. extern volatile UBYTE ps2_timeout;
  9.  
  10.  
  11. #define PS2_TIMEOUT 20;
  12.  
  13.  
  14. void ps2_task(void); // main entry function
  15. UBYTE ps2_decode(void);
  16. void ps2_parse(UBYTE);
  17.  
  18.  
  19.  
  20. #endif
  21.  
  22.