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
a495e344
Commit
a495e344
authored
9 years ago
by
Mark Charlebois
Committed by
Julian Oes
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Resolved missing symbols for qurt build
Signed-off-by:
Mark Charlebois
<
charlebm@gmail.com
>
parent
b9fb4c48
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/platforms/posix/px4_layer/px4_posix_impl.cpp
+2
-9
2 additions, 9 deletions
src/platforms/posix/px4_layer/px4_posix_impl.cpp
src/platforms/qurt/px4_layer/px4_qurt_impl.cpp
+3
-6
3 additions, 6 deletions
src/platforms/qurt/px4_layer/px4_qurt_impl.cpp
with
5 additions
and
15 deletions
src/platforms/posix/px4_layer/px4_posix_impl.cpp
+
2
−
9
View file @
a495e344
...
...
@@ -62,12 +62,6 @@ long PX4_TICKS_PER_SEC = sysconf(_SC_CLK_TCK);
extern
void
init_params
(
void
);
#endif
#ifdef ENABLE_SHMEM
extern
void
init_own_params
(
void
);
extern
unsigned
int
init_other_params
(
void
);
extern
unsigned
int
param_sync_done
;
#endif
__END_DECLS
namespace
px4
...
...
@@ -84,9 +78,8 @@ void init_once(void)
hrt_init
();
#ifdef ENABLE_SHMEM
PX4_INFO
(
"Starting shared memory param sync
\n
"
);
init_own_params
();
param_sync_done
=
init_other_params
();
PX4_INFO
(
"Syncing params to shared memory
\n
"
);
init_params
();
#endif
}
...
...
This diff is collapsed.
Click to expand it.
src/platforms/qurt/px4_layer/px4_qurt_impl.cpp
+
3
−
6
View file @
a495e344
...
...
@@ -71,9 +71,7 @@ unsigned int sleep(unsigned int sec)
}
extern
void
hrt_init
(
void
);
extern
void
init_own_params
();
extern
unsigned
int
init_other_params
();
extern
unsigned
int
param_sync_done
;
extern
void
init_params
();
#if 0
void qurt_log(const char *fmt, ...)
...
...
@@ -112,9 +110,8 @@ void init_once(void)
hrt_init
();
PX4_WARN
(
"after calling hrt_init"
);
/*Shared memory param sync*/
init_own_params
();
param_sync_done
=
init_other_params
();
/* Shared memory param sync*/
init_params
();
}
void
init
(
int
argc
,
char
*
argv
[],
const
char
*
app_name
)
...
...
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