diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-02-21 11:56:20 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-02-21 11:56:20 +0000 |
commit | 95c62572a0e015b76dd82dc2586aafed779a4a65 (patch) | |
tree | 5e5b0e8618c670355a1f5798c3abb86f90bd723d /os/hal | |
parent | 7462bf578bdcd843d94129bdc67909b51da7d003 (diff) | |
download | ChibiOS-95c62572a0e015b76dd82dc2586aafed779a4a65.tar.gz ChibiOS-95c62572a0e015b76dd82dc2586aafed779a4a65.tar.bz2 ChibiOS-95c62572a0e015b76dd82dc2586aafed779a4a65.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1656 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/platforms/Posix/hal_lld.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/os/hal/platforms/Posix/hal_lld.c b/os/hal/platforms/Posix/hal_lld.c index d65fb8ef1..1d9ea611b 100644 --- a/os/hal/platforms/Posix/hal_lld.c +++ b/os/hal/platforms/Posix/hal_lld.c @@ -43,6 +43,15 @@ 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.
+ */
+const VIOConfig pal_default_config = {
+ {0, 0, 0},
+ {0, 0, 0}
+};
+
/*===========================================================================*/
/* Driver local functions. */
/*===========================================================================*/
|