Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
07d1d78a
Commit
07d1d78a
authored
8 years ago
by
Sebastian Verling
Committed by
Lorenz Meier
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
driver starting correctly
parent
34150ba6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/drivers/gps/gps.cpp
+23
-10
23 additions, 10 deletions
src/drivers/gps/gps.cpp
with
23 additions
and
10 deletions
src/drivers/gps/gps.cpp
+
23
−
10
View file @
07d1d78a
...
...
@@ -146,7 +146,7 @@ private:
/**
* Trampoline to the worker task
*/
static
void
task_main_trampoline
(
void
*
arg
);
static
void
task_main_trampoline
(
int
argc
,
char
*
arg
v
[]
);
/**
* Worker task: main GPS thread that configures the GPS and parses incoming data, always running
...
...
@@ -214,7 +214,7 @@ extern "C" __EXPORT int gps_main(int argc, char *argv[]);
namespace
{
GPS
*
g_dev
=
nullptr
;
GPS
*
g_dev
[
2
]
=
{
nullptr
,
nullptr
}
;
}
...
...
@@ -242,7 +242,7 @@ GPS::GPS(const char *uart_path, bool fake_gps, bool enable_sat_info, int gps_num
_port
[
sizeof
(
_port
)
-
1
]
=
'\0'
;
/* we need this potentially before it could be set in task_main */
g_dev
=
this
;
g_dev
[
gps_num
-
1
]
=
this
;
memset
(
&
_report_gps_pos
,
0
,
sizeof
(
_report_gps_pos
));
/* create satellite info data object if requested */
...
...
@@ -277,17 +277,23 @@ GPS::~GPS()
delete
(
_sat_info
);
}
g_dev
=
nullptr
;
orb_unadvertise
(
_report_gps_pos_pub
);
g_dev
[
_gps_num
-
1
]
=
nullptr
;
}
int
GPS
::
init
()
{
char
gps_num
;
sprintf
(
&
gps_num
,
"%d"
,
_gps_num
);
static
char
*
gps_num_ptr
;
gps_num_ptr
=
&
gps_num
;
/* start the GPS driver worker task */
_task
=
px4_task_spawn_cmd
(
"gps"
,
SCHED_DEFAULT
,
SCHED_PRIORITY_SLOW_DRIVER
,
1200
,
(
px4_main_t
)
&
GPS
::
task_main_trampoline
,
null
ptr
);
SCHED_PRIORITY_SLOW_DRIVER
,
1200
,
(
px4_main_t
)
&
GPS
::
task_main_trampoline
,
&
gps_num_
ptr
);
if
(
_task
<
0
)
{
PX4_WARN
(
"task start failed: %d"
,
errno
);
...
...
@@ -297,9 +303,13 @@ int GPS::init()
return
OK
;
}
void
GPS
::
task_main_trampoline
(
void
*
arg
)
void
GPS
::
task_main_trampoline
(
int
argc
,
char
*
arg
v
[]
)
{
g_dev
->
task_main
();
warnx
(
"arg = %i %c %i"
,
argc
,
*
argv
[
0
],
*
argv
[
0
]);
if
(
!
strcmp
(
argv
[
1
],
"1"
))
g_dev
[
0
]
->
task_main
();
else
if
(
!
strcmp
(
argv
[
1
],
"2"
))
g_dev
[
1
]
->
task_main
();
}
int
GPS
::
callback
(
GPSCallbackType
type
,
void
*
data1
,
int
data2
,
void
*
user
)
...
...
@@ -730,6 +740,8 @@ GPS::task_main()
::
close
(
_serial_fd
);
orb_unadvertise
(
_report_gps_pos_pub
);
/* tell the dtor that we are exiting */
_task
=
-
1
;
px4_task_exit
(
0
);
...
...
@@ -832,6 +844,7 @@ start(const char *uart_path, bool fake_gps, bool enable_sat_info, int gps_num)
if
(
gps_num
==
1
)
{
if
(
g_dev
!=
nullptr
)
{
PX4_WARN
(
"GPS 1 already started"
);
return
;
}
/* create the driver */
...
...
@@ -844,13 +857,13 @@ start(const char *uart_path, bool fake_gps, bool enable_sat_info, int gps_num)
if
(
OK
!=
g_dev
->
init
())
{
goto
fail1
;
}
return
;
}
else
{
if
(
gps_num
==
2
)
{
if
(
g_dev2
!=
nullptr
)
{
PX4_WARN
(
"GPS 2 already started"
);
return
;
}
/* create the driver */
...
...
@@ -863,8 +876,8 @@ start(const char *uart_path, bool fake_gps, bool enable_sat_info, int gps_num)
if
(
OK
!=
g_dev2
->
init
())
{
goto
fail2
;
}
return
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment