aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Modules/Control/PIDAlgo.h
blob: 03c36313189b62dcadfe6d3dbf54d94863a24ab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MODULES_PIDALGO_H_
#define MODULES_PIDALGO_H_
#include <stdint.h>

typedef struct
{
    float epsilon;
    float dt;
    float MAX;
    float MIN;
    float Kp;
    float Kd;
    float Ki;
}PID_Config_Params;
float PIDAlgorithmCalculation(float _setPoint,float _mesuredParam , PID_Config_Params *params, float *_pre_error, float *_integral);

#endif /* MODULES_PIDALGO_H_ */
g System.Windows.Navigation; using System.Windows.Shapes; namespace Tango.MachineStudio.UsersAndRoles.Views { /// <summary> /// Interaction logic for UserView.xaml /// </summary> public partial class UserView : UserControl { public UserView() { InitializeComponent(); } } }