diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-02-25 10:26:57 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-02-25 10:26:57 +0000 |
commit | 9afc25656cf245314157c310847f100acb54597a (patch) | |
tree | c782cae7b4d64927e96fdf7e852a3c03e73bdbfe /os/hal/templates/pal_lld.c | |
parent | c39343f7286f9d4135b40b470f5633ad044f0679 (diff) | |
download | ChibiOS-9afc25656cf245314157c310847f100acb54597a.tar.gz ChibiOS-9afc25656cf245314157c310847f100acb54597a.tar.bz2 ChibiOS-9afc25656cf245314157c310847f100acb54597a.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5317 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/templates/pal_lld.c')
-rw-r--r-- | os/hal/templates/pal_lld.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/os/hal/templates/pal_lld.c b/os/hal/templates/pal_lld.c index b6030b06e..10e2ae482 100644 --- a/os/hal/templates/pal_lld.c +++ b/os/hal/templates/pal_lld.c @@ -55,6 +55,35 @@ /* Driver exported functions. */
/*===========================================================================*/
+/**
+ * @brief STM32 I/O ports configuration.
+ * @details Ports A-D(E, F, G, H) clocks enabled.
+ *
+ * @param[in] config the STM32 ports configuration
+ *
+ * @notapi
+ */
+void _pal_lld_init(const PALConfig *config) {
+
+}
+
+/**
+ * @brief Pads mode setup.
+ * @details This function programs a pads group belonging to the same port
+ * with the specified mode.
+ *
+ * @param[in] port the port identifier
+ * @param[in] mask the group mask
+ * @param[in] mode the mode
+ *
+ * @notapi
+ */
+void _pal_lld_setgroupmode(ioportid_t port,
+ ioportmask_t mask,
+ iomode_t mode) {
+
+}
+
#endif /* HAL_USE_PAL */
/** @} */
|