mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-27 07:10:34 +08:00
rename map_projection_inited to map_projection_initialized
This commit is contained in:
+3
-3
@@ -57,7 +57,7 @@
|
||||
|
||||
static struct map_projection_reference_s mp_ref;
|
||||
|
||||
__EXPORT bool map_projection_inited()
|
||||
__EXPORT bool map_projection_initialized()
|
||||
{
|
||||
return mp_ref.init_done;
|
||||
}
|
||||
@@ -81,7 +81,7 @@ __EXPORT void map_projection_init(double lat_0, double lon_0) //lat_0, lon_0 are
|
||||
|
||||
__EXPORT bool map_projection_project(double lat, double lon, float *x, float *y)
|
||||
{
|
||||
if (!map_projection_inited()) {
|
||||
if (!map_projection_initialized()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -103,7 +103,7 @@ __EXPORT bool map_projection_project(double lat, double lon, float *x, float *y)
|
||||
|
||||
__EXPORT bool map_projection_reproject(float x, float y, double *lat, double *lon)
|
||||
{
|
||||
if (!map_projection_inited()) {
|
||||
if (!map_projection_initialized()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -79,7 +79,7 @@ struct map_projection_reference_s {
|
||||
* Initializes the map transformation.
|
||||
* @return true if map_projection_init was called before, false else
|
||||
*/
|
||||
__EXPORT bool map_projection_inited();
|
||||
__EXPORT bool map_projection_initialized();
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -549,7 +549,7 @@ int position_estimator_inav_thread_main(int argc, char *argv[])
|
||||
if (updated) {
|
||||
orb_copy(ORB_ID(home_position), home_position_sub, &home);
|
||||
|
||||
if (home.timestamp != home_timestamp && map_projection_inited()) {
|
||||
if (home.timestamp != home_timestamp && map_projection_initialized()) {
|
||||
home_timestamp = home.timestamp;
|
||||
|
||||
double est_lat, est_lon;
|
||||
@@ -602,7 +602,7 @@ int position_estimator_inav_thread_main(int argc, char *argv[])
|
||||
}
|
||||
}
|
||||
|
||||
if (gps_valid && map_projection_inited()) {
|
||||
if (gps_valid && map_projection_initialized()) {
|
||||
double lat = gps.lat * 1e-7;
|
||||
double lon = gps.lon * 1e-7;
|
||||
float alt = gps.alt * 1e-3;
|
||||
|
||||
Reference in New Issue
Block a user