2021-07-08 18:20:13 +00:00
|
|
|
#include "furi/check.h"
|
2021-09-15 17:22:58 +00:00
|
|
|
#include "furi/common_defines.h"
|
2021-07-08 18:20:13 +00:00
|
|
|
#include "irda.h"
|
|
|
|
#include "irda_common_i.h"
|
2021-05-18 10:51:00 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <furi.h>
|
|
|
|
#include "irda_i.h"
|
2021-09-09 21:37:32 +00:00
|
|
|
#include <stdint.h>
|
2021-05-18 10:51:00 +00:00
|
|
|
|
2021-09-09 21:37:32 +00:00
|
|
|
static void irda_common_decoder_reset_state(IrdaCommonDecoder* decoder);
|
|
|
|
|
|
|
|
static inline size_t consume_samples(uint32_t* array, size_t len, size_t shift) {
|
|
|
|
furi_assert(len >= shift);
|
|
|
|
len -= shift;
|
|
|
|
for (int i = 0; i < len; ++i)
|
|
|
|
array[i] = array[i + shift];
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void accumulate_lsb(IrdaCommonDecoder* decoder, bool bit) {
|
|
|
|
uint16_t index = decoder->databit_cnt / 8;
|
|
|
|
uint8_t shift = decoder->databit_cnt % 8; // LSB first
|
|
|
|
|
|
|
|
if (!shift)
|
|
|
|
decoder->data[index] = 0;
|
|
|
|
|
|
|
|
if (bit) {
|
|
|
|
decoder->data[index] |= (0x1 << shift); // add 1
|
|
|
|
} else {
|
|
|
|
(void) decoder->data[index]; // add 0
|
|
|
|
}
|
|
|
|
|
|
|
|
++decoder->databit_cnt;
|
|
|
|
}
|
2021-05-18 10:51:00 +00:00
|
|
|
|
|
|
|
static bool irda_check_preamble(IrdaCommonDecoder* decoder) {
|
|
|
|
furi_assert(decoder);
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
bool start_level = (decoder->level + decoder->timings_cnt + 1) % 2;
|
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
if (decoder->timings_cnt == 0)
|
|
|
|
return false;
|
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
// align to start at Mark timing
|
2021-07-08 18:20:13 +00:00
|
|
|
if (!start_level) {
|
2021-09-15 17:22:58 +00:00
|
|
|
decoder->timings_cnt = consume_samples(decoder->timings, decoder->timings_cnt, 1);
|
2021-05-18 10:51:00 +00:00
|
|
|
}
|
|
|
|
|
2021-08-20 20:51:15 +00:00
|
|
|
if (decoder->protocol->timings.preamble_mark == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
while ((!result) && (decoder->timings_cnt >= 2)) {
|
|
|
|
float preamble_tolerance = decoder->protocol->timings.preamble_tolerance;
|
|
|
|
uint16_t preamble_mark = decoder->protocol->timings.preamble_mark;
|
|
|
|
uint16_t preamble_space = decoder->protocol->timings.preamble_space;
|
|
|
|
|
2021-09-09 21:37:32 +00:00
|
|
|
if ((MATCH_TIMING(decoder->timings[0], preamble_mark, preamble_tolerance))
|
|
|
|
&& (MATCH_TIMING(decoder->timings[1], preamble_space, preamble_tolerance))) {
|
2021-05-18 10:51:00 +00:00
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
|
2021-09-09 21:37:32 +00:00
|
|
|
decoder->timings_cnt = consume_samples(decoder->timings, decoder->timings_cnt, 2);
|
2021-05-18 10:51:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* decoder->protocol->databit_len[0] contains biggest amount of bits, for this protocol.
|
|
|
|
* decoder->protocol->databit_len[1...] contains lesser values, but which can be decoded
|
|
|
|
* for some protocol modifications.
|
|
|
|
*/
|
|
|
|
static IrdaStatus irda_common_decode_bits(IrdaCommonDecoder* decoder) {
|
2021-05-18 10:51:00 +00:00
|
|
|
furi_assert(decoder);
|
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
IrdaStatus status = IrdaStatusOk;
|
|
|
|
const IrdaTimings* timings = &decoder->protocol->timings;
|
|
|
|
|
|
|
|
while (decoder->timings_cnt && (status == IrdaStatusOk)) {
|
|
|
|
bool level = (decoder->level + decoder->timings_cnt + 1) % 2;
|
|
|
|
uint32_t timing = decoder->timings[0];
|
|
|
|
|
2021-10-16 12:00:21 +00:00
|
|
|
if (timings->min_split_time && !level) {
|
|
|
|
if (timing > timings->min_split_time) {
|
|
|
|
/* long low timing - check if we're ready for any of protocol modification */
|
|
|
|
for (int i = 0; decoder->protocol->databit_len[i] && (i < COUNT_OF(decoder->protocol->databit_len)); ++i) {
|
|
|
|
if (decoder->protocol->databit_len[i] == decoder->databit_cnt) {
|
|
|
|
return IrdaStatusReady;
|
|
|
|
}
|
2021-09-15 17:22:58 +00:00
|
|
|
}
|
2021-10-16 12:00:21 +00:00
|
|
|
} else if (decoder->protocol->databit_len[0] == decoder->databit_cnt) {
|
|
|
|
/* short low timing for longest protocol - this is signal is longer than we expected */
|
|
|
|
return IrdaStatusError;
|
2021-09-15 17:22:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
status = decoder->protocol->decode(decoder, level, timing);
|
2021-10-16 12:00:21 +00:00
|
|
|
furi_check(decoder->databit_cnt <= decoder->protocol->databit_len[0]);
|
2021-09-15 17:22:58 +00:00
|
|
|
furi_assert(status == IrdaStatusError || status == IrdaStatusOk);
|
|
|
|
if (status == IrdaStatusError) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
decoder->timings_cnt = consume_samples(decoder->timings, decoder->timings_cnt, 1);
|
|
|
|
|
|
|
|
/* check if largest protocol version can be decoded */
|
2021-10-16 12:00:21 +00:00
|
|
|
if (level && (decoder->protocol->databit_len[0] == decoder->databit_cnt) && !timings->min_split_time) {
|
2021-09-15 17:22:58 +00:00
|
|
|
status = IrdaStatusReady;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pulse Distance-Width Modulation */
|
|
|
|
IrdaStatus irda_common_decode_pdwm(IrdaCommonDecoder* decoder, bool level, uint32_t timing) {
|
|
|
|
furi_assert(decoder);
|
|
|
|
|
|
|
|
IrdaStatus status = IrdaStatusOk;
|
2021-05-18 10:51:00 +00:00
|
|
|
uint32_t bit_tolerance = decoder->protocol->timings.bit_tolerance;
|
|
|
|
uint16_t bit1_mark = decoder->protocol->timings.bit1_mark;
|
|
|
|
uint16_t bit1_space = decoder->protocol->timings.bit1_space;
|
|
|
|
uint16_t bit0_mark = decoder->protocol->timings.bit0_mark;
|
|
|
|
uint16_t bit0_space = decoder->protocol->timings.bit0_space;
|
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
bool analyze_timing = level ^ (bit1_mark == bit0_mark);
|
|
|
|
uint16_t bit1 = level ? bit1_mark : bit1_space;
|
|
|
|
uint16_t bit0 = level ? bit0_mark : bit0_space;
|
|
|
|
uint16_t no_info_timing = (bit1_mark == bit0_mark) ? bit1_mark : bit1_space;
|
2021-05-18 10:51:00 +00:00
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
if (analyze_timing) {
|
|
|
|
if (MATCH_TIMING(timing, bit1, bit_tolerance)) {
|
|
|
|
accumulate_lsb(decoder, 1);
|
|
|
|
} else if (MATCH_TIMING(timing, bit0, bit_tolerance)) {
|
|
|
|
accumulate_lsb(decoder, 0);
|
2021-05-18 10:51:00 +00:00
|
|
|
} else {
|
2021-09-15 17:22:58 +00:00
|
|
|
status = IrdaStatusError;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!MATCH_TIMING(timing, no_info_timing, bit_tolerance)) {
|
|
|
|
status = IrdaStatusError;
|
2021-05-18 10:51:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2021-07-08 18:20:13 +00:00
|
|
|
/* level switch detection goes in middle of time-quant */
|
2021-09-15 17:22:58 +00:00
|
|
|
IrdaStatus irda_common_decode_manchester(IrdaCommonDecoder* decoder, bool level, uint32_t timing) {
|
2021-07-08 18:20:13 +00:00
|
|
|
furi_assert(decoder);
|
|
|
|
uint16_t bit = decoder->protocol->timings.bit1_mark;
|
|
|
|
uint16_t tolerance = decoder->protocol->timings.bit_tolerance;
|
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
bool* switch_detect = &decoder->switch_detect;
|
|
|
|
furi_assert((*switch_detect == true) || (*switch_detect == false));
|
2021-07-08 18:20:13 +00:00
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
bool single_timing = MATCH_TIMING(timing, bit, tolerance);
|
|
|
|
bool double_timing = MATCH_TIMING(timing, 2*bit, tolerance);
|
2021-07-08 18:20:13 +00:00
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
if(!single_timing && !double_timing) {
|
|
|
|
return IrdaStatusError;
|
|
|
|
}
|
2021-07-08 18:20:13 +00:00
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
if (decoder->protocol->manchester_start_from_space && (decoder->databit_cnt == 0)) {
|
|
|
|
*switch_detect = 1; /* fake as we were previously in the middle of time-quant */
|
|
|
|
accumulate_lsb(decoder, 0);
|
|
|
|
}
|
2021-08-20 20:51:15 +00:00
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
if (*switch_detect == 0) {
|
|
|
|
if (double_timing) {
|
|
|
|
return IrdaStatusError;
|
2021-07-08 18:20:13 +00:00
|
|
|
}
|
2021-09-15 17:22:58 +00:00
|
|
|
/* only single timing - level switch required in the middle of time-quant */
|
|
|
|
*switch_detect = 1;
|
|
|
|
} else {
|
|
|
|
/* double timing means we're in the middle of time-quant again */
|
|
|
|
if (single_timing)
|
|
|
|
*switch_detect = 0;
|
|
|
|
}
|
2021-07-08 18:20:13 +00:00
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
if (*switch_detect) {
|
2021-10-16 12:00:21 +00:00
|
|
|
if (decoder->protocol->databit_len[0] == decoder->databit_cnt) {
|
|
|
|
return IrdaStatusError;
|
|
|
|
}
|
2021-09-15 17:22:58 +00:00
|
|
|
accumulate_lsb(decoder, level);
|
2021-07-08 18:20:13 +00:00
|
|
|
}
|
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
return IrdaStatusOk;
|
2021-07-08 18:20:13 +00:00
|
|
|
}
|
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
IrdaMessage* irda_common_decoder_check_ready(IrdaCommonDecoder* decoder) {
|
|
|
|
IrdaMessage* message = NULL;
|
2021-10-16 12:00:21 +00:00
|
|
|
bool found_length = false;
|
|
|
|
|
|
|
|
for (int i = 0; decoder->protocol->databit_len[i] && (i < COUNT_OF(decoder->protocol->databit_len)); ++i) {
|
|
|
|
if (decoder->protocol->databit_len[i] == decoder->databit_cnt) {
|
|
|
|
found_length = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-09-09 21:37:32 +00:00
|
|
|
|
2021-10-16 12:00:21 +00:00
|
|
|
if (found_length && decoder->protocol->interpret(decoder)) {
|
2021-09-15 17:22:58 +00:00
|
|
|
decoder->databit_cnt = 0;
|
|
|
|
message = &decoder->message;
|
|
|
|
if (decoder->protocol->decode_repeat) {
|
|
|
|
decoder->state = IrdaCommonDecoderStateProcessRepeat;
|
2021-09-09 21:37:32 +00:00
|
|
|
} else {
|
2021-09-15 17:22:58 +00:00
|
|
|
decoder->state = IrdaCommonDecoderStateWaitPreamble;
|
2021-09-09 21:37:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
return message;
|
2021-09-09 21:37:32 +00:00
|
|
|
}
|
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
IrdaMessage* irda_common_decode(IrdaCommonDecoder* decoder, bool level, uint32_t duration) {
|
|
|
|
furi_assert(decoder);
|
|
|
|
|
|
|
|
IrdaMessage* message = 0;
|
2021-07-08 18:20:13 +00:00
|
|
|
IrdaStatus status = IrdaStatusError;
|
2021-05-18 10:51:00 +00:00
|
|
|
|
|
|
|
if (decoder->level == level) {
|
2021-09-09 21:37:32 +00:00
|
|
|
irda_common_decoder_reset(decoder);
|
2021-05-18 10:51:00 +00:00
|
|
|
}
|
2021-07-08 18:20:13 +00:00
|
|
|
decoder->level = level; // start with low level (Space timing)
|
2021-05-18 10:51:00 +00:00
|
|
|
|
|
|
|
decoder->timings[decoder->timings_cnt] = duration;
|
|
|
|
decoder->timings_cnt++;
|
|
|
|
furi_check(decoder->timings_cnt <= sizeof(decoder->timings));
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
switch (decoder->state) {
|
2021-07-08 18:20:13 +00:00
|
|
|
case IrdaCommonDecoderStateWaitPreamble:
|
2021-05-18 10:51:00 +00:00
|
|
|
if (irda_check_preamble(decoder)) {
|
2021-07-08 18:20:13 +00:00
|
|
|
decoder->state = IrdaCommonDecoderStateDecode;
|
2021-05-18 10:51:00 +00:00
|
|
|
decoder->databit_cnt = 0;
|
2021-07-08 18:20:13 +00:00
|
|
|
decoder->switch_detect = false;
|
2021-08-20 20:51:15 +00:00
|
|
|
continue;
|
2021-05-18 10:51:00 +00:00
|
|
|
}
|
|
|
|
break;
|
2021-07-08 18:20:13 +00:00
|
|
|
case IrdaCommonDecoderStateDecode:
|
2021-09-15 17:22:58 +00:00
|
|
|
status = irda_common_decode_bits(decoder);
|
2021-07-08 18:20:13 +00:00
|
|
|
if (status == IrdaStatusReady) {
|
2021-09-15 17:22:58 +00:00
|
|
|
message = irda_common_decoder_check_ready(decoder);
|
|
|
|
if (message) {
|
|
|
|
continue;
|
|
|
|
} else if (decoder->protocol->databit_len[0] == decoder->databit_cnt) {
|
|
|
|
/* error: can't decode largest protocol - begin decoding from start */
|
2021-07-08 18:20:13 +00:00
|
|
|
decoder->state = IrdaCommonDecoderStateWaitPreamble;
|
2021-05-18 10:51:00 +00:00
|
|
|
}
|
2021-07-08 18:20:13 +00:00
|
|
|
} else if (status == IrdaStatusError) {
|
|
|
|
irda_common_decoder_reset_state(decoder);
|
2021-05-18 10:51:00 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
2021-07-08 18:20:13 +00:00
|
|
|
case IrdaCommonDecoderStateProcessRepeat:
|
2021-05-18 10:51:00 +00:00
|
|
|
status = decoder->protocol->decode_repeat(decoder);
|
2021-07-08 18:20:13 +00:00
|
|
|
if (status == IrdaStatusError) {
|
|
|
|
irda_common_decoder_reset_state(decoder);
|
2021-05-18 10:51:00 +00:00
|
|
|
continue;
|
2021-07-08 18:20:13 +00:00
|
|
|
} else if (status == IrdaStatusReady) {
|
2021-05-18 10:51:00 +00:00
|
|
|
decoder->message.repeat = true;
|
|
|
|
message = &decoder->message;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* irda_common_decoder_alloc(const IrdaCommonProtocolSpec* protocol) {
|
|
|
|
furi_assert(protocol);
|
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
/* protocol->databit_len[0] has to contain biggest value of bits that can be decoded */
|
|
|
|
for (int i = 1; i < COUNT_OF(protocol->databit_len); ++i) {
|
|
|
|
furi_assert(protocol->databit_len[i] <= protocol->databit_len[0]);
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
uint32_t alloc_size = sizeof(IrdaCommonDecoder)
|
2021-09-15 17:22:58 +00:00
|
|
|
+ protocol->databit_len[0] / 8
|
|
|
|
+ !!(protocol->databit_len[0] % 8);
|
2021-05-18 10:51:00 +00:00
|
|
|
IrdaCommonDecoder* decoder = furi_alloc(alloc_size);
|
|
|
|
decoder->protocol = protocol;
|
2021-07-08 18:20:13 +00:00
|
|
|
decoder->level = true;
|
2021-05-18 10:51:00 +00:00
|
|
|
return decoder;
|
|
|
|
}
|
|
|
|
|
2021-09-09 21:37:32 +00:00
|
|
|
void irda_common_decoder_free(IrdaCommonDecoder* decoder) {
|
2021-05-18 10:51:00 +00:00
|
|
|
furi_assert(decoder);
|
|
|
|
free(decoder);
|
|
|
|
}
|
|
|
|
|
2021-09-09 21:37:32 +00:00
|
|
|
void irda_common_decoder_reset_state(IrdaCommonDecoder* decoder) {
|
|
|
|
decoder->state = IrdaCommonDecoderStateWaitPreamble;
|
|
|
|
decoder->databit_cnt = 0;
|
|
|
|
decoder->switch_detect = false;
|
|
|
|
decoder->message.protocol = IrdaProtocolUnknown;
|
|
|
|
if (decoder->protocol->timings.preamble_mark == 0) {
|
|
|
|
if (decoder->timings_cnt > 0) {
|
|
|
|
decoder->timings_cnt = consume_samples(decoder->timings, decoder->timings_cnt, 1);
|
|
|
|
}
|
2021-08-20 20:51:15 +00:00
|
|
|
}
|
2021-07-08 18:20:13 +00:00
|
|
|
}
|
|
|
|
|
2021-09-09 21:37:32 +00:00
|
|
|
void irda_common_decoder_reset(IrdaCommonDecoder* decoder) {
|
2021-06-02 15:16:05 +00:00
|
|
|
furi_assert(decoder);
|
|
|
|
|
2021-09-09 21:37:32 +00:00
|
|
|
irda_common_decoder_reset_state(decoder);
|
|
|
|
decoder->timings_cnt = 0;
|
2021-06-02 15:16:05 +00:00
|
|
|
}
|
|
|
|
|