git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2849 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
ff676aee33
commit
94d34da7f1
|
@ -72,7 +72,7 @@ typedef enum {
|
|||
*
|
||||
* @iclass
|
||||
*/
|
||||
void icuEnableI(icup) icu_lld_enable(icup)
|
||||
#define icuEnableI(icup) icu_lld_enable(icup)
|
||||
|
||||
/**
|
||||
* @brief Disables the input capture.
|
||||
|
@ -81,7 +81,7 @@ void icuEnableI(icup) icu_lld_enable(icup)
|
|||
*
|
||||
* @iclass
|
||||
*/
|
||||
void icuDisableI(ICUDriver *icup) icu_lld_disable(icup)
|
||||
#define icuDisableI(icup) icu_lld_disable(icup)
|
||||
|
||||
/**
|
||||
* @brief Returns the width of the latest pulse.
|
||||
|
|
|
@ -122,7 +122,7 @@ void icu_lld_disable(ICUDriver *icup) {
|
|||
*
|
||||
* @notapi
|
||||
*/
|
||||
icucnt_t icu_lld_get_width(icup) {
|
||||
icucnt_t icu_lld_get_width(ICUDriver *icup) {
|
||||
|
||||
}
|
||||
|
||||
|
@ -136,7 +136,7 @@ icucnt_t icu_lld_get_width(icup) {
|
|||
*
|
||||
* @notapi
|
||||
*/
|
||||
icucnt_t icu_lld_get_period(icup) {
|
||||
icucnt_t icu_lld_get_period(ICUDriver *icup) {
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue