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
aefd217f
Commit
aefd217f
authored
8 years ago
by
Beat Küng
Browse files
Options
Downloads
Patches
Plain Diff
uorb subscription: remove _interval & use orb_get_interval() instead
parent
6b4c24fb
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/modules/uORB/Subscription.cpp
+5
-5
5 additions, 5 deletions
src/modules/uORB/Subscription.cpp
src/modules/uORB/Subscription.hpp
+9
-8
9 additions, 8 deletions
src/modules/uORB/Subscription.hpp
with
14 additions
and
13 deletions
src/modules/uORB/Subscription.cpp
+
5
−
5
View file @
aefd217f
...
...
@@ -84,7 +84,7 @@ SubscriptionBase::SubscriptionBase(const struct orb_metadata *meta,
_handle
=
orb_subscribe
(
getMeta
());
}
if
(
_handle
<
0
)
{
warnx
(
"sub failed"
);
}
if
(
_handle
<
0
)
{
PX4_ERR
(
"sub failed"
);
}
if
(
interval
>
0
)
{
orb_set_interval
(
getHandle
(),
interval
);
...
...
@@ -96,7 +96,7 @@ bool SubscriptionBase::updated()
bool
isUpdated
=
false
;
int
ret
=
orb_check
(
_handle
,
&
isUpdated
);
if
(
ret
!=
PX4_OK
)
{
warnx
(
"orb check failed"
);
}
if
(
ret
!=
PX4_OK
)
{
PX4_ERR
(
"orb check failed"
);
}
return
isUpdated
;
}
...
...
@@ -106,7 +106,7 @@ void SubscriptionBase::update(void *data)
if
(
updated
())
{
int
ret
=
orb_copy
(
_meta
,
_handle
,
data
);
if
(
ret
!=
PX4_OK
)
{
warnx
(
"orb copy failed"
);
}
if
(
ret
!=
PX4_OK
)
{
PX4_ERR
(
"orb copy failed"
);
}
}
}
...
...
@@ -114,7 +114,7 @@ SubscriptionBase::~SubscriptionBase()
{
int
ret
=
orb_unsubscribe
(
_handle
);
if
(
ret
!=
PX4_OK
)
{
warnx
(
"orb unsubscribe failed"
);
}
if
(
ret
!=
PX4_OK
)
{
PX4_ERR
(
"orb unsubscribe failed"
);
}
}
template
<
class
T
>
...
...
@@ -129,7 +129,7 @@ Subscription<T>::Subscription(const struct orb_metadata *meta,
template
<
class
T
>
Subscription
<
T
>::
Subscription
(
const
Subscription
&
other
)
:
SubscriptionNode
(
other
.
_meta
,
other
.
_i
nterval
,
other
.
_instance
,
nullptr
),
SubscriptionNode
(
other
.
_meta
,
other
.
getI
nterval
()
,
other
.
_instance
,
nullptr
),
_data
()
// initialize data structure to zero
{
}
...
...
This diff is collapsed.
Click to expand it.
src/modules/uORB/Subscription.hpp
+
9
−
8
View file @
aefd217f
...
...
@@ -86,7 +86,14 @@ public:
// accessors
const
struct
orb_metadata
*
getMeta
()
{
return
_meta
;
}
int
getHandle
()
{
return
_handle
;
}
int
getHandle
()
const
{
return
_handle
;
}
unsigned
getInterval
()
const
{
unsigned
int
interval
;
orb_get_interval
(
getHandle
(),
&
interval
);
return
interval
;
}
protected
:
// accessors
void
setHandle
(
int
handle
)
{
_handle
=
handle
;
}
...
...
@@ -130,8 +137,7 @@ public:
unsigned
interval
=
0
,
int
instance
=
0
,
List
<
SubscriptionNode
*>
*
list
=
nullptr
)
:
SubscriptionBase
(
meta
,
interval
,
instance
),
_interval
(
interval
)
SubscriptionBase
(
meta
,
interval
,
instance
)
{
if
(
list
!=
nullptr
)
{
list
->
add
(
this
);
}
}
...
...
@@ -141,11 +147,6 @@ public:
* updates, a child class must implement it.
*/
virtual
void
update
()
=
0
;
// accessors
unsigned
getInterval
()
{
return
_interval
;
}
protected
:
// attributes
unsigned
_interval
;
};
...
...
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