main/brewboard.c

changeset 87
47253f294a9f
parent 54
7b134c27fadb
child 88
7f02dbee58d0
--- a/main/brewboard.c	Sun Jun 07 22:30:07 2020 +0200
+++ b/main/brewboard.c	Wed Jun 10 09:43:51 2020 +0200
@@ -83,16 +83,10 @@
     TFT_print((char *)"Ok\r\n", LASTX, LASTY);
 
     // Just to debug, list the /spiffs filesystem.
-#if 1
+#if 0
     DIR *dir = opendir("/spiffs");
     struct dirent* de = readdir(dir);
     while (de) {
-	if (de->d_type == DT_REG) {
-	    printf("F ");
-	}
-	if (de->d_type == DT_DIR) {
-	    printf("D ");
-	}
 	printf("%s\n", de->d_name);
 	de = readdir(dir);
     }

mercurial