mirror of
https://github.com/torvalds/linux.git
synced 2024-12-15 15:41:58 +00:00
1d184b0bc1
Add a raw decoder for the Sharp protocol. It uses a pulse distance modulation with a pulse of 320us and a bit period of 2ms for a logical 1 and 1ms for a logical 0. The first part of the message consists of a 5-bit address, an 8-bit command, and two other bits, followed by a 40ms gap before the echo message which is an inverted version of the main message except for the address bits. Signed-off-by: James Hogan <james.hogan@imgtec.com> Cc: Mauro Carvalho Chehab <m.chehab@samsung.com> Cc: linux-media@vger.kernel.org Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
35 lines
1.3 KiB
Makefile
35 lines
1.3 KiB
Makefile
rc-core-objs := rc-main.o ir-raw.o
|
|
|
|
obj-y += keymaps/
|
|
|
|
obj-$(CONFIG_RC_CORE) += rc-core.o
|
|
obj-$(CONFIG_LIRC) += lirc_dev.o
|
|
obj-$(CONFIG_IR_NEC_DECODER) += ir-nec-decoder.o
|
|
obj-$(CONFIG_IR_RC5_DECODER) += ir-rc5-decoder.o
|
|
obj-$(CONFIG_IR_RC6_DECODER) += ir-rc6-decoder.o
|
|
obj-$(CONFIG_IR_JVC_DECODER) += ir-jvc-decoder.o
|
|
obj-$(CONFIG_IR_SONY_DECODER) += ir-sony-decoder.o
|
|
obj-$(CONFIG_IR_RC5_SZ_DECODER) += ir-rc5-sz-decoder.o
|
|
obj-$(CONFIG_IR_SANYO_DECODER) += ir-sanyo-decoder.o
|
|
obj-$(CONFIG_IR_SHARP_DECODER) += ir-sharp-decoder.o
|
|
obj-$(CONFIG_IR_MCE_KBD_DECODER) += ir-mce_kbd-decoder.o
|
|
obj-$(CONFIG_IR_LIRC_CODEC) += ir-lirc-codec.o
|
|
|
|
# stand-alone IR receivers/transmitters
|
|
obj-$(CONFIG_RC_ATI_REMOTE) += ati_remote.o
|
|
obj-$(CONFIG_IR_IMON) += imon.o
|
|
obj-$(CONFIG_IR_ITE_CIR) += ite-cir.o
|
|
obj-$(CONFIG_IR_MCEUSB) += mceusb.o
|
|
obj-$(CONFIG_IR_FINTEK) += fintek-cir.o
|
|
obj-$(CONFIG_IR_NUVOTON) += nuvoton-cir.o
|
|
obj-$(CONFIG_IR_ENE) += ene_ir.o
|
|
obj-$(CONFIG_IR_REDRAT3) += redrat3.o
|
|
obj-$(CONFIG_IR_RX51) += ir-rx51.o
|
|
obj-$(CONFIG_IR_STREAMZAP) += streamzap.o
|
|
obj-$(CONFIG_IR_WINBOND_CIR) += winbond-cir.o
|
|
obj-$(CONFIG_RC_LOOPBACK) += rc-loopback.o
|
|
obj-$(CONFIG_IR_GPIO_CIR) += gpio-ir-recv.o
|
|
obj-$(CONFIG_IR_IGUANA) += iguanair.o
|
|
obj-$(CONFIG_IR_TTUSBIR) += ttusbir.o
|
|
obj-$(CONFIG_RC_ST) += st_rc.o
|