uorb:Adapt to new macro definition content.
Signed-off-by: likun17 <likun17@xiaomi.com>
This commit is contained in:
parent
dae4d7572f
commit
d0e15a7450
@ -29,23 +29,14 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_accel_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_accel *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
static const char sensor_accel_format[] =
|
||||
"timestamp:%" PRIu64 ",x:%hf,y:%hf,z:%hf,temperature:%hf";
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"temperature: %.2f x: %.2f y: %.2f z: %.2f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->temperature, message->x, message->y, message->z);
|
||||
}
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_accel, struct sensor_accel, print_sensor_accel_message);
|
||||
ORB_DEFINE(sensor_accel_uncal, struct sensor_accel,
|
||||
print_sensor_accel_message);
|
||||
ORB_DEFINE(sensor_accel, struct sensor_accel, sensor_accel_format);
|
||||
ORB_DEFINE(sensor_accel_uncal, struct sensor_accel, sensor_accel_format);
|
||||
|
@ -29,21 +29,12 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_baro_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_baro *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"temperature: %.2f pressure: %.2f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->temperature, message->pressure);
|
||||
}
|
||||
static const char sensor_baro_format[] =
|
||||
"timestamp:%" PRIu64 ",pressure:%hf,temperature:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_baro, struct sensor_baro, print_sensor_baro_message);
|
||||
ORB_DEFINE(sensor_baro, struct sensor_baro, sensor_baro_format);
|
||||
|
@ -29,23 +29,13 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_cap_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_cap *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"status: %" PRIu32 " rawdata0: %" PRIu32 " rawdata1: "
|
||||
"%" PRIu32 " rawdata2: %" PRIu32 " rawdata3: %" PRIu32 "",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->status, message->rawdata[0], message->rawdata[1],
|
||||
message->rawdata[2], message->rawdata[3]);
|
||||
}
|
||||
static const char sensor_cap_format[] =
|
||||
"timestamp:%" PRIu64 ",status:%" PRIu32 ",rawdata0:%" PRIu32 ","
|
||||
"rawdata1:%" PRIu32 ",rawdata2:%" PRIu32 ",rawdata3:%" PRIu32 "";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_cap, struct sensor_cap, print_sensor_cap_message);
|
||||
ORB_DEFINE(sensor_cap, struct sensor_cap, sensor_cap_format);
|
||||
|
@ -29,20 +29,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_co2_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_co2 *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) co2: %.2f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->co2);
|
||||
}
|
||||
static const char sensor_co2_format[] = "timestamp:%" PRIu64 ",co2:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_co2, struct sensor_co2, print_sensor_co2_message);
|
||||
ORB_DEFINE(sensor_co2, struct sensor_co2, sensor_co2_format);
|
||||
|
@ -29,20 +29,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_dust_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_dust *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) dust: %.2f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->dust);
|
||||
}
|
||||
static const char sensor_dust_format[] = "timestamp:%" PRIu64 ",dust:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_dust, struct sensor_dust, print_sensor_dust_message);
|
||||
ORB_DEFINE(sensor_dust, struct sensor_dust, sensor_dust_format);
|
||||
|
@ -29,21 +29,12 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_ecg_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_ecg *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) ecg: %.4f "
|
||||
"status:0x%" PRIx32 "",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->ecg, message->status);
|
||||
}
|
||||
static const char sensor_ecg_format[] =
|
||||
"timestamp:%" PRIu64 ",ecg:%hf,status:%" PRIx32 "";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_ecg, struct sensor_ecg, print_sensor_ecg_message);
|
||||
ORB_DEFINE(sensor_ecg, struct sensor_ecg, sensor_ecg_format);
|
||||
|
@ -29,21 +29,12 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_force_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_force *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"value: %.2f event: %" PRIi32 "",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->force, message->event);
|
||||
}
|
||||
static const char sensor_force_format[] =
|
||||
"timestamp:%" PRIu64 ",force:%hf,event:%" PRIi32 "";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_force, struct sensor_force, print_sensor_force_message);
|
||||
ORB_DEFINE(sensor_force, struct sensor_force, sensor_force_format);
|
||||
|
@ -29,17 +29,8 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void
|
||||
print_sensor_wake_gesture_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_wake_gesture *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago)"
|
||||
" event: %" PRIu32 "", meta->o_name, message->timestamp,
|
||||
now - message->timestamp, message->event);
|
||||
}
|
||||
static const char sensor_wake_gesture_format[] =
|
||||
"timestamp:%" PRIu64 ",event:%" PRIu32 "";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
@ -47,6 +38,6 @@ print_sensor_wake_gesture_message(FAR const struct orb_metadata *meta,
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_wake_gesture, struct sensor_wake_gesture,
|
||||
print_sensor_wake_gesture_message);
|
||||
sensor_wake_gesture_format);
|
||||
ORB_DEFINE(sensor_wake_gesture_uncal, struct sensor_wake_gesture,
|
||||
print_sensor_wake_gesture_message);
|
||||
sensor_wake_gesture_format);
|
||||
|
@ -29,54 +29,25 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_gps_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_gps *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
static const char sensor_gps_format[] =
|
||||
"timestamp:%" PRIu64 ",time_utc:%" PRIu64 ",latitude:%hf,longitude:%hf,"
|
||||
"altitude:%hf,altitude_ellipsoid:%hf,eph:%hf,epv:%hf,hdop:%hf,pdop:%hf,"
|
||||
"vdop:%hf,ground_speed:%hf,course:%hf,satellites_used:%" PRIu32 "";
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"time_utc: %" PRIu64 " latitude: %.4f longitude: %.4f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->time_utc, message->latitude, message->longitude);
|
||||
|
||||
uorbinfo_raw("%s:\taltitude: %.4f altitude_ellipsoid: %.4f "
|
||||
"ground_speed: %.4f course: %.4f",
|
||||
meta->o_name, message->altitude, message->altitude_ellipsoid,
|
||||
message->ground_speed, message->course);
|
||||
|
||||
uorbinfo_raw("%s:\teph: %.4f epv: %.4f hdop: %.4f vdop: %.4f",
|
||||
meta->o_name, message->eph, message->epv,
|
||||
message->hdop, message->vdop);
|
||||
}
|
||||
|
||||
static void
|
||||
print_sensor_gps_satellite_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_gps_satellite *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
int i;
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago)",
|
||||
meta->o_name, message->timestamp, now - message->timestamp);
|
||||
|
||||
for (i = 0; i < message->count; i++)
|
||||
{
|
||||
uorbinfo_raw("%s:\tnumber:%d svid: %" PRIu32
|
||||
" elevation: %" PRIu32 " azimuth: %" PRIu32
|
||||
" snr: %" PRIu32 "",
|
||||
meta->o_name, i, message->info[i].svid,
|
||||
message->info[i].elevation, message->info[i].azimuth,
|
||||
message->info[i].snr);
|
||||
}
|
||||
}
|
||||
static const char sensor_gps_satellite_format[] =
|
||||
"timestamp:%" PRIu64 ",count:%" PRIu32 ",satellites:%" PRIu32 ","
|
||||
"svid0:%" PRIu32 ",elevation0:%" PRIu32 ",azimuth0:%" PRIu32 ","
|
||||
"snr0:%" PRIu32 ",svid1:%" PRIu32 ",elevation1:%" PRIu32 ","
|
||||
"azimuth1:%" PRIu32 ",snr1:%" PRIu32 ",svid2:%" PRIu32 ","
|
||||
"elevation2:%" PRIu32 ",azimuth2:%" PRIu32 ",snr2:%" PRIu32 ","
|
||||
"svid3:%" PRIu32 ",elevation3:%" PRIu32 ",azimuth3:%" PRIu32 ","
|
||||
"snr3:%" PRIu32 "";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_gps, struct sensor_gps, print_sensor_gps_message);
|
||||
ORB_DEFINE(sensor_gps, struct sensor_gps, sensor_gps_format);
|
||||
ORB_DEFINE(sensor_gps_satellite, struct sensor_gps_satellite,
|
||||
print_sensor_gps_satellite_message);
|
||||
sensor_gps_satellite_format);
|
||||
|
@ -29,23 +29,13 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_gyro_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_gyro *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"temperature: %.2f x: %.2f y: %.2f z: %.2f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->temperature, message->x, message->y, message->z);
|
||||
}
|
||||
static const char sensor_gyro_format[] =
|
||||
"timestamp:%" PRIu64 ",x:%hf,y:%hf,z:%hf,temperature:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_gyro, struct sensor_gyro, print_sensor_gyro_message);
|
||||
ORB_DEFINE(sensor_gyro_uncal, struct sensor_gyro,
|
||||
print_sensor_gyro_message);
|
||||
ORB_DEFINE(sensor_gyro, struct sensor_gyro, sensor_gyro_format);
|
||||
ORB_DEFINE(sensor_gyro_uncal, struct sensor_gyro, sensor_gyro_format);
|
||||
|
@ -29,21 +29,12 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_hall_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_hall *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"hall: %" PRIi32 "",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->hall);
|
||||
}
|
||||
static const char sensor_hall_format[] =
|
||||
"timestamp:%" PRIu64 ",hall:%" PRIi32 "";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_hall, struct sensor_hall, print_sensor_hall_message);
|
||||
ORB_DEFINE(sensor_hall, struct sensor_hall, sensor_hall_format);
|
||||
|
@ -29,20 +29,12 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_hbeat_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_hbeat *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"heart beat: %.4f", meta->o_name, message->timestamp,
|
||||
now - message->timestamp, message->beat);
|
||||
}
|
||||
static const char sensor_hbeat_format[] =
|
||||
"timestamp:%" PRIu64 ",heart beat:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_hbeat, struct sensor_hbeat, print_sensor_hbeat_message);
|
||||
ORB_DEFINE(sensor_hbeat, struct sensor_hbeat, sensor_hbeat_format);
|
||||
|
@ -29,20 +29,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_hcho_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_hcho *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) hcho: %.4f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->hcho);
|
||||
}
|
||||
static const char sensor_hcho_format[] = "timestamp:%" PRIu64 ",hcho:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_hcho, struct sensor_hcho, print_sensor_hcho_message);
|
||||
ORB_DEFINE(sensor_hcho, struct sensor_hcho, sensor_hcho_format);
|
||||
|
@ -29,20 +29,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_hrate_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_hrate *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"heart rate: %.4f", meta->o_name, message->timestamp,
|
||||
now - message->timestamp, message->bpm);
|
||||
}
|
||||
static const char sensor_hrate_format[] = "timestamp:%" PRIu64 ",bpm:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_hrate, struct sensor_hrate, print_sensor_hrate_message);
|
||||
ORB_DEFINE(sensor_hrate, struct sensor_hrate, sensor_hrate_format);
|
||||
|
@ -29,20 +29,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_humi_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_humi *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) humi: %.4f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->humidity);
|
||||
}
|
||||
static const char sensor_humi_format[] = "timestamp:%" PRIu64 ",humi:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_humi, struct sensor_humi, print_sensor_humi_message);
|
||||
ORB_DEFINE(sensor_humi, struct sensor_humi, sensor_humi_format);
|
||||
|
@ -29,21 +29,12 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_impd_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_impd *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"real: %.2f imaginary: %.2f", meta->o_name,
|
||||
message->timestamp, now - message->timestamp,
|
||||
message->real, message->imag);
|
||||
}
|
||||
static const char sensor_impd_format[] =
|
||||
"timestamp:%" PRIu64 ",real:%hf,imaginary:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_impd, struct sensor_impd, print_sensor_impd_message);
|
||||
ORB_DEFINE(sensor_impd, struct sensor_impd, sensor_impd_format);
|
||||
|
@ -29,20 +29,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_ir_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_ir *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) ir: %.4f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->ir);
|
||||
}
|
||||
static const char sensor_ir_format[] = "timestamp:%" PRIu64 ",ir:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_ir, struct sensor_ir, print_sensor_ir_message);
|
||||
ORB_DEFINE(sensor_ir, struct sensor_ir, sensor_ir_format);
|
||||
|
@ -29,22 +29,13 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_light_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_light *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"light: %.2f ir: %.2f", meta->o_name, message->timestamp,
|
||||
now - message->timestamp, message->light, message->ir);
|
||||
}
|
||||
static const char sensor_light_format[] =
|
||||
"timestamp:%" PRIu64 ",light:%hf,ir:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_light, struct sensor_light, print_sensor_light_message);
|
||||
ORB_DEFINE(sensor_light_uncal, struct sensor_light,
|
||||
print_sensor_light_message);
|
||||
ORB_DEFINE(sensor_light, struct sensor_light, sensor_light_format);
|
||||
ORB_DEFINE(sensor_light_uncal, struct sensor_light, sensor_light_format);
|
||||
|
@ -29,23 +29,14 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_mag_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_mag *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"temperature: %.2f x: %.2f y: %.2f z: %.2f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->temperature, message->x, message->y, message->z);
|
||||
}
|
||||
static const char sensor_mag_format[] =
|
||||
"timestamp:%" PRIu64 ",x:%hf,y:%hf,z:%hf,temperature:%hf,"
|
||||
"status:%" PRId32 "";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_mag, struct sensor_mag, print_sensor_mag_message);
|
||||
ORB_DEFINE(sensor_mag_uncal, struct sensor_mag,
|
||||
print_sensor_mag_message);
|
||||
ORB_DEFINE(sensor_mag, struct sensor_mag, sensor_mag_format);
|
||||
ORB_DEFINE(sensor_mag_uncal, struct sensor_mag, sensor_mag_format);
|
||||
|
@ -29,20 +29,12 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_noise_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_noise *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"noise: %.4f", meta->o_name, message->timestamp,
|
||||
now - message->timestamp, message->db);
|
||||
}
|
||||
static const char sensor_noise_format[] =
|
||||
"timestamp:%" PRIu64 ",noise:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_noise, struct sensor_noise, print_sensor_noise_message);
|
||||
ORB_DEFINE(sensor_noise, struct sensor_noise, sensor_noise_format);
|
||||
|
@ -29,21 +29,12 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_ots_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_ots *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"x: % " PRIi32 " y: % " PRIi32 "",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->x, message->y);
|
||||
}
|
||||
static const char sensor_ots_format[] =
|
||||
"timestamp:%" PRIu64 ",x:%" PRIi32 ",y:%" PRIi32 "";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_ots, struct sensor_ots, print_sensor_ots_message);
|
||||
ORB_DEFINE(sensor_ots, struct sensor_ots, sensor_ots_format);
|
||||
|
@ -29,20 +29,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_ph_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_ph *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) ph: %.4f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->ph);
|
||||
}
|
||||
static const char sensor_ph_format[] = "timestamp:%" PRIu64 ",ph:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_ph, struct sensor_ph, print_sensor_ph_message);
|
||||
ORB_DEFINE(sensor_ph, struct sensor_ph, sensor_ph_format);
|
||||
|
@ -29,20 +29,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_pm10_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_pm10 *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) pm10: %.4f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->pm10);
|
||||
}
|
||||
static const char sensor_pm10_format[] = "timestamp:%" PRIu64 ",pm10:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_pm10, struct sensor_pm10, print_sensor_pm10_message);
|
||||
ORB_DEFINE(sensor_pm10, struct sensor_pm10, sensor_pm10_format);
|
||||
|
@ -29,20 +29,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_pm1p0_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_pm1p0 *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"pm1p0: %.4f", meta->o_name, message->timestamp,
|
||||
now - message->timestamp, message->pm1p0);
|
||||
}
|
||||
static const char sensor_pm1p0_format[] = "timestamp:%" PRIu64 ",pm1p0:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_pm1p0, struct sensor_pm1p0, print_sensor_pm1p0_message);
|
||||
ORB_DEFINE(sensor_pm1p0, struct sensor_pm1p0, sensor_pm1p0_format);
|
||||
|
@ -29,20 +29,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_pm25_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_pm25 *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) pm25: %.4f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->pm25);
|
||||
}
|
||||
static const char sensor_pm25_format[] = "timestamp:%" PRIu64 ",pm25:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_pm25, struct sensor_pm25, print_sensor_pm25_message);
|
||||
ORB_DEFINE(sensor_pm25, struct sensor_pm25, sensor_pm25_format);
|
||||
|
@ -29,23 +29,13 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_ppgd_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_ppgd *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"ppg1: %" PRIu32 " ppg2: %" PRIu32 " current: %" PRIu32 " "
|
||||
"gain1: %" PRIu16 " gain2: %" PRIu16 "",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->ppg[0], message->ppg[1], message->current,
|
||||
message->gain[0], message->gain[1]);
|
||||
}
|
||||
static const char sensor_ppgd_format[] =
|
||||
"timestamp:%" PRIu64 ",ppg0:%" PRIu32 ",ppg1:%" PRIu32 ","
|
||||
"current:%" PRIu32 ",gain0:%" PRIu16 ",gain1:%" PRIu16 "";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_ppgd, struct sensor_ppgd, print_sensor_ppgd_message);
|
||||
ORB_DEFINE(sensor_ppgd, struct sensor_ppgd, sensor_ppgd_format);
|
||||
|
@ -29,25 +29,14 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_ppgq_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_ppgq *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"ppg1: %" PRIu32 " ppg2: %" PRIu32 " ppg3: %" PRIu32 " "
|
||||
"ppg4: %" PRIu32 "current: %" PRIu32 " gain1: %" PRIu16 " "
|
||||
"gain2: %" PRIu16 " gain3: %" PRIu16 " gain4: %" PRIu16 "",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->ppg[0], message->ppg[1], message->ppg[2],
|
||||
message->ppg[3], message->current, message->gain[0],
|
||||
message->gain[1], message->gain[2], message->gain[3]);
|
||||
}
|
||||
static const char sensor_ppgq_format[] =
|
||||
"timestamp:%" PRIu64 ",ppg0:%" PRIu32 ",ppg1:%" PRIu32 ",ppg2:%" PRIu32 ","
|
||||
"ppg3:%" PRIu32 ",current:%" PRIu32 ",gain0:%" PRIu16 ",gain1:%" PRIu16 ","
|
||||
"gain2:%" PRIu16 ",gain3:%" PRIu16 "";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_ppgq, struct sensor_ppgq, print_sensor_ppgq_message);
|
||||
ORB_DEFINE(sensor_ppgq, struct sensor_ppgq, sensor_ppgq_format);
|
||||
|
@ -29,20 +29,12 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_prox_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_prox *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"proximity: %.4f", meta->o_name, message->timestamp,
|
||||
now - message->timestamp, message->proximity);
|
||||
}
|
||||
static const char sensor_prox_format[] =
|
||||
"timestamp:%" PRIu64 ",proximity:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_prox, struct sensor_prox, print_sensor_prox_message);
|
||||
ORB_DEFINE(sensor_prox, struct sensor_prox, sensor_prox_format);
|
||||
|
@ -29,20 +29,12 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_rgb_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_rgb *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) red: %.2f"
|
||||
" green: %.2f blue: %.2f\n", meta->o_name, message->timestamp,
|
||||
now - message->timestamp, message->r, message->g, message->b);
|
||||
}
|
||||
static const char sensor_rgb_format[] =
|
||||
"timestamp:%" PRIu64 ",r:%hf,g:%hf,b:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_rgb, struct sensor_rgb, print_sensor_rgb_message);
|
||||
ORB_DEFINE(sensor_rgb, struct sensor_rgb, sensor_rgb_format);
|
||||
|
@ -29,20 +29,12 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_temp_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_temp *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) "
|
||||
"temperature: %.4f", meta->o_name, message->timestamp,
|
||||
now - message->timestamp, message->temperature);
|
||||
}
|
||||
static const char sensor_temp_format[] =
|
||||
"timestamp:%" PRIu64 ",temperature:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_temp, struct sensor_temp, print_sensor_temp_message);
|
||||
ORB_DEFINE(sensor_temp, struct sensor_temp, sensor_temp_format);
|
||||
|
@ -29,20 +29,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_tvoc_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_tvoc *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) tvoc: %.4f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->tvoc);
|
||||
}
|
||||
static const char sensor_tvoc_format[] = "timestamp:%" PRIu64 ",tvoc:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_tvoc, struct sensor_tvoc, print_sensor_tvoc_message);
|
||||
ORB_DEFINE(sensor_tvoc, struct sensor_tvoc, sensor_tvoc_format);
|
||||
|
@ -29,20 +29,11 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_sensor_uv_message(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct sensor_uv *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %" PRIu64 " (%" PRIu64 " us ago) uvi: %.4f",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->uvi);
|
||||
}
|
||||
static const char sensor_uv_format[] = "timestamp:%" PRIu64 ",uvi:%hf";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(sensor_uv, struct sensor_uv, print_sensor_uv_message);
|
||||
ORB_DEFINE(sensor_uv, struct sensor_uv, sensor_uv_format);
|
||||
|
@ -32,58 +32,24 @@
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DEBUG_UORB
|
||||
static void print_orb_test_msg(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct orb_test_s *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %"PRIu64" (%"PRIu64" us ago) val: %"PRId32"",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->val);
|
||||
}
|
||||
|
||||
static void print_orb_test_medium_msg(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct orb_test_medium_s *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %"PRIu64" (%"PRIu64" us ago) val: %"PRId32"",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->val);
|
||||
}
|
||||
|
||||
static void print_orb_test_large_msg(FAR const struct orb_metadata *meta,
|
||||
FAR const void *buffer)
|
||||
{
|
||||
FAR const struct orb_test_large_s *message = buffer;
|
||||
const orb_abstime now = orb_absolute_time();
|
||||
|
||||
uorbinfo_raw("%s:\ttimestamp: %"PRIu64" (%"PRIu64" us ago) val: %"PRId32"",
|
||||
meta->o_name, message->timestamp, now - message->timestamp,
|
||||
message->val);
|
||||
}
|
||||
static const char orb_test_format[] =
|
||||
"timestamp:%" PRIu64 ",val:%" PRId32 "";
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
ORB_DEFINE(orb_test, struct orb_test_s, print_orb_test_msg);
|
||||
ORB_DEFINE(orb_multitest, struct orb_test_s, print_orb_test_msg);
|
||||
ORB_DEFINE(orb_test_medium, struct orb_test_medium_s,
|
||||
print_orb_test_medium_msg);
|
||||
ORB_DEFINE(orb_test_medium_multi, struct orb_test_medium_s,
|
||||
print_orb_test_medium_msg);
|
||||
ORB_DEFINE(orb_test, struct orb_test_s, orb_test_format);
|
||||
ORB_DEFINE(orb_multitest, struct orb_test_s, orb_test_format);
|
||||
ORB_DEFINE(orb_test_medium, struct orb_test_medium_s, orb_test_format);
|
||||
ORB_DEFINE(orb_test_medium_multi, struct orb_test_medium_s, orb_test_format);
|
||||
ORB_DEFINE(orb_test_medium_wrap_around, struct orb_test_medium_s,
|
||||
print_orb_test_medium_msg);
|
||||
ORB_DEFINE(orb_test_medium_queue, struct orb_test_medium_s,
|
||||
print_orb_test_medium_msg);
|
||||
orb_test_format);
|
||||
ORB_DEFINE(orb_test_medium_queue, struct orb_test_medium_s, orb_test_format);
|
||||
ORB_DEFINE(orb_test_medium_queue_poll, struct orb_test_medium_s,
|
||||
print_orb_test_medium_msg);
|
||||
ORB_DEFINE(orb_test_large, struct orb_test_large_s,
|
||||
print_orb_test_large_msg);
|
||||
orb_test_format);
|
||||
ORB_DEFINE(orb_test_large, struct orb_test_large_s, orb_test_format);
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
|
Loading…
x
Reference in New Issue
Block a user