From: tmk Date: Sun, 16 Jan 2011 15:37:36 +0000 (+0900) Subject: changed wait time for volume control. X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;h=849b10e921361956e31305870a4b2b1df108ee0f;p=max%2Ftmk_keyboard.git changed wait time for volume control. --- diff --git a/key_process.c b/key_process.c index 9c9ea26c..b790ffa6 100644 --- a/key_process.c +++ b/key_process.c @@ -79,11 +79,11 @@ void proc_matrix(void) { } else if (code == KB_VOLU) { usb_extra_audio_send(AUDIO_VOL_UP); usb_extra_audio_send(0); - _delay_ms(100); + _delay_ms(200); } else if (code == KB_VOLD) { usb_extra_audio_send(AUDIO_VOL_DOWN); usb_extra_audio_send(0); - _delay_ms(100); + _delay_ms(200); } else if (code == KB_PWR) { if (suspend && remote_wakeup) { usb_remote_wakeup();