[modules] hott: fix hott_telemetry_sendig_msgs_id

type range was to small resulting in:
modules/hott/hott.c:127:3: warning: comparison is always true due to limited range of data type [-Wtype-limits]
This commit is contained in:
Felix Ruess
2013-12-19 21:23:05 +01:00
parent 41d95c431e
commit 2842220b17
+1 -1
View File
@@ -52,7 +52,7 @@
static uint32_t hott_event_timer; // 1ms software timer static uint32_t hott_event_timer; // 1ms software timer
static bool_t hott_telemetry_is_sending = FALSE; static bool_t hott_telemetry_is_sending = FALSE;
static int8_t hott_telemetry_sendig_msgs_id = 0; static uint16_t hott_telemetry_sendig_msgs_id = 0;
#if HOTT_SIM_GPS_SENSOR #if HOTT_SIM_GPS_SENSOR
bool_t HOTT_REQ_UPDATE_GPS = FALSE; bool_t HOTT_REQ_UPDATE_GPS = FALSE;