gpt4 book ai didi

android - 将原始数据写入 Android 串行端口 (USB)

转载 作者:行者123 更新时间:2023-11-30 04:41:36 25 4
gpt4 key购买 nike

我需要为我的一个项目将一些“原始”数据写入 USB 端口(如果需要 root 则没有问题)。

我找到了一个 port of libusb for Android并设法用 NDK 编译它。我将库链接到我的可执行文件(以 root 身份执行),但函数“libusb_init”总是返回错误 (LIBUSB_ERROR_OTHER)。

我发现问题(到现在...)在文件“linux_usbfs.c”中,更准确地说是在这个函数中:

static const char *find_usbfs_path(void)
{
const char *path = "/dev/bus/usb";
const char *ret = NULL;

if (check_usb_vfs(path)) {
ret = path;
} else {
path = "/proc/bus/usb";
if (check_usb_vfs(path))
ret = path;
}

usbi_dbg("found usbfs at %s", ret);
return ret;
}

/dev/bus/usb 显然在我的 N1 上不存在。

最佳答案

为什么不试试 pyserial? python 对我来说似乎更简单。您需要一个带有 usb 主机模式的内核,或者您的手机本身支持通过 ttyMSM0 串口,您需要了解这一点。确定手机上有串行端口后,请查看此 link这适用于 huawei ideos U8150,但我建议使用 python for android 完成的 pyserial 内容是替代方案。

关于android - 将原始数据写入 Android 串行端口 (USB),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5880622/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com