Basic_Frame_TypeC_2023_Omni
Loading...
Searching...
No Matches
feedforward.hpp
1/*******************************************************************************
2* @file : feedforward.h
3* @brief : Use feedforward control to improve accuracy of the response of the object
4* based on input value
5* @created time : Aug, 2023
6* @author : Haoran
7******************************************************************************
8* Copyright (c) 2023 UARM Artemis.
9* All rights reserved.
10*******************************************************************************/
11
12#ifndef __FEEDFORWARD_H__
13#define __FEEDFORWARD_H__
14
15#include "control_types.hpp"
16
17/* functions declaration here */
18void ff_param_init(FeedForward_t* ff, float kf);
19float feedforward(FeedForward_t* ff, float input);
20
21#endif /*__FEEDFORWARD_H__*/
Feed-forward control structure.
Definition control_types.hpp:14