本文介绍了问题与平板电脑检测同步数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我和我的同事都制定和实施上的Andr​​oid平板电脑为一家公司的申请。我们开始与基本完成使用Eclipse AVD有问题的应用程序的开发(我们有没有收到该平板电脑还)和它完美的作品。

My colleague and I have to develop and implement an application on an Android tablet for a company. We started and almost completed the development of the application in question using the Eclipse AVD (we hadn't recieved the tablet yet) and it works perfectly.

我们收到的应用程序必须安装在其上的平板电脑,型号为:SynchroDigital INOSOP10-4.0 RES,10与ICS,少于100€,真正便宜的。

We received the tablet on which the application must be installed, the model:SynchroDigital INOSOP10-4.0 RES, 10" with ICS, less than 100 €, the really cheap one.

我们的问题:我的电脑无法识别的平板电脑(WIN7,无法连接时安装驱动程序,但我已经研制成功的Galaxy S和Galaxy Tab键)。我可以访问存储空间时,我激活的大容量存储,但它不会被识别为一个平板电脑,因此它不能从Eclipse中直接编译,没有出现在设备列表中显示。

Our problem: my PC doesn't recognize the tablet (WIN7, unable to install drivers when connecting, although I've already successfully developed on Galaxy S and Galaxy Tab). I have access to the storage space when I activate mass storage but it is not recognized as a tablet, therefore it can't compile directly from Eclipse, nothing appears in the device list.

启用USB调试不会改变任何东西。
在logcat中没有活动连接平板电脑的时候。
在设备管理,我觉得在其他设备/ Android的平板电脑,与黄三角。制造商的网站提供了一个支持一节,但没有联系到司机。
试图与另一台电脑,同样的结果。

Enabling USB debugging doesn't change anything.
No activity in the logcat when connecting the tablet.
In device management, I find the tablet under Other Devices / Android, with the yellow triangle. The manufacturer's website offers a "Support" section, but no link to the drivers.
Tried with another PC, same result.

任何想法?有没有可能是一些药丸不允许直接从Eclipse的开发?

Any ideas? Is it possible that some tablets doesn't allow developing directly from Eclipse?

推荐答案

首先,这是一个驱动程序问题。不幸的是,你是相当的运气没有驱动程序。

First, this is a driver problem. Unfortunately you are rather out of luck without the driver.

有一对夫妇的事情,你可以尝试从最简单到最困难的:

There are a couple things you can try from easiest to hardest:

  1. 如果你有一个MAC在办公室里,试试吧,你往往不需要驱动程序。
  2. 如果该设备是植根,你可以使用亚行无线
  3. 您可以尝试修改谷歌Android驱动程序(见下文)

修改:此方法效果可靠地在Windows上。如果您运行的是Windows 8,你必须重新启动到高级启动菜单,并禁用驱动程序签名安装修改后的驱动程序。

EDIT This method works reliably on Windows. If you are running Windows 8, you have to reboot into the advanced startup menu and disable driver signing to install the modified driver.

谷歌包括USB驱动程序的Nexus设备的SDK的一部分。如果您尚未安装的SDK管理器中的谷歌USB驱动程序包,这样做的。

Google includes the USB drivers for the Nexus devices as part of the SDK. If you haven't installed the Google USB Driver package from the SDK Manager, do so.

从SDK文件夹,我看到司机在这里:/ Android的SDK-窗口/谷歌的USB驱动器/

From the SDK folder, I see the drivers here:/android-sdk-windows/google-usb-driver/

打开android_winusb.inf,你可以看到Nexus One的一个示例条目:

Opening the android_winusb.inf, you can see a sample entry for the Nexus One:

;Google Nexus One
%SingleAdbInterface%        = USB_Install, USB\VID_18D1&PID_0D02
%CompositeAdbInterface%     = USB_Install, USB\VID_18D1&PID_0D02&MI_01
%SingleAdbInterface%        = USB_Install, USB\VID_18D1&PID_4E11
%CompositeAdbInterface%     = USB_Install, USB\VID_18D1&PID_4E12&MI_01

注意此项目是在两个位置(在32位驱动程序和64位驱动程序部分)。我们要创建一个新的项目,但我们将最有可能只有2硬件ID。因此,在[Google.NTx86]节,创建一个条目:

NOTE This entry is in two locations (the 32-bit driver and 64-bit driver sections). We are going to create a new entry, but ours will most likely only have 2 hardware IDs. So under the [Google.NTx86] section, create an entry:

;SynchroDigital INOSOP10-4.0 RES
%SingleAdbInterface%        = USB_Install,
%CompositeAdbInterface%     = USB_Install,

现在我们需要填补空白。

Now we need to fill in the blanks.

  • 打开了设备管理器
  • 转到其他设备/ Android和开拓与黄色的入口三角
  • 转到细节标签
  • 从属性下拉列表中选择硬件ID
  • Open up device manager
  • Go to Other Devices / Android and open up the entry with the yellowtriangle
  • Go to details tab
  • Select hardware IDs from the Property dropdown

看起来很熟悉?例如:USB \ VID_0BB4和放大器; PID_0CBB和放大器; MI_01

Look familiar?Example: USB\VID_0BB4&PID_0CBB&MI_01

复制这些粘贴到适当的地方:

Copy and paste these into the appropriate place:

;SynchroDigital INOSOP10-4.0 RES
%SingleAdbInterface%        = USB_Install, USB\VID_0BB4&PID_0CBB&MI_01
%CompositeAdbInterface%     = USB_Install, USB\VID_0BB4&PID_0CBB&REV_0228&MI_01

注意我不的认为的是它的问题,您粘贴这些硬件ID,我的认为的是,变量名只是化妆品的目的。我可能是错的,我不写Windows驱动程序。

NOTE I don't think that it matters where you paste these hardware IDs, I think that the variable names are just for cosmetic purposes. I could be wrong, I don't write windows drivers.

现在复制和粘贴整个进入[Google.NTamd64]部分。全部完成后,尝试和更新的驱动程序,看它是否接受它。

Now copy and paste that entire entry into the [Google.NTamd64] section. All done, try and update the driver and see whether it accepts it.

这篇关于问题与平板电脑检测同步数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 07:34