diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-12-19 11:20:30 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-12-19 11:20:30 +0000 |
commit | e3a932e0e64d54c083e534541ac1ab36c4b82046 (patch) | |
tree | 3e82f84d2e2b6c07d91bdd5890d803920064a945 /os | |
parent | 1f18297e2a7c96659a63821a766050013e23bf67 (diff) | |
download | ChibiOS-e3a932e0e64d54c083e534541ac1ab36c4b82046.tar.gz ChibiOS-e3a932e0e64d54c083e534541ac1ab36c4b82046.tar.bz2 ChibiOS-e3a932e0e64d54c083e534541ac1ab36c4b82046.zip |
Win32 simulator updated.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2505 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-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. */
/*===========================================================================*/
|