diff options
-rw-r--r-- | os/hal/platforms/LPC111x/hal_lld.c | 6 | ||||
-rw-r--r-- | os/hal/platforms/LPC111x/hal_lld.h | 9 |
2 files changed, 9 insertions, 6 deletions
diff --git a/os/hal/platforms/LPC111x/hal_lld.c b/os/hal/platforms/LPC111x/hal_lld.c index 919d1b0c7..7d831dfa9 100644 --- a/os/hal/platforms/LPC111x/hal_lld.c +++ b/os/hal/platforms/LPC111x/hal_lld.c @@ -18,10 +18,10 @@ */
/**
- * @file LPC111x/hal_lld.c
- * @brief LPC111x HAL subsystem low level driver source.
+ * @file LPC11xx/hal_lld.c
+ * @brief LPC11xx HAL subsystem low level driver source.
*
- * @addtogroup LPC111x_HAL
+ * @addtogroup LPC11xx_HAL
* @{
*/
diff --git a/os/hal/platforms/LPC111x/hal_lld.h b/os/hal/platforms/LPC111x/hal_lld.h index 414ec7867..ab7a637e6 100644 --- a/os/hal/platforms/LPC111x/hal_lld.h +++ b/os/hal/platforms/LPC111x/hal_lld.h @@ -18,16 +18,19 @@ */
/**
- * @file templates/hal_lld.h
+ * @file LPC11xx/hal_lld.h
* @brief HAL subsystem low level driver header template.
*
- * @addtogroup HAL_LLD
+ * @addtogroup LPC11xx_HAL
* @{
*/
#ifndef _HAL_LLD_H_
#define _HAL_LLD_H_
+#include "LPC11xx.h"
+#include "nvic.h"
+
/*===========================================================================*/
/* Driver constants. */
/*===========================================================================*/
@@ -35,7 +38,7 @@ /**
* @brief Platform name.
*/
-#define PLATFORM_NAME ""
+#define PLATFORM_NAME "LPC11xx"
/*===========================================================================*/
/* Driver pre-compile time settings. */
|