Merge pull request #1249 from valeriyvan/fixindefiniteloop

Uses const UINT8_MAX for max value of uint8_t; Fixes loop condition.
This commit is contained in:
Tanek
2018-03-03 16:19:10 +08:00
committed by GitHub

View File

@@ -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);