From 72b8e66b60d587429f0def893b6534aabb594d2a Mon Sep 17 00:00:00 2001 From: Kevin J Walters Date: Fri, 29 Dec 2023 01:05:47 +0000 Subject: [PATCH] Printing program name, version and url for more info at start-up. --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 99c2166..8941673 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -28,6 +28,8 @@ int main(int argc, char *argv[]) { //set_sys_clock_khz(200000, true); stdio_init_all(); + printf("\n" PICO_PROGRAM_NAME " " PICO_PROGRAM_VERSION_STRING "\n"); + printf("More information: " PICO_PROGRAM_URL "\n\n"); UnicornAudioDisplay UAD; #ifdef AUDIO_SOURCES