Version 0.10
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2015-09-15 Niibe Yutaka <gniibe@fsij.org>
|
||||
|
||||
* VERSION: 0.10.
|
||||
* doc/chopstx.texi (VERSION): 0.10.
|
||||
|
||||
* example-cdc/usb_stm32f103.c: Update from Gnuk.
|
||||
|
||||
2015-09-14 Niibe Yutaka <gniibe@fsij.org>
|
||||
|
||||
* chopstx.c (q_exit): Remove.
|
||||
|
||||
13
NEWS
13
NEWS
@@ -1,6 +1,19 @@
|
||||
NEWS - Noteworthy changes
|
||||
|
||||
|
||||
* Major changes in Chopstx 0.10
|
||||
|
||||
Released 2015-09-15
|
||||
|
||||
** Thread cancellation bug fix
|
||||
Thread cancellation didn't work well with 0.09 because
|
||||
of initial configuration mistake. It's fixed.
|
||||
|
||||
** Interrupt handler bug fix
|
||||
Interrupt handler wasn't unregistered on exit well.
|
||||
It's fixed.
|
||||
|
||||
|
||||
* Major changes in Chopstx 0.09
|
||||
|
||||
Released 2015-09-10
|
||||
|
||||
4
README
4
README
@@ -1,6 +1,6 @@
|
||||
Chopstx - Threads and only Threads
|
||||
Version 0.09
|
||||
2015-09-10
|
||||
Version 0.10
|
||||
2015-09-15
|
||||
Niibe Yutaka
|
||||
Flying Stone Technology
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
\input texinfo @c -*-texinfo-*-
|
||||
@c %**start of header
|
||||
@setfilename chopstx.info
|
||||
@set VERSION 0.09
|
||||
@set VERSION 0.10
|
||||
@settitle Chopstx Reference Manual
|
||||
@c Unify some of the indices.
|
||||
@syncodeindex tp fn
|
||||
|
||||
@@ -727,7 +727,7 @@ static int std_set_interface (uint8_t req, struct control_info *detail)
|
||||
|
||||
if ((req & REQUEST_DIR) == 1 || rcp != INTERFACE_RECIPIENT
|
||||
|| detail->len != 0 || (detail->index >> 8) != 0
|
||||
|| (detail->value >> 8) != 0 || dev_p->current_configuration != 0)
|
||||
|| (detail->value >> 8) != 0 || dev_p->current_configuration == 0)
|
||||
return USB_UNSUPPORT;
|
||||
|
||||
return usb_cb_interface (USB_SET_INTERFACE, detail);
|
||||
|
||||
Reference in New Issue
Block a user