From f537d6068ba3c992f8864e5f15a7319c288b5034 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Wed, 7 May 2014 18:04:16 +0200 Subject: [PATCH] picoproj: allow setting the AM7XXX_ZOOM_TELE zoom mode --- doc/man/picoproj.1.txt | 2 +- examples/picoproj.c | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) 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; } -- 2.1.4