Skip to content
Snippets Groups Projects
Commit fe9d7db2 authored by kYc0o's avatar kYc0o
Browse files

tests/driver_isl29125/main.c: fix counter var type

parent e0170336
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,7 @@ int main(void) ...@@ -85,7 +85,7 @@ int main(void)
"ISL29125_MODE_R", "ISL29125_MODE_G", "ISL29125_MODE_B", "ISL29125_MODE_R", "ISL29125_MODE_G", "ISL29125_MODE_B",
"ISL29125_MODE_RG", "ISL29125_MODE_GB"}; "ISL29125_MODE_RG", "ISL29125_MODE_GB"};
for (int i = 0; i < sizeof(modes); i++) { for (size_t i = 0; i < sizeof(modes); i++) {
printf("Setting mode %s\n", mode_names[i]); printf("Setting mode %s\n", mode_names[i]);
isl29125_set_mode(&dev, modes[i]); isl29125_set_mode(&dev, modes[i]);
xtimer_usleep(SLEEP); xtimer_usleep(SLEEP);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment