From 042c2ddba82250d60de4882ae7b0293666747d2d Mon Sep 17 00:00:00 2001 From: barthess Date: Fri, 29 Mar 2013 19:27:32 +0000 Subject: STM32. GPT. Removed prefix "stm32" from names of functions changing interval. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5518 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/include/gpt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'os/hal/include') diff --git a/os/hal/include/gpt.h b/os/hal/include/gpt.h index 379b90be9..3b474cb14 100644 --- a/os/hal/include/gpt.h +++ b/os/hal/include/gpt.h @@ -89,7 +89,7 @@ typedef void (*gptcallback_t)(GPTDriver *gptp); * * @iclass */ -#define stm32_gptChangeIntervalI(gptp, interval) { \ +#define gptChangeIntervalI(gptp, interval) { \ gpt_lld_change_interval(gptp, interval); \ } @@ -106,7 +106,7 @@ extern "C" { void gptStop(GPTDriver *gptp); void gptStartContinuous(GPTDriver *gptp, gptcnt_t interval); void gptStartContinuousI(GPTDriver *gptp, gptcnt_t interval); - void stm32_gptChangeInterval(GPTDriver *gptp, gptcnt_t interval); + void gptChangeInterval(GPTDriver *gptp, gptcnt_t interval); void gptStartOneShot(GPTDriver *gptp, gptcnt_t interval); void gptStartOneShotI(GPTDriver *gptp, gptcnt_t interval); void gptStopTimer(GPTDriver *gptp); -- cgit v1.2.3