安卓 - 发送HDMI CEC命令到电视 - minix - libCEC
我正在研究Minix NEO X8-H(Android媒体中心,4.4.2),我需要将HDMI-CEC命令发送到电视:当我的应用程序接到电话时,我想自动将电视源更改为Minix hdmi源。
实际上,Minix提供了一些启用HDMI-CEC的选项,据报道,媒体中心软件XBMC支持CEC。但只有在“接收模式”下,我猜:用户可以使用电视遥控器命令Android设备。我想以相反的方式工作。我浏览了XBMC的源代码,我发现了非常有趣的代码,但不知道它是否对我有用。
我发现获得HDMI-CEC输入命令的串行设备
/dev/input/event7
内核引用位于:“/sys/devices/virtual/input/input7/”
# cat /sys/devices/virtual/input/input7/name
cec_input
这是 dmesg 日志的一部分:
<5>[ 0.000000@0] Kernel command line: init=/init console=ttyS0,115200n8 no_console_suspend storage=5 cvbsdrv=0 vdaccfg=0xa007 logo=osd1,loaded,0x15100000,4k2ksmpte,full hdmimode=4k2ksmpte cvbsmode=576cvbs androidboot.firstboot=0 hdmitx=cec0
<4>[ 0.000000@0] kernel get hdmimode form uboot is 4k2ksmpte
<4>[ 0.000000@0] hdmitx: cec: Function List: disable, , ,
<4>[ 0.000000@0] hdmitx: cec: HDMI aml_read_reg32(P_AO_DEBUG_REG0):0x0
<4>[ 0.000000@0] hdmitx: cec: HDMI hdmi_cec_func_config:0x0
<4>[ 1.392440@1] hdmitx: cec: CEC not ready
<4>[ 4.872752@0] hdmitx: cec: CEC init
<4>[ 4.876194@1] hdmitx: cec: CEC task process
<4>[ 4.876398@0] hdmitx: cec: hdmitx_device->cec_init_ready:0x1
这证明了HDMI-CEC内置支持的有效存在。
我找到了libCEC,我设法使用Android NDK工具链对其进行了交叉编译,并且我能够将“libcec.so”和演示客户端二进制文件“cec-client”安装到Minix上。
以下是构建选项:
asd@vm-ubuntu:~/Desktop/libcec/libcec-master/build$ cmake ..
-- Could NOT find PythonLibs (missing: PYTHON_LIBRARIES PYTHON_INCLUDE_DIRS)
-- Could NOT find PythonLibs (missing: PYTHON_LIBRARIES PYTHON_INCLUDE_DIRS)
-- Could NOT find PythonLibs (missing: PYTHON_LIBRARIES PYTHON_INCLUDE_DIRS)
-- Could NOT find PythonLibs (missing: PYTHON_LIBRARIES PYTHON_INCLUDE_DIRS)
-- Could NOT find SWIG (missing: SWIG_EXECUTABLE SWIG_DIR)
-- Configured features:
-- Pulse-Eight CEC Adapter: no
-- Pulse-Eight CEC Adapter detection: no
-- lockdev support: no
-- xrandr support: no
-- Raspberry Pi support: no
-- TDA995x support: no
-- Exynos support: no
-- Python support: no
-- lib info: compiled on Linux-3.13.0-35-generic, features: P8_USB
-- Configuring done
-- Generating done
-- Build files have been written to: /home/asd/Desktop/libcec/libcec-master/build
我知道libcec与外部hdmi-cec控制器一起工作,或者,如果使用Raspberry支持功能构建,它可以使用其集成的视频控制器在raspi上平稳运行。
如果它可以在raspi上运行,那么它必须能够在Minix上运行,我猜。
cec-client是一个演示客户端,开发用于与串行接口通信,实际上由于一些错误,它无法与/dev/input/evet7通信:
root@NEO-X8:/data # cec-client -t p -p 4 /dev/input/event7
== using device type 'playback device'
using HDMI port '4'
CEC Parser created - libCEC version 3.0.0
opening a connection to the CEC adapter...
DEBUG: [ 7] Broadcast (F): osd name set to 'Broadcast'
ERROR: [ 3520] error opening serial port '/dev/input/event7': Invalid argument
ERROR: [ 3521] could not open a connection (try 1)
ERROR: [ 6355] error opening serial port '/dev/input/event7': Too many open files
ERROR: [ 6355] could not open a connection (try 2)
ERROR: [ 8243] error opening serial port '/dev/input/event7': Too many open files
ERROR: [ 8243] could not open a connection (try 3)
ERROR: [ 9501] error opening serial port '/dev/input/event7': Too many open files
ERROR: [ 9501] could not open a connection (try 4)
unable to open the device on port /dev/input/event7
NOTICE: [ 10506] connection opened
但是AFAIK Hdmi-CEC使用串行通信协议,使用HDMI连接器的引脚13,因此即使“cec-client”是演示客户端,也必须能够正常工作!如您所见,锁定设备或类似问题时出现问题。
问题:
- 是否可以使用Java通过Android发送CEC命令?
- 如果没有,有人知道如何调整libCEC / cec-client以在Minix上工作吗?
如果Java方式是不可能的,那就没有问题了:我自己的应用程序是使用Qt构建的,实际上我已经在使用几个原生共享的librare“.so”。
有人有提示吗?如何做到这一点?