r65emu/ps2drv.h

51 lines
954 B
C
Raw Normal View History

2014-11-10 14:16:45 +00:00
#ifndef __PS2DRV_H__
#define __PS2DRV_H__
2014-10-18 11:33:48 +00:00
class PS2Driver
{
2014-11-10 14:16:45 +00:00
public:
PS2Driver() {}
/**
* Starts the keyboard "service" by registering the external interrupt.
* setting the pin modes correctly and driving those needed to high.
* The propably best place to call this method is in the setup routine.
*/
void begin(uint8_t dataPin, uint8_t irq_pin);
2014-10-18 11:33:48 +00:00
2014-11-10 14:16:45 +00:00
/**
* Returns true if there is a char to be read, false if not.
*/
bool available();
/**
* returns true if the key has been released
*/
bool isbreak();
/**
* Returns the scancode last received from the keyboard.
* If there is no char available, -1 is returned.
*/
int read();
2014-12-15 14:36:52 +00:00
unsigned peek();
unsigned read2();
2014-10-18 11:33:48 +00:00
};
2014-11-10 14:16:45 +00:00
#define PS2_F1 0x05
#define PS2_F2 0x06
#define PS2_F3 0x04
#define PS2_F4 0x0C
#define PS2_F5 0x03
#define PS2_F6 0x0B
#define PS2_F7 0x83
#define PS2_F8 0x0A
#define PS2_F9 0x01
#define PS2_F10 0x09
#define PS2_F11 0x78
#define PS2_F12 0x07
2014-10-18 11:33:48 +00:00
#endif