aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/STM32/LLD/COMPv1/hal_comp_lld.h
diff options
context:
space:
mode:
authorFabien Poussin <fabien.poussin@gmail.com>2017-02-07 10:58:11 +0100
committerFabien Poussin <fabien.poussin@gmail.com>2017-02-07 10:58:11 +0100
commit7059c87ab4f237187bab6db709280de3a6b8ea6b (patch)
tree941254f0209eca238938debf632bd201b2b593b0 /os/hal/ports/STM32/LLD/COMPv1/hal_comp_lld.h
parent86428716d531d10261170eb990e6f60938e3cfd7 (diff)
downloadChibiOS-Contrib-7059c87ab4f237187bab6db709280de3a6b8ea6b.tar.gz
ChibiOS-Contrib-7059c87ab4f237187bab6db709280de3a6b8ea6b.tar.bz2
ChibiOS-Contrib-7059c87ab4f237187bab6db709280de3a6b8ea6b.zip
[COMP] Fixing headers, missing includes.
Diffstat (limited to 'os/hal/ports/STM32/LLD/COMPv1/hal_comp_lld.h')
-rw-r--r--os/hal/ports/STM32/LLD/COMPv1/hal_comp_lld.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/os/hal/ports/STM32/LLD/COMPv1/hal_comp_lld.h b/os/hal/ports/STM32/LLD/COMPv1/hal_comp_lld.h
index 4b66c52..0ecdca2 100644
--- a/os/hal/ports/STM32/LLD/COMPv1/hal_comp_lld.h
+++ b/os/hal/ports/STM32/LLD/COMPv1/hal_comp_lld.h
@@ -238,7 +238,7 @@ typedef struct {
} COMPConfig;
/**
- * @brief Structure representing an TIMCAP driver.
+ * @brief Structure representing an COMP driver.
*/
struct COMPDriver {
/**
@@ -299,10 +299,10 @@ extern COMPDriver COMPD7;
extern "C" {
#endif
void comp_lld_init(void);
- void comp_lld_start(COMPDriver *timcapp);
- void comp_lld_stop(COMPDriver *timcapp);
- void comp_lld_enable(COMPDriver *timcapp);
- void comp_lld_disable(COMPDriver *timcapp);
+ void comp_lld_start(COMPDriver *compp);
+ void comp_lld_stop(COMPDriver *compp);
+ void comp_lld_enable(COMPDriver *compp);
+ void comp_lld_disable(COMPDriver *compp);
#ifdef __cplusplus
}
#endif