1
0
Fork 0

Merge branch 'master' of github.com:jackhumbert/qmk_firmware into wu5y7

This commit is contained in:
Jack Humbert 2016-11-28 23:51:07 -05:00
commit 6e0f994950
22 changed files with 1415 additions and 56 deletions

View file

@ -26,6 +26,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "print.h"
#include "debug.h"
#ifndef PS2_INIT_DELAY
#define PS2_INIT_DELAY 1000
#endif
static report_mouse_t mouse_report = {};
@ -39,7 +42,7 @@ uint8_t ps2_mouse_init(void) {
ps2_host_init();
_delay_ms(1000); // wait for powering up
_delay_ms(PS2_INIT_DELAY); // wait for powering up
// send Reset
rcv = ps2_host_send(0xFF);