diff options
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/platforms/Posix/hal_lld.c | 11 | ||||
-rw-r--r-- | os/hal/platforms/Win32/hal_lld.c | 11 |
2 files changed, 0 insertions, 22 deletions
diff --git a/os/hal/platforms/Posix/hal_lld.c b/os/hal/platforms/Posix/hal_lld.c index dfc4702ca..6f1433586 100644 --- a/os/hal/platforms/Posix/hal_lld.c +++ b/os/hal/platforms/Posix/hal_lld.c @@ -43,17 +43,6 @@ static struct timeval nextcnt;
static struct timeval tick = {0, 1000000 / CH_FREQUENCY};
-/**
- * @brief PAL setup.
- * @details Digital I/O ports static configuration as defined in @p board.h.
- */
-#if HAL_USE_PAL || defined(__DOXYGEN__)
-const PALConfig pal_default_config = {
- {0, 0, 0},
- {0, 0, 0}
-};
-#endif
-
/*===========================================================================*/
/* Driver local functions. */
/*===========================================================================*/
diff --git a/os/hal/platforms/Win32/hal_lld.c b/os/hal/platforms/Win32/hal_lld.c index 51781b94c..a03d91998 100644 --- a/os/hal/platforms/Win32/hal_lld.c +++ b/os/hal/platforms/Win32/hal_lld.c @@ -38,17 +38,6 @@ static LARGE_INTEGER nextcnt;
static LARGE_INTEGER slice;
-/**
- * @brief PAL setup.
- * @details Digital I/O ports static configuration as defined in @p board.h.
- */
-#if HAL_USE_PAL || defined(__DOXYGEN__)
-const PALConfig pal_default_config = {
- {0, 0, 0},
- {0, 0, 0}
-};
-#endif
-
/*===========================================================================*/
/* Driver local functions. */
/*===========================================================================*/
|