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 (HLD). This layer contains the definitions * of the driver's APIs and the platform independent part of the driver.
* An HLD is composed by two files: - * - @p @.c, the HLD implementation file. This file must be + * - @p hal_@.c, the HLD implementation file. This file must be * included in the Makefile in order to use the driver. - * - @p @.h, the HLD header file. This file is implicitly + * - @p hal_@.h, the HLD header file. This file is implicitly * included by the HAL header file @p hal.h. * . * - Low Level Device Driver (LLD). This layer contains the platform * dependent part of the driver.
* A LLD is composed by two files: - * - @p @_lld.c, the LLD implementation file. This file must be + * - @p hal_@_lld.c, the LLD implementation file. This file must be * included in the Makefile in order to use the driver. - * - @p @_lld.h, the LLD header file. This file is implicitly + * - @p hal_@_lld.h, the LLD header file. This file is implicitly * included by the HLD header file. * . * .