From f2651555aac365979cfbc4d9afce42c23306f817 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 12 Nov 2022 08:07:38 -0500 Subject: [PATCH] load both SSTV images, send image 2 --- cubesatsim/cubesatsim.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 0be196f0..2c177288 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -233,7 +233,7 @@ void loop() { } else { Serial.println("Using stored image"); load_files(); - strcpy(image_file, sstv1_filename); // 2nd stored image + strcpy(image_file, sstv2_filename); // 2nd stored image stored_image = true; } } @@ -3988,7 +3988,7 @@ void load_files() { } f.close(); } -/* +/**/ f = LittleFS.open("sstv_image_2_320_x_240.jpg", "r"); if (f) { Serial.println("Image sstv_image_2_320_x_240.jpg already in FS"); @@ -4002,7 +4002,7 @@ void load_files() { } f.close(); } -*/ +/**/ show_dir(); }