Fix an architectural issue with the ORB that prevented publication from interrupt context.

ORB topic advertisements are now global handles that can be used in any context.  It is still possible to open a topic node as a publisher, but it's not the default.  As a consequence, the type of the handle returned from orb_advertise has changed; all other API remains the same.
This commit is contained in:
px4dev
2012-08-21 23:44:22 -07:00
parent 8c22e2a092
commit 88f0080a0f
21 changed files with 110 additions and 67 deletions
+2 -2
View File
@@ -181,12 +181,12 @@ private:
struct accel_report _accel_report;
struct accel_scale _accel_scale;
float _accel_range_scale;
int _accel_topic;
orb_advert_t _accel_topic;
struct gyro_report _gyro_report;
struct gyro_scale _gyro_scale;
float _gyro_range_scale;
int _gyro_topic;
orb_advert_t _gyro_topic;
unsigned _reads;
perf_counter_t _sample_perf;