diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-04-02 19:15:50 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-04-02 19:15:50 +0000 |
commit | 8d2e166f09025f1cdb36f4ac09260dc66f29e598 (patch) | |
tree | 7db01957bcae90ccf8bad300b88c36c6de8ddfad /os/hal/hal.dox | |
parent | cf15276df33e24a72eedf38af97dde3f3404fce2 (diff) | |
download | ChibiOS-8d2e166f09025f1cdb36f4ac09260dc66f29e598.tar.gz ChibiOS-8d2e166f09025f1cdb36f4ac09260dc66f29e598.tar.bz2 ChibiOS-8d2e166f09025f1cdb36f4ac09260dc66f29e598.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2866 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/hal.dox')
-rw-r--r-- | os/hal/hal.dox | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/os/hal/hal.dox b/os/hal/hal.dox index 5bee98480..6ed44eacc 100644 --- a/os/hal/hal.dox +++ b/os/hal/hal.dox @@ -51,14 +51,17 @@ * @subsection hal_device_driver_diagram Diagram
* @dot
digraph example {
+ graph [size="5, 7", pad="1.5, 0"];
node [shape=rectangle, fontname=Helvetica, fontsize=8,
fixedsize="true", width="2.0", height="0.4"];
edge [fontname=Helvetica, fontsize=8];
+
app [label="Application"];
hld [label="High Level Driver"];
lld [label="Low Level Driver"];
hw [label="Microcontroller Hardware"];
hal_lld [label="HAL shared low level code"];
+
app->hld;
hld->lld;
lld-> hw;
|