aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--todo.txt45
1 files changed, 23 insertions, 22 deletions
diff --git a/todo.txt b/todo.txt
index d6038ebe6..7d9b26b31 100644
--- a/todo.txt
+++ b/todo.txt
@@ -4,45 +4,46 @@ Status:
X = In progress, some work done.
* = Done.
-Before 1.6.0:
-* Remove instances of unnamed structures/unions.
-* Reference counter for threads, concept of detached threads, threads
- management.
-* Active threads registry in the kernel.
-* Rename all the kernel headers by putting "ch" in front of the name, this is
- required in order to avoid potential conflicts with external libraries, the
- current names are a bit too generic.
+Within 2.1.x (hopefully)
+* Binary Semaphores on top of Counting Semaphores.
+X Resist doing more changes and optimizations in the kernel, fixes only.
+- Merge the Coldfire branch in mainline.
+- Merge the H8S branch in mainline.
+- File System infrastructure.
+- Add a *very simple* ADC API for simgle one shot sampling (implement it as
+ an injected conversion on the STM32).
+- MAC driver for STM32F105/STM32F107 (hardware missing).
+- Direct unbuffered UART driver (evaluate rebuilding the current serial driver
+ as a generic driver on top of the low level UART driver).
+ Requirements: low level, callbacks, DMA capable, state machines buildable
+ on top, support data words greater than 8 bits, callback for
+ "last byte transmitted (RS485)", simple implementation,
+ verifiable.
+- Device drivers for STM8 (SPI, ADC, PWM, bring it on par with STM32).
+- Support for more compilers (ARMCMx only initially).
+- Support for not just Makefiles (Ride7, Crossworks, Eclipse CDT etc).
+- Batch testing of the ARM7/ARMCMx port using OpenOCD, with reports.
+
+Later but within 2.x.x
- Debug-related features and tools.
- I2C device driver class support.
- USB device driver class support.
- MAC driver revision in order to support copy-less operations, this will
require changes to lwIP or a new TCP/IP stack however.
-- More code examples into the documentation.
- Update C++ wrapper (Heap, Pools, Mailboxes and any new feature).
-
-After 1.6.0
-? Minimal optional C-runtime library (complete enough for lwIP).
-? Think to something for threads restart.
-? OSEK-style simple tasks within the idle thread.
- Threads Pools manager in the library.
-Ideas for 2.x.x:
-- High resolution timers and tickless kernel.
-
Ideas for 3.x.x:
+- High resolution timers and tickless kernel.
- Multicore support.
Side projects:
-* lwIP TCP/IP stack integration and demo.
-* FatFS library integration and demo.
X ChibiOS Wizard, UML modeling and ChibiOS applications code and
documentation generator.
-? OSEK layer.
-- Posix layer.
X File System
+? Posix layer.
- Visual debugger/monitor interfaced through OpenOCD.
Lower priority:
- More demos
- More ports
-- More compilers.