mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 14:25:20 +03:00
remove const from reset_conf( since it allready is defined in the marko
This commit is contained in:
parent
6ed62b5761
commit
c549b91b5e
3 changed files with 3 additions and 3 deletions
|
@ -77,7 +77,7 @@ PG_REGISTER_ARRAY_WITH_RESET_FN(pidProfile_t, MAX_PROFILE_COUNT, pidProfiles, PG
|
|||
|
||||
void resetPidProfile(pidProfile_t *pidProfile)
|
||||
{
|
||||
RESET_CONFIG(const pidProfile_t, pidProfile,
|
||||
RESET_CONFIG(pidProfile_t, pidProfile,
|
||||
.pid = {
|
||||
[PID_ROLL] = { 40, 40, 30 },
|
||||
[PID_PITCH] = { 58, 50, 35 },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue