2021-08-20 20:51:15 +00:00
|
|
|
#include "../irda_i.h"
|
|
|
|
#include "irda_protocol_defs_i.h"
|
|
|
|
|
|
|
|
static const IrdaProtocolSpecification irda_nec_protocol_specification = {
|
2022-01-05 16:10:18 +00:00
|
|
|
.name = "NEC",
|
|
|
|
.address_length = 8,
|
|
|
|
.command_length = 8,
|
|
|
|
.frequency = IRDA_COMMON_CARRIER_FREQUENCY,
|
|
|
|
.duty_cycle = IRDA_COMMON_DUTY_CYCLE,
|
2021-08-20 20:51:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const IrdaProtocolSpecification irda_necext_protocol_specification = {
|
2022-01-05 16:10:18 +00:00
|
|
|
.name = "NECext",
|
|
|
|
.address_length = 16,
|
|
|
|
.command_length = 16,
|
|
|
|
.frequency = IRDA_COMMON_CARRIER_FREQUENCY,
|
|
|
|
.duty_cycle = IRDA_COMMON_DUTY_CYCLE,
|
2021-09-15 17:22:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const IrdaProtocolSpecification irda_nec42_protocol_specification = {
|
2022-01-05 16:10:18 +00:00
|
|
|
.name = "NEC42",
|
|
|
|
.address_length = 13,
|
|
|
|
.command_length = 8,
|
|
|
|
.frequency = IRDA_COMMON_CARRIER_FREQUENCY,
|
|
|
|
.duty_cycle = IRDA_COMMON_DUTY_CYCLE,
|
2021-08-20 20:51:15 +00:00
|
|
|
};
|
|
|
|
|
2021-09-15 17:22:58 +00:00
|
|
|
static const IrdaProtocolSpecification irda_nec42ext_protocol_specification = {
|
2022-01-05 16:10:18 +00:00
|
|
|
.name = "NEC42ext",
|
|
|
|
.address_length = 26,
|
|
|
|
.command_length = 16,
|
|
|
|
.frequency = IRDA_COMMON_CARRIER_FREQUENCY,
|
|
|
|
.duty_cycle = IRDA_COMMON_DUTY_CYCLE,
|
2021-09-15 17:22:58 +00:00
|
|
|
};
|
|
|
|
|
2021-08-20 20:51:15 +00:00
|
|
|
const IrdaProtocolSpecification* irda_nec_get_spec(IrdaProtocol protocol) {
|
2022-01-05 16:10:18 +00:00
|
|
|
if(protocol == IrdaProtocolNEC)
|
2021-08-20 20:51:15 +00:00
|
|
|
return &irda_nec_protocol_specification;
|
2022-01-05 16:10:18 +00:00
|
|
|
else if(protocol == IrdaProtocolNECext)
|
2021-08-20 20:51:15 +00:00
|
|
|
return &irda_necext_protocol_specification;
|
2022-01-05 16:10:18 +00:00
|
|
|
else if(protocol == IrdaProtocolNEC42)
|
2021-09-15 17:22:58 +00:00
|
|
|
return &irda_nec42_protocol_specification;
|
2022-01-05 16:10:18 +00:00
|
|
|
else if(protocol == IrdaProtocolNEC42ext)
|
2021-09-15 17:22:58 +00:00
|
|
|
return &irda_nec42ext_protocol_specification;
|
2021-08-20 20:51:15 +00:00
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|