~ruther/qmk_firmware

ref: c27d96b4c1ed8aa5bf9cad20380b8f723b149a83 qmk_firmware/tmk_core/protocol/ps2_io.h -rw-r--r-- 213 bytes
c27d96b4 — Drashna Jaelre Fix ATSAM's USB HID descriptor to support higher heycodes 7 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef PS2_IO_H
#define PS2_IO_H


void clock_init(void);
void clock_lo(void);
void clock_hi(void);
bool clock_in(void);

void data_init(void);
void data_lo(void);
void data_hi(void);
bool data_in(void);

#endif