Include version in help text to make identification easier.

This commit is contained in:
Gergely Budai 2015-12-08 13:59:45 +01:00
parent 3ba2d7dc8d
commit 15a1167106
1 changed files with 2 additions and 1 deletions

View File

@ -84,6 +84,7 @@ void fatal(char *fmt, ...)
void usage()
{
fprintf(stderr, "\n" \
"pigpio V%d\n" \
"Usage: sudo pigpiod [OPTION] ...\n" \
" -a value, DMA mode, 0=AUTO, 1=PMAP, 2=MBOX, default AUTO\n" \
" -b value, gpio sample buffer in milliseconds, default 120\n" \
@ -100,7 +101,7 @@ void usage()
"sudo pigpiod -s 2 -b 200 -f\n" \
" Set a sample rate of 2 microseconds with a 200 millisecond\n" \
" buffer. Disable the fifo interface.\n" \
"\n");
"\n", PIGPIO_VERSION);
}
static uint64_t getNum(char *str, int *err)