mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 14:25:20 +03:00
Preparation for conversion to parameter groups 13
This commit is contained in:
parent
e74c7b8c93
commit
3275105127
20 changed files with 156 additions and 152 deletions
|
@ -379,7 +379,7 @@ void init(void)
|
|||
|
||||
#ifdef USE_DASHBOARD
|
||||
if (feature(FEATURE_DASHBOARD)) {
|
||||
dashboardInit(rxConfig());
|
||||
dashboardInit();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -450,14 +450,8 @@ void init(void)
|
|||
|
||||
#ifdef GPS
|
||||
if (feature(FEATURE_GPS)) {
|
||||
gpsInit(
|
||||
serialConfig(),
|
||||
gpsConfig()
|
||||
);
|
||||
navigationInit(
|
||||
gpsProfile(),
|
||||
¤tProfile->pidProfile
|
||||
);
|
||||
gpsInit();
|
||||
navigationInit(¤tProfile->pidProfile);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue