From: Bartosz Golaszewski Date: Tue, 23 Apr 2024 10:04:52 +0000 (+0200) Subject: tools: add minutes as a new supported time unit X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c34a572c535000d48dde12a805b38731dc33deb1;p=qemu-gpiodev%2Flibgpiod.git tools: add minutes as a new supported time unit Make it more convenient to specify longer time periods in gpio-tools by introducing minutes as the new time unit. Link: https://lore.kernel.org/r/20240423100452.32958-5-brgl@bgdev.pl Signed-off-by: Bartosz Golaszewski --- diff --git a/tools/tools-common.c b/tools/tools-common.c index 500e9a2..4340bce 100644 --- a/tools/tools-common.c +++ b/tools/tools-common.c @@ -138,10 +138,12 @@ long long parse_period(const char *option) } if (m) { - if (*end != 's') + if (*end == '\0') + m = 60000000; + else if (*end == 's') + end++; + else return -1; - - end++; } else { m = 1000; } @@ -213,7 +215,7 @@ void print_period_help(void) { printf("\nPeriods:\n"); printf(" Periods are taken as milliseconds unless units are specified. e.g. 10us.\n"); - printf(" Supported units are 's', 'ms', and 'us'.\n"); + printf(" Supported units are 'm', 's', 'ms', and 'us' for minutes, seconds, milliseconds and microseconds respectively.\n"); } #define TIME_BUFFER_SIZE 20