提交 bea1115f 编写于 作者: V Valeriy Van

Uses const UINT8_MAX for max value of uint8_t type; Fixes loop condition.

上级 b9c2acba
......@@ -157,7 +157,7 @@ static int ft5x06_dump(void)
DEBUG_PRINTF("[FTS] Touch Chip\r\n");
for (i = 0; i <= 255; i++)
for (i = 0; i < UINT8_MAX; i++)
{
_ft5x06_read(i, &reg_value, 1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册