aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--os/hal/platforms/Posix/hal_lld.c9
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. */
/*===========================================================================*/