From 57aa5ccbb291ab7083ce49418a9ccdf223bb5349 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Tue, 9 Aug 2022 03:19:54 -0400 Subject: [PATCH] more println --- cubesatsim/cubesatsim.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index ed48d08f..ed2f92ea 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -3518,7 +3518,7 @@ void show_dir() { LittleFS.begin(); Dir dir = LittleFS.openDir("/"); // or Dir dir = LittleFS.openDir("/data"); - Serial.println(">"); + Serial.println("FS directory:"); while (dir.next()) { Serial.print(dir.fileName()); if(dir.fileSize()) { @@ -3539,7 +3539,7 @@ void load_files() { Serial.println("Image sstv_image_1_320_x_240.jpg already in FS"); f.close(); } else { - Serial.print("Loading image sstv_image_1_320_x_240.jpg into FS"); + Serial.println("Loading image sstv_image_1_320_x_240.jpg into FS"); f = LittleFS.open("sstv_image_1_320_x_240.jpg", "w+"); if (f.write(sstv_image_1_320_x_240, sizeof(sstv_image_1_320_x_240)) < sizeof(sstv_image_1_320_x_240)) Serial.println("Loading image failed. Is Flash Size (FS) set to 1MB?"); @@ -3554,7 +3554,7 @@ void load_files() { Serial.println("Loading image sstv_image_2_320_x_240.jpg into FS"); f = LittleFS.open("sstv_image_2_320_x_240.jpg", "w+"); if (f.write(sstv_image_2_320_x_240, sizeof(sstv_image_2_320_x_240)) < sizeof(sstv_image_2_320_x_240)) - Serial.print("Loading image failed. Is Flash Size (FS) set to 1MB?"); + Serial.println("Loading image failed. Is Flash Size (FS) set to 1MB?"); f.close(); }