Version 1.12.
This commit is contained in:
28
AUTHORS
28
AUTHORS
@@ -27,19 +27,30 @@ Mateusz Zalega:
|
||||
|
||||
NIIBE Yutaka:
|
||||
Wrote the library:
|
||||
chopstx.c, entry.c, eventflag.c,
|
||||
chopstx.h, eventflag.h
|
||||
chopstx.c, chopstx.h,
|
||||
chopstx-cortex-m.c, chopstx-cortex-m.h,
|
||||
chopstx-gnu-linux.c, chopstx-gnu-linux.h,
|
||||
entry.c,
|
||||
eventflag.c, eventflag.h
|
||||
Wrote the drivers mcu/*:
|
||||
chx-gnu-linux.c, chx-mkl27z.c, chx-stm32f0.c, chx-stm32f103.c,
|
||||
clk_gpio_init-mkl27z.c, clk_gpio_init-stm32.c,
|
||||
sys-stm32f103.c, sys-stm32f030.c, sys-mkl27z.c,
|
||||
adc-stm32f103.c, adc-mkl27z.c
|
||||
cortex-m.h, mkl27z.h, stm32.h, stm32f103.h,
|
||||
sys-gnu-linux.c,sys-gnu-linux.h,
|
||||
sys-mkl27z.c, sys-mkl27z.h,
|
||||
sys-stm32f0.c, sys-stm32f0.h
|
||||
sys-stm32f103.c, sys-stm32f103.h,
|
||||
usb-stm32f103.c, usb-mkl27z.c
|
||||
Wrote the drivers:
|
||||
controb/adc-mkl27z.c
|
||||
Drew the logo:
|
||||
chopstx.svg, chopstx.png
|
||||
Wrote examples:
|
||||
example-led, example-cdc, example-fsm-55, example-fs-bb48,
|
||||
example-usb-serial
|
||||
example-usb-serial, example-cdc-gnu-linux
|
||||
Wrote board/*:
|
||||
board-fst-01.h, board-fst-01-00.h,
|
||||
board-fst-01sz.h,
|
||||
board-fst-01g.h, board-fst-01.h, board-fst-01-00.h,
|
||||
board-olimex-stm32-h103.h, board-stm8s-discovery.h
|
||||
board-cq-starm.h, board-stbee-mini.h, board-stbee.h,
|
||||
|
||||
@@ -47,9 +58,14 @@ NIIBE Yutaka:
|
||||
|
||||
board-fs-bb48.h
|
||||
|
||||
For Free Software Initiative of Japan, wrote:
|
||||
contrib/adc-stm32f103.c,
|
||||
contrib/adc-gnu-linux.c
|
||||
|
||||
Under contract of g10 Code GmbH, wrote:
|
||||
mcu/usb-usbip.c
|
||||
contrib/usart-stm32f103.c
|
||||
contrib/ackbtn-stm32f103.c
|
||||
|
||||
Paul Fertser:
|
||||
Added Blue Pill support.
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
2018-11-12 NIIBE Yutaka <gniibe@fsij.org>
|
||||
|
||||
* VERSION: 1.12.
|
||||
* doc/chopstx.texi (VERSION): 1.12.
|
||||
|
||||
* contrib/ackbtn-stm32f103.c (ackbtn_init): Support FST-01 and
|
||||
FST-01G, using PA2.
|
||||
(ackbtn_disable): Fix to correctly clear pending interrupt.
|
||||
|
||||
17
NEWS
17
NEWS
@@ -1,6 +1,21 @@
|
||||
NEWS - Noteworthy changes
|
||||
|
||||
|
||||
* Major changes in Chopstx 1.12
|
||||
|
||||
Released 2018-11-12
|
||||
|
||||
** Enhance API of eventflag
|
||||
New function eventflag_set_mask is added, so that we can only handle
|
||||
specified events. See Gnuk 1.2.12 for an example (while USB Tx is
|
||||
busy, the USB thread only accepts EV_TX_FINISHED event, leaving
|
||||
other events).
|
||||
|
||||
** Acknowledge button support for FST-01 and FST-01G
|
||||
While FST-01 and FST-01G don't have any button in the original design,
|
||||
it may be PA2 when user put a hall sensor or a switch.
|
||||
|
||||
|
||||
* Major changes in Chopstx 1.11
|
||||
|
||||
Released 2018-10-02
|
||||
@@ -17,7 +32,7 @@ Now, the edge detector is disabled by ackbtn_disable, and it is
|
||||
enabled by ackbtn_enable. So, the status is cleared correctly.
|
||||
|
||||
** New board support: FST-01SZ
|
||||
It's still under development. Programming-wise, it will keep same.
|
||||
It's still under development. Programming-wise, it will be kept same.
|
||||
|
||||
|
||||
* Major changes in Chopstx 1.10
|
||||
|
||||
4
README
4
README
@@ -1,6 +1,6 @@
|
||||
Chopstx - Threads and only Threads
|
||||
Version 1.11
|
||||
2018-10-02
|
||||
Version 1.12
|
||||
2018-11-12
|
||||
Niibe Yutaka
|
||||
Flying Stone Technology
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
\input texinfo @c -*-texinfo-*-
|
||||
@c %**start of header
|
||||
@setfilename chopstx.info
|
||||
@set VERSION 1.11
|
||||
@set VERSION 1.12
|
||||
@settitle Chopstx Reference Manual
|
||||
@c Unify some of the indices.
|
||||
@syncodeindex tp fn
|
||||
|
||||
Reference in New Issue
Block a user