4 * This file is part of BeRTOS.
6 * Bertos is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * As a special exception, you may use this file as part of a free software
21 * library without restriction. Specifically, if other files instantiate
22 * templates or use macros or inline functions from this file, or you compile
23 * this file and link it with other files to produce an executable, this
24 * file does not by itself cause the resulting executable to be covered by
25 * the GNU General Public License. This exception does not however
26 * invalidate any other reasons why the executable file might be covered by
27 * the GNU General Public License.
29 * Copyright 2008 Develer S.r.l. (http://www.develer.com/)
33 * \brief Proportional, integral, derivative controller (PID controller).
37 * \author Daniele Basile <asterix@develer.com>
39 * $WIZ$ module_name = "pid_control"
40 * $WIZ$ module_depends = "timer"
43 #ifndef ALGO_PID_CONTROL_H
44 #define ALGO_PID_CONTROL_H
46 #include <drv/timer.h>
49 * Data type for pid coefficient.
52 typedef float piddata_t;
55 * PID context structure.
59 pidk_t kp; ///< Proportional term of PID control method (Gain).
60 pidk_t ki; ///< Integral term of PID control method (Integral Gain).
61 pidk_t kd; ///< Derivative of PID control method (Derivative Gain).
63 piddata_t i_max; ///< Max value of integral term.
64 piddata_t i_min; ///< Min value of integral term.
66 piddata_t out_max; ///< Man value of output.
67 piddata_t out_min; ///< Min value of output.
69 mtime_t sample_period; ///< Sample period in milliseconds.
75 * PID context structure.
77 typedef struct PidContext
81 piddata_t prev_err; ///< Previous error.
82 piddata_t i_state; ///< Integrator state (sum of all the preceding errors).
87 * Set Kp, Ki, Kd constants of PID control.
89 INLINE void pid_control_setPid(PidCfg *pid_cfg, pidk_t kp, pidk_t ki, pidk_t kd)
97 * Set sample period for PID control.
99 INLINE void pid_control_setPeriod(PidCfg *pid_cfg, mtime_t sample_period)
101 pid_cfg->sample_period = sample_period;
105 * Clear a pid control structure
107 INLINE void pid_control_reset(PidContext *pid_ctx)
109 pid_ctx->i_state = 0;
110 pid_ctx->prev_err = 0;
113 piddata_t pid_control_update(PidContext *pid_ctx, piddata_t target, piddata_t curr_pos);
114 void pid_control_init(PidContext *pid_ctx, const PidCfg *pid_cfg);
116 #endif /* ALGO_PID_CONTROL_H */