send sstv using filename string

pico-v0.13
alanbjohnston 3 years ago committed by GitHub
parent fd575b0a0e
commit cd765966f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -177,8 +177,12 @@ void loop() {
} }
else if (mode == SSTV) else if (mode == SSTV)
{ {
Serial.println("\nSending SSTV image!"); char image_file;
send_sstv("/cam.raw"); strcpy(image_file, sstv1_filename);
Serial.print("\nSending SSTV image ");
print_string(image_file);
// send_sstv("/cam.raw");
send_sstv(image_file);
Serial.println("\nImage sent!"); Serial.println("\nImage sent!");
} }
else else

Loading…
Cancel
Save

Powered by TurnKey Linux.