我正在使用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方式不可能没有问题:我自己的应用程序是使用Qt构建的,实际上我已经使用了几个本机共享库“.so”
有人有提示吗?怎么能做到这一点?
答案 0 :(得分:2)
首先,非常令人印象深刻的逆向工程工作!
其次,我面临类似的问题(但使用非Minix产品)。您是否尝试升级到较新的固件,例如:
http://minixforum.com/threads/x8-x8-plus-x8-h-official-firmware-004a-not-for-x8-h-plus.5567/
我建议将此作为一种可能的解决方案,因为它修复的问题之一是:
修复了HDMI-CEC多设备问题
这意味着该设备不仅是&#34;奴隶&#34;,而且还是&#34;主人&#34; (即可以向其他hdmi设备发送命令)。
请注意,如链接中所述,它不适用于加号版本。
祝你好运!答案 1 :(得分:1)
我在这个问题上的两分钱
我也经历了您遇到的所有麻烦,尤其是使用libCEC时,因此,我想描述一下我获得Android电视盒和通过HDMI电缆连接到它的电视之间进行任何交互的唯一方法。
发送请求以获取连接设备的电源状态
echo 0x40 0x8F > /sys/class/cec/cmd
要获得回复,您可以:
阅读“注册表”
cat /sys/class/cec/dump_reg
等待并在logcat中查找响应
// Example:
02-06 16:33:10.568 4012 4105 D CEC : [cec_rx_loop]msg:04 90 00
02-06 16:33:10.570 4012 4105 D HdmiCecExtend: onCecMessageRx
02-06 16:33:10.657 4012 4012 W HDMI : [1]:Unhandled cec command:<Report Power Status> src: 0, dst: 4, params: 00
02-06 16:33:10.762 4012 4104 D CEC : [cec_send_message][4 -> 0]len:3, body:00 90 00 , result:success
幻数(代码)说明:
40 - Playback device #1
04 - TV device #1
On - 90 00
Off - 00 00 // in registry or no response at all in logcat
可以在Cec-O-Matic上构造或读取其他可用代码。
我仍然必须尝试使用Android的HdmiControlService,但是我仍然不知道怎么做,可能是通过Java反射。您可以看到HdmiCecExtend: onCecMessageRx
,因此该API在设备上可用,但据我所知,它不能在Android Studio中使用。
如果有什么事情会更新。