More change for USB suspend.
This commit is contained in:
@@ -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.
|
||||
|
||||
2
chopstx
2
chopstx
Submodule chopstx updated: b34b9b6440...e684e853c8
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user