Add ChangLog entries, update NEWS and README.

I should have called version 1.10 as 2.0, becase it introduced API
change.
This commit is contained in:
NIIBE Yutaka
2019-04-24 09:57:51 +09:00
parent 97811f2e1c
commit 2d2d544c5d
4 changed files with 29 additions and 6 deletions

View File

@@ -1,3 +1,10 @@
2019-04-24 NIIBE Yutaka <gniibe@fsij.org>
* mcu/sys-stm32l4.c: New.
* mcu/chx-stm32l4.c: New. Not support suspend yet.
* mcu/stm32l.h: New.
* mcu/clk_gpio_init-stm32l.c: New.
2019-04-17 NIIBE Yutaka <gniibe@fsij.org>
* mcu/usb-stm32l4.c: New.
@@ -5,6 +12,7 @@
2019-04-12 NIIBE Yutaka <gniibe@fsij.org>
* contrib/usart-stm32l4.c: New.
* contrib/usart-common.c: Factor out from usart-stm32f103.c.
* entry.c [__ARM_ARCH_7EM__] (entry): Fix for Cortex-M4.

15
NEWS
View File

@@ -1,6 +1,21 @@
NEWS - Noteworthy changes
* Major changes in Chopstx 2.0
Released 2019-0X-XX
** Cortex-M4 support
Cortex-M4 support has been added. Not supporting use of FPU or DSP,
yet. Note that it's not intend to be used by Gnuk.
** STM32L432 support
USART and USB drivers are added.
** New board support: ST Nucleo-32 L432
ST Nucleo-32 L432 is a small board with ST-Link/V2-1.
* Major changes in Chopstx 1.14
Released 2019-03-02

10
README
View File

@@ -1,6 +1,6 @@
Chopstx - Threads and only Threads
Version 1.14
2018-03-02
Version 2.0
2018-0X-XX
Niibe Yutaka
Flying Stone Technology
@@ -8,8 +8,8 @@ What's Chopstx?
===============
Chopstx is an RT thread library for STM32F103 and GD32F103 (ARM
Cortex-M3), STM32F030 (ARM Cortex-M0), MKL27Z (ARM Cortex-M0plus), and
emulation on GNU/Linux.
Cortex-M3), STM32F030 (ARM Cortex-M0), MKL27Z (ARM Cortex-M0plus),
STM32L432 (ARM Cortex-M4), and emulation on GNU/Linux.
While most RTOSes come with many features, drivers, and protocol
stacks, Chopstx just offers a simple RT thread library.
@@ -19,7 +19,7 @@ enables coherent code for ease of maintenance.
While threads are important, we don't need more threads than
necessary. Chopstx provides a feature of poll, so that we can
minimize use of threads.
handle multiple events by a single thread.
Note that this library is _not_ related to the hand game:

View File

@@ -101,7 +101,7 @@ enables coherent code for ease of maintenance.
While threads are important, we don't need more threads than
necessary. Chopstx provides a feature of poll, so that we can
minimize use of threads.
handle multiple events by a single thread.
@node Threads and only Threads