diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-12-08 08:47:14 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-12-08 08:47:14 +0000 |
commit | 3ff9afd04851ec97d66d6833520b49dc18f35ea4 (patch) | |
tree | 64490d99322e87fa9457efa59808fed5dff2a341 /os/hal/platforms/AT91SAM7 | |
parent | 456490bf06d9d6eccf7a02b18fba94058c81f26c (diff) | |
download | ChibiOS-3ff9afd04851ec97d66d6833520b49dc18f35ea4.tar.gz ChibiOS-3ff9afd04851ec97d66d6833520b49dc18f35ea4.tar.bz2 ChibiOS-3ff9afd04851ec97d66d6833520b49dc18f35ea4.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1389 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/AT91SAM7')
-rw-r--r-- | os/hal/platforms/AT91SAM7/hal_lld.c | 5 | ||||
-rw-r--r-- | os/hal/platforms/AT91SAM7/hal_lld.h | 8 |
2 files changed, 7 insertions, 6 deletions
diff --git a/os/hal/platforms/AT91SAM7/hal_lld.c b/os/hal/platforms/AT91SAM7/hal_lld.c index 6da681fcd..b79e40ffe 100644 --- a/os/hal/platforms/AT91SAM7/hal_lld.c +++ b/os/hal/platforms/AT91SAM7/hal_lld.c @@ -35,8 +35,9 @@ /* Low Level Driver local variables. */
/*===========================================================================*/
-/*
- * Digital I/O ports static configuration as defined in @p board.h.
+/**
+ * @brief PAL setup.
+ * @details Digital I/O ports static configuration as defined in @p board.h.
*/
const AT91SAM7PIOConfig pal_default_config =
{
diff --git a/os/hal/platforms/AT91SAM7/hal_lld.h b/os/hal/platforms/AT91SAM7/hal_lld.h index 733ef9a51..0a2d97a66 100644 --- a/os/hal/platforms/AT91SAM7/hal_lld.h +++ b/os/hal/platforms/AT91SAM7/hal_lld.h @@ -31,6 +31,10 @@ #include "at91lib/aic.h"
/*===========================================================================*/
+/* Driver constants. */
+/*===========================================================================*/
+
+/*===========================================================================*/
/* Driver pre-compile time settings. */
/*===========================================================================*/
@@ -49,10 +53,6 @@ #endif
/*===========================================================================*/
-/* Driver constants. */
-/*===========================================================================*/
-
-/*===========================================================================*/
/* Driver data structures and types. */
/*===========================================================================*/
|