aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-12-30 13:28:10 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-12-30 13:28:10 +0000
commit320a3f140e693a0d8647fd05ec6d2d4cb10c523a (patch)
tree8ab4b7cb54b76ab6214fc387594a433790f8e30a /docs/src
parenta6c74277befa3b1354aaf4b3bec386eebfdb61f7 (diff)
downloadChibiOS-320a3f140e693a0d8647fd05ec6d2d4cb10c523a.tar.gz
ChibiOS-320a3f140e693a0d8647fd05ec6d2d4cb10c523a.tar.bz2
ChibiOS-320a3f140e693a0d8647fd05ec6d2d4cb10c523a.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1484 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/main.dox9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/src/main.dox b/docs/src/main.dox
index ee1a2654c..4ce9b64b1 100644
--- a/docs/src/main.dox
+++ b/docs/src/main.dox
@@ -40,21 +40,22 @@
* event flags, messages, mailboxes, I/O queues.
* - No static setup at compile time, there is no need to configure a maximum
* number of all the above objects.
- * - PC simulator target included, the development can be done on the PC
- * using MinGW.<br>
+ * - PC simulator target included, the development can be done on a PC
+ * under Linux or Windows.<br>
* Timers, I/O channels and other HW resources are simulated in a
* Win32 process and the application code does not need to be aware of it.
- * MinGW demo available.
* - No *need* for a memory allocator, all the kernel structures are static
* and declaratively allocated.
* - Optional, thread safe, Heap Allocator subsystem.
* - Optional, thread safe, Memory Pools Allocator subsystem.
* - Blocking and non blocking I/O channels with timeout and events generation
* capability.
- * - Minimal system requirements: about 8KiB ROM with all options enabled and
+ * - Minimal system requirements: about 6KiB ROM with all options enabled and
* speed optimizations on. The size can shrink under 2KiB by disabling the
* the unused subsystems and optimizing for size.
* - Almost totally written in C with little ASM code required for ports.
+ * - Optional Hardware Abstraction Layer (HAL) with support for many device
+ * driver models and device driver implementations.
* .
* <h2>Related pages</h2>
* - @subpage lic_faq