From 81fdb71b9be05865c0336c0039deb608a8714a20 Mon Sep 17 00:00:00 2001 From: Claudio Takahasi Date: Tue, 12 Jun 2012 13:38:30 -0300 Subject: thermometer: Reduce the array for temperature type Temperature Type characteristic is a 8-bits value used to describe the type of temperature measurement in relation to the location on the human body. --- thermometer/thermometer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c index 614da183..914f77c7 100644 --- a/thermometer/thermometer.c +++ b/thermometer/thermometer.c @@ -49,6 +49,7 @@ #define FLOAT_MAX_MANTISSA 16777216 /* 2^24 */ #define VALID_RANGE_DESC_SIZE 4 +#define TEMPERATURE_TYPE_SIZE 1 struct thermometer { DBusConnection *conn; /* The connection to the bus */ @@ -445,7 +446,7 @@ static void read_temp_type_cb(guint8 status, const guint8 *pdu, guint16 len, { struct characteristic *ch = user_data; struct thermometer *t = ch->t; - uint8_t value[ATT_MAX_MTU]; + uint8_t value[TEMPERATURE_TYPE_SIZE]; ssize_t vlen; if (status != 0) { -- cgit v1.2.3