blob: 451d7263d46410a9040f2412c1300c01cfe5eafb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
Chopstx - Threads and only Threads
Version 0.04
2014-12-10
Niibe Yutaka
Flying Stone Technology
What's Chopstx?
===============
Chopstx is an RT thread library for ARM Cortex-M3, specifically,
STM32F103.
While most RTOSes come with many features, drivers, and stacks,
Chopstx just offers a RT thread library.
With Chopstx, interrupt handling is also done by a thread. This
enables coherent code for ease of maintenance.
License
=======
It is distributed under GNU General Public Licence version 3 or later
(GPLv3+), with additional permission. Please see COPYING and
EXCEPTION.
Example code
============
We have two examples in this distribution, LED blinker and
USB CDC-ACM function. You can build it like:
$ cd example-cdc
$ ln -s ../board/board-olimex-stm32-h103.h board.h
$ make
Future Works
============
We have a development branch for ARM Cortex-M0 and it works fine.
It will be merged into mainline.
Thread local storage and support of interface like poll/select would
be next thing to be done.
--
|