aboutsummaryrefslogtreecommitdiff
path: root/src/modules/uORB
diff options
context:
space:
mode:
authorAnton Babushkin <anton.babushkin@me.com>2014-03-08 22:19:18 +0400
committerAnton Babushkin <anton.babushkin@me.com>2014-03-08 22:19:18 +0400
commitb165e6ba2000f89b1220393e469911f3e3a73286 (patch)
treed01b603f884389aef6975a5e6532b9c1524bcc74 /src/modules/uORB
parente0fbb0fb6079cffe1e3ab254caa4fd07906e9f7d (diff)
parent501dc0cfa7259a1916522e5b70a5fd31cb7d20e1 (diff)
downloadpx4-firmware-b165e6ba2000f89b1220393e469911f3e3a73286.tar.gz
px4-firmware-b165e6ba2000f89b1220393e469911f3e3a73286.tar.bz2
px4-firmware-b165e6ba2000f89b1220393e469911f3e3a73286.zip
Merge branch 'master' into acro2
Diffstat (limited to 'src/modules/uORB')
-rw-r--r--src/modules/uORB/topics/telemetry_status.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/uORB/topics/telemetry_status.h b/src/modules/uORB/topics/telemetry_status.h
index 828fb31cc..5192d4d58 100644
--- a/src/modules/uORB/topics/telemetry_status.h
+++ b/src/modules/uORB/topics/telemetry_status.h
@@ -58,10 +58,10 @@ enum TELEMETRY_STATUS_RADIO_TYPE {
struct telemetry_status_s {
uint64_t timestamp;
enum TELEMETRY_STATUS_RADIO_TYPE type; /**< type of the radio hardware */
- unsigned rssi; /**< local signal strength */
- unsigned remote_rssi; /**< remote signal strength */
- unsigned rxerrors; /**< receive errors */
- unsigned fixed; /**< count of error corrected packets */
+ uint8_t rssi; /**< local signal strength */
+ uint8_t remote_rssi; /**< remote signal strength */
+ uint16_t rxerrors; /**< receive errors */
+ uint16_t fixed; /**< count of error corrected packets */
uint8_t noise; /**< background noise level */
uint8_t remote_noise; /**< remote background noise level */
uint8_t txbuf; /**< how full the tx buffer is as a percentage */
@@ -73,4 +73,4 @@ struct telemetry_status_s {
ORB_DECLARE(telemetry_status);
-#endif /* TOPIC_TELEMETRY_STATUS_H */ \ No newline at end of file
+#endif /* TOPIC_TELEMETRY_STATUS_H */