summaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-11-29 05:51:07 +0100
committerJack Humbert <jack.humb@gmail.com>2016-11-29 05:51:07 +0100
commit6e0f994950435aa5867e7b7ce780186d881d74ac (patch)
tree4a43aec89032a5bace8be91c3230b6d2fcedcb5f /tmk_core/protocol
parent7edac212c8ed8442bf4207e70dc8194631b2bf27 (diff)
parent1585fc4b616cb28b8d4a418cd31c8ce0dd64f731 (diff)
downloadqmk_firmware-6e0f994950435aa5867e7b7ce780186d881d74ac.tar.gz
qmk_firmware-6e0f994950435aa5867e7b7ce780186d881d74ac.tar.xz
Merge branch 'master' of github.com:jackhumbert/qmk_firmware into wu5y7
Diffstat (limited to 'tmk_core/protocol')
-rw-r--r--tmk_core/protocol/ps2_mouse.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tmk_core/protocol/ps2_mouse.c b/tmk_core/protocol/ps2_mouse.c
index c3e8b3c1c..82f6966e8 100644
--- a/tmk_core/protocol/ps2_mouse.c
+++ b/tmk_core/protocol/ps2_mouse.c
@@ -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);