aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/dox/main.dox
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-05-04 12:15:09 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-05-04 12:15:09 +0000
commit5533ac8e1fa9d11705e54c6ed08b9183d6cbd9ac (patch)
tree09286396f316e70d21dd1ed9c27c3dc2bb03242e /os/hal/dox/main.dox
parent24157d68e4fa7bd3a1c9ba31abe4da276e7a7326 (diff)
downloadChibiOS-5533ac8e1fa9d11705e54c6ed08b9183d6cbd9ac.tar.gz
ChibiOS-5533ac8e1fa9d11705e54c6ed08b9183d6cbd9ac.tar.bz2
ChibiOS-5533ac8e1fa9d11705e54c6ed08b9183d6cbd9ac.zip
Documentation-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11998 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/hal/dox/main.dox')
-rw-r--r--os/hal/dox/main.dox8
1 files changed, 4 insertions, 4 deletions
diff --git a/os/hal/dox/main.dox b/os/hal/dox/main.dox
index 991fb78e4..187e00b25 100644
--- a/os/hal/dox/main.dox
+++ b/os/hal/dox/main.dox
@@ -35,17 +35,17 @@
* - High Level Device Driver (<b>HLD</b>). This layer contains the definitions
* of the driver's APIs and the platform independent part of the driver.<br>
* An HLD is composed by two files:
- * - @p @<driver@>.c, the HLD implementation file. This file must be
+ * - @p hal_@<driver@>.c, the HLD implementation file. This file must be
* included in the Makefile in order to use the driver.
- * - @p @<driver@>.h, the HLD header file. This file is implicitly
+ * - @p hal_@<driver@>.h, the HLD header file. This file is implicitly
* included by the HAL header file @p hal.h.
* .
* - Low Level Device Driver (<b>LLD</b>). This layer contains the platform
* dependent part of the driver.<br>
* A LLD is composed by two files:
- * - @p @<driver@>_lld.c, the LLD implementation file. This file must be
+ * - @p hal_@<driver@>_lld.c, the LLD implementation file. This file must be
* included in the Makefile in order to use the driver.
- * - @p @<driver@>_lld.h, the LLD header file. This file is implicitly
+ * - @p hal_@<driver@>_lld.h, the LLD header file. This file is implicitly
* included by the HLD header file.
* .
* .