fixed wind direction parse when wind direction count above 10

This commit is contained in:
strawmanbobi
2019-07-03 19:22:37 +08:00
parent 201404aad0
commit 5b287e3481

View File

@@ -1136,7 +1136,14 @@ INT8 parse_swing_info(struct tag_head *tag, t_swing_info *si)
*/
// count how many swing types are there
si->type = SWING_TYPE_NORMAL;
si->mode_count = (UINT8) ((tag->len + 1) >> 1);
si->mode_count = 1;
for (i = 0; i < tag->len; i++)
{
if (tag->p_data[i] == ',')
{
si->mode_count++;
}
}
return IR_DECODE_SUCCEEDED;
}