aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/hal.dox
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-04-02 19:15:50 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-04-02 19:15:50 +0000
commit8d2e166f09025f1cdb36f4ac09260dc66f29e598 (patch)
tree7db01957bcae90ccf8bad300b88c36c6de8ddfad /os/hal/hal.dox
parentcf15276df33e24a72eedf38af97dde3f3404fce2 (diff)
downloadChibiOS-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.dox3
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;