bldc/servo_dec.h

38 lines
1.1 KiB
C
Raw Normal View History

/*
Copyright 2012-2014 Benjamin Vedder benjamin@vedder.se
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2014-01-09 06:20:26 -08:00
/*
* servo_dec.h
*
* Created on: 20 jan 2013
* Author: benjamin
*/
#ifndef SERVO_DEC_H_
#define SERVO_DEC_H_
#include <stdint.h>
2014-06-26 10:41:57 -07:00
#include <conf_general.h>
2014-01-09 06:20:26 -08:00
// Functions
2014-04-03 00:19:25 -07:00
void servodec_init(void (*d_func)(void));
2015-04-20 13:09:53 -07:00
void servodec_set_pulse_options(float start, float width, bool median_filter);
float servodec_get_servo(int servo_num);
2014-01-09 06:20:26 -08:00
uint32_t servodec_get_time_since_update(void);
#endif /* SERVO_DEC_H_ */