Browse Source

Merge branch 'master' into seatbelt_multirotor

sbg
Anton Babushkin 12 years ago
parent
commit
95d324f061
  1. 25
      src/drivers/ets_airspeed/ets_airspeed.cpp
  2. 13
      src/drivers/hott_telemetry/messages.c
  3. 2
      src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp
  4. 19
      src/modules/sdlog2/sdlog2.c
  5. 9
      src/modules/sdlog2/sdlog2_messages.h

25
src/drivers/ets_airspeed/ets_airspeed.cpp

@ -230,6 +230,7 @@ ETSAirspeed::init() @@ -230,6 +230,7 @@ ETSAirspeed::init()
/* allocate basic report buffers */
_num_reports = 2;
_reports = new struct differential_pressure_s[_num_reports];
for (unsigned i = 0; i < _num_reports; i++)
_reports[i].max_differential_pressure_pa = 0;
@ -432,12 +433,12 @@ ETSAirspeed::measure() @@ -432,12 +433,12 @@ ETSAirspeed::measure()
uint8_t cmd = READ_CMD;
ret = transfer(&cmd, 1, nullptr, 0);
if (OK != ret)
{
if (OK != ret) {
perf_count(_comms_errors);
log("i2c::transfer returned %d", ret);
return ret;
}
ret = OK;
return ret;
@ -466,6 +467,7 @@ ETSAirspeed::collect() @@ -466,6 +467,7 @@ ETSAirspeed::collect()
if (diff_pres_pa < _diff_pres_offset + MIN_ACCURATE_DIFF_PRES_PA) {
diff_pres_pa = 0;
} else {
diff_pres_pa -= _diff_pres_offset;
}
@ -517,11 +519,13 @@ ETSAirspeed::start() @@ -517,11 +519,13 @@ ETSAirspeed::start()
true,
true,
true,
SUBSYSTEM_TYPE_DIFFPRESSURE};
SUBSYSTEM_TYPE_DIFFPRESSURE
};
static orb_advert_t pub = -1;
if (pub > 0) {
orb_publish(ORB_ID(subsystem_info), pub, &info);
} else {
pub = orb_advertise(ORB_ID(subsystem_info), &info);
}
@ -653,8 +657,7 @@ start(int i2c_bus) @@ -653,8 +657,7 @@ start(int i2c_bus)
fail:
if (g_dev != nullptr)
{
if (g_dev != nullptr) {
delete g_dev;
g_dev = nullptr;
}
@ -668,15 +671,14 @@ fail: @@ -668,15 +671,14 @@ fail:
void
stop()
{
if (g_dev != nullptr)
{
if (g_dev != nullptr) {
delete g_dev;
g_dev = nullptr;
}
else
{
} else {
errx(1, "driver not running");
}
exit(0);
}
@ -776,7 +778,7 @@ info() @@ -776,7 +778,7 @@ info()
static void
ets_airspeed_usage()
{
fprintf(stderr, "usage: ets_airspeed [options] command\n");
fprintf(stderr, "usage: ets_airspeed command [options]\n");
fprintf(stderr, "options:\n");
fprintf(stderr, "\t-b --bus i2cbus (%d)\n", PX4_I2C_BUS_DEFAULT);
fprintf(stderr, "command:\n");
@ -789,6 +791,7 @@ ets_airspeed_main(int argc, char *argv[]) @@ -789,6 +791,7 @@ ets_airspeed_main(int argc, char *argv[])
int i2c_bus = PX4_I2C_BUS_DEFAULT;
int i;
for (i = 1; i < argc; i++) {
if (strcmp(argv[i], "-b") == 0 || strcmp(argv[i], "--bus") == 0) {
if (argc > i + 1) {

13
src/drivers/hott_telemetry/messages.c

@ -44,6 +44,7 @@ @@ -44,6 +44,7 @@
#include <string.h>
#include <systemlib/geo/geo.h>
#include <unistd.h>
#include <uORB/topics/airspeed.h>
#include <uORB/topics/battery_status.h>
#include <uORB/topics/home_position.h>
#include <uORB/topics/sensor_combined.h>
@ -56,6 +57,7 @@ static int battery_sub = -1; @@ -56,6 +57,7 @@ static int battery_sub = -1;
static int gps_sub = -1;
static int home_sub = -1;
static int sensor_sub = -1;
static int airspeed_sub = -1;
static bool home_position_set = false;
static double home_lat = 0.0d;
@ -68,6 +70,7 @@ messages_init(void) @@ -68,6 +70,7 @@ messages_init(void)
gps_sub = orb_subscribe(ORB_ID(vehicle_gps_position));
home_sub = orb_subscribe(ORB_ID(home_position));
sensor_sub = orb_subscribe(ORB_ID(sensor_combined));
airspeed_sub = orb_subscribe(ORB_ID(airspeed));
}
void
@ -100,6 +103,16 @@ build_eam_response(uint8_t *buffer, size_t *size) @@ -100,6 +103,16 @@ build_eam_response(uint8_t *buffer, size_t *size)
msg.altitude_L = (uint8_t)alt & 0xff;
msg.altitude_H = (uint8_t)(alt >> 8) & 0xff;
/* get a local copy of the airspeed data */
struct airspeed_s airspeed;
memset(&airspeed, 0, sizeof(airspeed));
orb_copy(ORB_ID(airspeed), airspeed_sub, &airspeed);
uint16_t speed = (uint16_t)(airspeed.indicated_airspeed_m_s);
msg.speed_L = (uint8_t)speed & 0xff;
msg.speed_H = (uint8_t)(speed >> 8) & 0xff;
msg.stop = STOP_BYTE;
memcpy(buffer, &msg, *size);
}

2
src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp

@ -126,7 +126,7 @@ int attitude_estimator_ekf_main(int argc, char *argv[]) @@ -126,7 +126,7 @@ int attitude_estimator_ekf_main(int argc, char *argv[])
attitude_estimator_ekf_task = task_spawn("attitude_estimator_ekf",
SCHED_DEFAULT,
SCHED_PRIORITY_MAX - 5,
12400,
14000,
attitude_estimator_ekf_thread_main,
(argv) ? (const char **)&argv[2] : (const char **)NULL);
exit(0);

19
src/modules/sdlog2/sdlog2.c

@ -241,7 +241,7 @@ int sdlog2_main(int argc, char *argv[]) @@ -241,7 +241,7 @@ int sdlog2_main(int argc, char *argv[])
deamon_task = task_spawn("sdlog2",
SCHED_DEFAULT,
SCHED_PRIORITY_DEFAULT - 30,
2048,
3000,
sdlog2_thread_main,
(const char **)argv);
exit(0);
@ -661,6 +661,7 @@ int sdlog2_thread_main(int argc, char *argv[]) @@ -661,6 +661,7 @@ int sdlog2_thread_main(int argc, char *argv[])
int vicon_pos_sub;
int flow_sub;
int rc_sub;
int airspeed_sub;
} subs;
/* log message buffer: header + body */
@ -681,6 +682,7 @@ int sdlog2_thread_main(int argc, char *argv[]) @@ -681,6 +682,7 @@ int sdlog2_thread_main(int argc, char *argv[])
struct log_RC_s log_RC;
struct log_OUT0_s log_OUT0;
struct log_ARSP_s log_ARSP;
struct log_AIRS_s log_AIRS;
} body;
} log_msg = {
LOG_PACKET_HEADER_INIT(0)
@ -784,6 +786,12 @@ int sdlog2_thread_main(int argc, char *argv[]) @@ -784,6 +786,12 @@ int sdlog2_thread_main(int argc, char *argv[])
fds[fdsc_count].events = POLLIN;
fdsc_count++;
/* --- AIRSPEED --- */
subs.airspeed_sub = orb_subscribe(ORB_ID(airspeed));
fds[fdsc_count].fd = subs.airspeed_sub;
fds[fdsc_count].events = POLLIN;
fdsc_count++;
/* WARNING: If you get the error message below,
* then the number of registered messages (fdsc)
* differs from the number of messages in the above list.
@ -1069,6 +1077,15 @@ int sdlog2_thread_main(int argc, char *argv[]) @@ -1069,6 +1077,15 @@ int sdlog2_thread_main(int argc, char *argv[])
LOGBUFFER_WRITE_AND_COUNT(RC);
}
/* --- AIRSPEED --- */
if (fds[ifds++].revents & POLLIN) {
orb_copy(ORB_ID(airspeed), subs.airspeed_sub, &buf.airspeed);
log_msg.msg_type = LOG_AIRS_MSG;
log_msg.body.log_AIRS.indicated_airspeed = buf.airspeed.indicated_airspeed_m_s;
log_msg.body.log_AIRS.true_airspeed = buf.airspeed.true_airspeed_m_s;
LOGBUFFER_WRITE_AND_COUNT(AIRS);
}
/* signal the other thread new data, but not yet unlock */
if (logbuffer_count(&lb) > MIN_BYTES_TO_WRITE) {
#ifdef SDLOG2_DEBUG

9
src/modules/sdlog2/sdlog2_messages.h

@ -178,6 +178,13 @@ struct log_ARSP_s { @@ -178,6 +178,13 @@ struct log_ARSP_s {
float pitch_rate_sp;
float yaw_rate_sp;
};
/* --- AIRS - AIRSPEED --- */
#define LOG_AIRS_MSG 13
struct log_AIRS_s {
float indicated_airspeed;
float true_airspeed;
};
#pragma pack(pop)
/* construct list of all message formats */
@ -195,7 +202,7 @@ static const struct log_format_s log_formats[] = { @@ -195,7 +202,7 @@ static const struct log_format_s log_formats[] = {
LOG_FORMAT(STAT, "BBBBBfffB", "State,FlightMode,CtlMode,SASMode,Armed,BatV,BatC,BatRem,BatWarn"),
LOG_FORMAT(RC, "ffffffff", "Ch0,Ch1,Ch2,Ch3,Ch4,Ch5,Ch6,Ch7"),
LOG_FORMAT(OUT0, "ffffffff", "Out0,Out1,Out2,Out3,Out4,Out5,Out6,Out7"),
LOG_FORMAT(ARSP, "fff", "RollRateSP,PitchRateSP,YawRateSP"),
LOG_FORMAT(AIRS, "ff", "IndSpeed,TrueSpeed"),
};
static const int log_formats_num = sizeof(log_formats) / sizeof(struct log_format_s);

Loading…
Cancel
Save