Change SysEx interval units from microseconds to miliseconds

This commit is contained in:
Miroslav Kovac 2024-04-09 13:09:38 +02:00
parent ab97954483
commit 5565e11441

View file

@ -76,7 +76,7 @@ static void usage(void)
" -l list all sequencer ports\n"
" -p select port by name\n"
" -s send data from given file name (*.syx)\n"
" -i sysex interval in microseconds\n\n");
" -i sysex interval in miliseconds\n\n");
}
static void version(void)
@ -345,7 +345,7 @@ int main(int argc, char *argv[])
do_send_file = 1;
break;
case 'i':
sysex_interval = atoi(optarg);
sysex_interval = atoi(optarg) * 1000; //ms--->us
break;
default:
error("Try 'aseqsend -h' for more information.");