lf hid read - increase amount of samples to reaed in order to fit long formats

This commit is contained in:
iceman1001 2020-10-07 00:47:34 +02:00
parent 3abdf1c651
commit 7ea0324a62

View file

@ -154,7 +154,7 @@ static int CmdHIDDemod(const char *Cmd) {
// this read is the "normal" read, which download lf signal and tries to demod here.
static int CmdHIDRead(const char *Cmd) {
(void)Cmd; // Cmd is not used so far
lf_read(false, 12000);
lf_read(false, 16000);
return demodHID(true);
}