From 53b64456e07ddd931108d167d10eccc5c66f4044 Mon Sep 17 00:00:00 2001 From: Fabrice Desclaux Date: Mon, 20 Feb 2012 20:21:54 +0100 Subject: [PATCH] rc_proto: packed struct --- rc_proto.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/rc_proto.h b/rc_proto.h index 61b104b..fea6c51 100644 --- a/rc_proto.h +++ b/rc_proto.h @@ -11,16 +11,17 @@ struct rc_proto_hdr { uint8_t type; -}; +} __attribute__((packed)); + struct rc_proto_channel { uint8_t type; int16_t axis[AXIS_NUMBER]; -}; +} __attribute__((packed)); struct rc_proto_range { uint8_t type; uint8_t power_level; -}; +} __attribute__((packed)); void rc_proto_rx_range(int power_level); -- 2.20.1