Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OwnTech
Power API
OPALIB PID Voltage mode
Commits
93f11e79
Commit
93f11e79
authored
Jun 09, 2021
by
Clément Foucher
Committed by
Clément Foucher
Jun 11, 2021
Browse files
Corrected header parameters.
parent
eade9bb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/pid.h
View file @
93f11e79
...
...
@@ -35,13 +35,13 @@ extern "C" {
* @brief This function Initialize all the parameters
* needed for the PID calculation for the buck topoligy
*/
void
pid_init_buck
(
float32_t
K
p
,
float32_t
K
i
,
float32_t
K
d
);
void
pid_init_buck
(
float32_t
vref
,
float32_t
k
p
,
float32_t
k
i
,
float32_t
k
d
);
/**
* @brief This function Initialize all the parameters
* needed for the PID calculation for the buck topoligy
*/
void
pid_init_boost
(
float32_t
K
p
,
float32_t
K
i
,
float32_t
K
d
);
void
pid_init_boost
(
float32_t
vref
,
float32_t
k
p
,
float32_t
k
i
,
float32_t
k
d
);
/**
* @brief This function calculation of the PID for the chosen
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment