mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 12:55:19 +03:00
Rearrange PID array to be array of PIDs
This commit is contained in:
parent
a50192f71c
commit
71546410de
21 changed files with 224 additions and 236 deletions
|
@ -325,9 +325,9 @@ void showProfilePage(void)
|
|||
for (int axis = 0; axis < 3; ++axis) {
|
||||
tfp_sprintf(lineBuffer, "%s P:%3d I:%3d D:%3d",
|
||||
axisTitles[axis],
|
||||
pidProfile->P8[axis],
|
||||
pidProfile->I8[axis],
|
||||
pidProfile->D8[axis]
|
||||
pidProfile->pid[axis].P,
|
||||
pidProfile->pid[axis].I,
|
||||
pidProfile->pid[axis].D
|
||||
);
|
||||
padLineBuffer();
|
||||
i2c_OLED_set_line(rowIndex++);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue