diff options
Diffstat (limited to 'os/hal/templates/gpt_lld.c')
-rw-r--r-- | os/hal/templates/gpt_lld.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/os/hal/templates/gpt_lld.c b/os/hal/templates/gpt_lld.c index 6ba3aea27..be2241144 100644 --- a/os/hal/templates/gpt_lld.c +++ b/os/hal/templates/gpt_lld.c @@ -39,7 +39,9 @@ /* Driver exported variables. */
/*===========================================================================*/
-/** @brief GPTD1 driver identifier.*/
+/**
+ * @brief GPTD1 driver identifier.
+ */
#if PLATFORM_GPT_USE_GPT1 || defined(__DOXYGEN__)
GPTDriver GPTD1;
#endif
@@ -125,6 +127,9 @@ void gpt_lld_stop(GPTDriver *gptp) { */
void gpt_lld_start_timer(GPTDriver *gptp, gptcnt_t interval) {
+ (void)gptp;
+ (void)interval;
+
}
/**
@@ -136,6 +141,8 @@ void gpt_lld_start_timer(GPTDriver *gptp, gptcnt_t interval) { */
void gpt_lld_stop_timer(GPTDriver *gptp) {
+ (void)gptp;
+
}
/**
@@ -151,6 +158,9 @@ void gpt_lld_stop_timer(GPTDriver *gptp) { */
void gpt_lld_polled_delay(GPTDriver *gptp, gptcnt_t interval) {
+ (void)gptp;
+ (void)interval;
+
}
#endif /* HAL_USE_GPT */
|