From: Antonio Ospite Date: Wed, 7 May 2014 16:04:16 +0000 (+0200) Subject: picoproj: allow setting the AM7XXX_ZOOM_TELE zoom mode X-Git-Tag: v0.1.5~10^2~1 X-Git-Url: https://git.ao2.it/libam7xxx.git/commitdiff_plain/f537d6068ba3c992f8864e5f15a7319c288b5034 picoproj: allow setting the AM7XXX_ZOOM_TELE zoom mode --- diff --git a/doc/man/picoproj.1.txt b/doc/man/picoproj.1.txt index 1b0e471..69ec437 100644 --- a/doc/man/picoproj.1.txt +++ b/doc/man/picoproj.1.txt @@ -46,7 +46,7 @@ OPTIONS the slave connector to be plugged in. *-z* '':: - the display zoom mode, between 0 (original) and 3 (test) + the display zoom mode, between 0 (original) and 4 (tele) *-W* '':: the width of the image to upload diff --git a/examples/picoproj.c b/examples/picoproj.c index 9128538..cb30de0 100644 --- a/examples/picoproj.c +++ b/examples/picoproj.c @@ -47,8 +47,8 @@ static void usage(char *name) AM7XXX_POWER_OFF, AM7XXX_POWER_TURBO); printf("\t\t\t\tWARNING: Level 2 and greater require the master AND\n"); printf("\t\t\t\t the slave connector to be plugged in.\n"); - printf("\t-z \t\tthe display zoom mode, between %d (original) and %d (test)\n", - AM7XXX_ZOOM_ORIGINAL, AM7XXX_ZOOM_TEST); + printf("\t-z \t\tthe display zoom mode, between %d (original) and %d (tele)\n", + AM7XXX_ZOOM_ORIGINAL, AM7XXX_ZOOM_TELE); 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"); @@ -138,11 +138,12 @@ int main(int argc, char *argv[]) case AM7XXX_ZOOM_H: case AM7XXX_ZOOM_H_V: case AM7XXX_ZOOM_TEST: + case AM7XXX_ZOOM_TELE: fprintf(stdout, "Zoom: %d\n", zoom); break; default: fprintf(stderr, "Invalid zoom mode value, must be between %d and %d\n", - AM7XXX_ZOOM_ORIGINAL, AM7XXX_ZOOM_TEST); + AM7XXX_ZOOM_ORIGINAL, AM7XXX_ZOOM_TELE); ret = -EINVAL; goto out; }