1
0

Fix remotewakeup of PJRC stack(Fix #121)

- without this fix wakeup often fails
- keyboard can wakeup once or twice but fails after that
这个提交包含在:
tmk 2014-04-28 15:21:42 +09:00
父节点 efc983a07d
当前提交 a1f49ff8c1

查看文件

@ -629,6 +629,7 @@ uint8_t usb_configured(void)
void usb_remote_wakeup(void)
{
UDCON |= (1<<RMWKUP);
while (UDCON & (1<<RMWKUP));
}