X-Git-Url: https://git.ao2.it/libam7xxx.git/blobdiff_plain/1608665f4fd202a072531ae3a582eca87b344137..32e0039fd876db8fca014a1b89310427045bd5b3:/examples/picoproj.c?ds=sidebyside diff --git a/examples/picoproj.c b/examples/picoproj.c index c3b199c..7ae1296 100644 --- a/examples/picoproj.c +++ b/examples/picoproj.c @@ -16,6 +16,11 @@ * along with this program. If not, see . */ +/** + * @example examples/picoproj.c + * A minimal example to show how to use libam7xxx to display a static image. + */ + #include #include #include @@ -32,14 +37,16 @@ static void usage(char *name) printf("usage: %s [OPTIONS]\n\n", name); printf("OPTIONS:\n"); printf("\t-f \t\tthe image file to upload\n"); - printf("\t-F \t\tthe image format to use (default is JPEG).\n"); + printf("\t-F \t\tthe image format to use (default is JPEG)\n"); printf("\t\t\t\tSUPPORTED FORMATS:\n"); printf("\t\t\t\t\t1 - JPEG\n"); - printf("\t\t\t\t\t2 - YUV - NV12\n"); + printf("\t\t\t\t\t2 - NV12\n"); printf("\t-l \t\tthe verbosity level of libam7xxx output (0-5)\n"); printf("\t-W \tthe width of the image to upload\n"); printf("\t-H \tthe height of the image to upload\n"); printf("\t-h \t\t\tthis help message\n"); + printf("\n\nEXAMPLE OF USE:\n"); + printf("\t%s -f file.jpg -F 1 -l 5 -W 800 -H 480\n", name); } int main(int argc, char *argv[])