Fix remove trailing spaces
This commit is contained in:
parent
3b4b8d2f72
commit
46aaa6fd89
25 changed files with 82 additions and 84 deletions
|
@ -18,8 +18,8 @@
|
|||
/** This will give a noisy envelope of OOK/ASK signals.
|
||||
|
||||
Subtract the bias (-128) and get an envelope estimation (absolute squared)
|
||||
@param *iq_buf: input samples (I/Q samples in interleaved uint8)
|
||||
@param *y_buf: output
|
||||
@param iq_buf: input samples (I/Q samples in interleaved uint8)
|
||||
@param[out] y_buf: output
|
||||
@param len: number of samples to process
|
||||
*/
|
||||
void envelope_detect(uint8_t const *iq_buf, uint16_t *y_buf, uint32_t len);
|
||||
|
|
|
@ -81,8 +81,8 @@ void pulse_detect_free(pulse_detect_t *pulse_detect);
|
|||
/// @param fm_data: Samples with frequency offset from center frequency
|
||||
/// @param len: Number of samples in input buffers
|
||||
/// @param samp_rate: Sample rate in samples per second
|
||||
/// @param *pulses: Will return a pulse_data_t structure
|
||||
/// @param *fsk_pulses: Will return a pulse_data_t structure for FSK demodulated data
|
||||
/// @param[in,out] pulses: Will return a pulse_data_t structure
|
||||
/// @param[in,out] fsk_pulses: Will return a pulse_data_t structure for FSK demodulated data
|
||||
/// @return 0 if all input sample data is processed
|
||||
/// @return 1 if OOK package is detected (but all sample data is still not completely processed)
|
||||
/// @return 2 if FSK package is detected (but all sample data is still not completely processed)
|
||||
|
|
|
@ -95,7 +95,6 @@ static int schraeder_callback(r_device *decoder, bitbuffer_t *bitbuffer) {
|
|||
* C = checksum, sum of byte data modulo 256
|
||||
*
|
||||
*/
|
||||
|
||||
static int schrader_EG53MA4_callback(r_device *decoder, bitbuffer_t *bitbuffer) {
|
||||
data_t *data;
|
||||
uint8_t b[10];
|
||||
|
|
|
@ -57,8 +57,7 @@ static int thermopro_tp12_sensor_callback(r_device *decoder, bitbuffer_t *bitbuf
|
|||
row = bitbuffer_find_repeated_row(
|
||||
bitbuffer,
|
||||
(bitbuffer->num_rows > 5) ? 5 : 2,
|
||||
40
|
||||
);
|
||||
40);
|
||||
if (row < 0) {
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue