diff options
Diffstat (limited to 'os/hal/templates/hal_pal_lld.c')
-rw-r--r-- | os/hal/templates/hal_pal_lld.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/os/hal/templates/hal_pal_lld.c b/os/hal/templates/hal_pal_lld.c index 9d7df5286..6cf21942c 100644 --- a/os/hal/templates/hal_pal_lld.c +++ b/os/hal/templates/hal_pal_lld.c @@ -52,15 +52,10 @@ /**
* @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) {
-
- (void)config;
+void _pal_lld_init(void) {
}
|