Cleanup minor

This commit is contained in:
Christian W. Zuckschwerdt 2019-12-06 13:54:35 +01:00
parent 0725a631bb
commit 9ea435ce2b
4 changed files with 5 additions and 4 deletions

View file

@ -216,7 +216,7 @@ Read the Test Data section at the bottom.
[138] Globaltronics GT-WT-03 Sensor
[139] Norgo NGE101
[140] Elantra2012 TPMS
[141] Auriol HG02832 temperature/humidity sensor
[141] Auriol HG02832, HG05124A-DCF, Rubicson 48957 temperature/humidity sensor
* Disabled by default, use -R n or -G

View file

@ -327,7 +327,7 @@ stop_after_successful_events false
protocol 138 # Globaltronics GT-WT-03 Sensor
protocol 139 # Norgo NGE101
protocol 140 # Elantra2012 TPMS
protocol 141 # Auriol HG02832 temperature/humidity sensor
protocol 141 # Auriol HG02832, HG05124A-DCF, Rubicson 48957 temperature/humidity sensor
## Flex devices (command line option "-X")

View file

@ -549,7 +549,7 @@ Norgo NGE101
Elantra2012 TPMS
.TP
[ \fB141\fI\fP ]
Auriol HG02832 temperature/humidity sensor
Auriol HG02832, HG05124A\-DCF, Rubicson 48957 temperature/humidity sensor
* Disabled by default, use \-R n or \-G
.SS "Input device selection"

View file

@ -1364,7 +1364,8 @@ int main(int argc, char **argv) {
} else if (demod->load_info.format == CS16_IQ
|| demod->load_info.format == CF32_IQ) {
demod->sample_size = sizeof(int16_t); // CF32, CS16
} else if (demod->load_info.format == PULSE_OOK) {
} else if (demod->load_info.format == PULSE_OOK) {
// ignore
} else {
fprintf(stderr, "Input format invalid: %s\n", file_info_string(&demod->load_info));
break;