Selaa lähdekoodia

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

Valeriy Van 7 vuotta sitten
vanhempi
commit
bea1115ff1
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      bsp/stm32f429-armfly/drivers/drv_ft5x06.c

+ 1 - 1
bsp/stm32f429-armfly/drivers/drv_ft5x06.c

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