diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-02-27 09:29:52 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-02-27 09:29:52 +0000 |
commit | 1cbd2e8e3d5bd0764be175cc07abe43ebf25479b (patch) | |
tree | 4866bbc482fd2f90ff0ac116fb3233a69c432f17 /os/hal/platforms/Posix | |
parent | 972c852b2c5c1a235f743e4faf39af7a37f7368f (diff) | |
download | ChibiOS-1cbd2e8e3d5bd0764be175cc07abe43ebf25479b.tar.gz ChibiOS-1cbd2e8e3d5bd0764be175cc07abe43ebf25479b.tar.bz2 ChibiOS-1cbd2e8e3d5bd0764be175cc07abe43ebf25479b.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1682 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/Posix')
-rw-r--r-- | os/hal/platforms/Posix/hal_lld.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/os/hal/platforms/Posix/hal_lld.c b/os/hal/platforms/Posix/hal_lld.c index 1d9ea611b..b3d32d6de 100644 --- a/os/hal/platforms/Posix/hal_lld.c +++ b/os/hal/platforms/Posix/hal_lld.c @@ -47,10 +47,12 @@ 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 CH_HAL_USE_PAL || defined(__DOXYGEN__)
const VIOConfig pal_default_config = {
{0, 0, 0},
{0, 0, 0}
};
+#endif
/*===========================================================================*/
/* Driver local functions. */
|