More change for USB suspend.

This commit is contained in:
NIIBE Yutaka
2017-11-17 12:29:32 +09:00
parent 21a481060c
commit e417846408
4 changed files with 13 additions and 3 deletions

View File

@@ -1,3 +1,10 @@
2017-11-17 NIIBE Yutaka <gniibe@fsij.org>
* src/main.c (main): Call chopstx_conf_idle.
* src/usb-ccid.c (usb_event_handle): Use 2 for call of
chopstx_conf_idle on suspend.
2017-11-16 NIIBE Yutaka <gniibe@fsij.org>
* src/gnuk.h (LED_OFF): New.

Submodule chopstx updated: b34b9b6440...e684e853c8

View File

@@ -40,6 +40,7 @@
#include <stdlib.h>
#define main emulated_main
#else
#include "mcu/cortex-m.h"
#include "mcu/stm32f103.h"
#endif
@@ -228,6 +229,8 @@ main (int argc, const char *argv[])
#endif
chopstx_t ccid_thd;
chopstx_conf_idle (1);
gnuk_malloc_init ();
#ifdef GNU_LINUX_EMULATION

View File

@@ -1649,12 +1649,12 @@ usb_event_handle (struct usb_dev *dev)
case USB_EVENT_DEVICE_SUSPEND:
led_blink (LED_OFF);
chopstx_conf_idle (1);
chopstx_conf_idle (2);
bDeviceState |= USB_DEVICE_STATE_SUSPEND;
break;
case USB_EVENT_DEVICE_WAKEUP:
chopstx_conf_idle (0);
chopstx_conf_idle (1);
bDeviceState &= ~USB_DEVICE_STATE_SUSPEND;
break;