- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用通过 USB 连接的 ACS ACR1252U 读卡器 ( http://www.acs.com.hk/en/products/342/acr1252u-usb-nfc-reader-iii-nfc-forum-certified-reader/ ),老实说,我不知道如何让它工作。我用谷歌搜索了很多东西,但没有运气。我正在使用 Debian 的变体。以下或多或少是我所做的:
我使用 dmesg 得到以下信息:
[ 7173.059710] usb 1-1.3: new full-speed USB device number 6 using dwc_otg
[ 7173.160500] usb 1-1.3: not running at top speed; connect to a high speed hub
[ 7173.163114] usb 1-1.3: New USB device found, idVendor=072f, idProduct=223b
[ 7173.163147] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 7173.163168] usb 1-1.3: Product: ACR1252 Dual Reader
[ 7173.163186] usb 1-1.3: Manufacturer: ACS
我使用以下 Python 代码获取有关设备的更多详细信息:
#!/usr/bin/python
import sys
import usb.core
# find USB devices
dev = usb.core.find(find_all=True)
# loop through devices, printing vendor and product ids in decimal and hex
for cfg in dev:
print cfg
sys.stdout.write('Decimal VendorID=' + str(cfg.idVendor) + ' & ProductID=' + str(cfg.idProduct) + '\n')
sys.stdout.write('Hexadecimal VendorID=' + hex(cfg.idVendor) + ' & ProductID=' + hex(cfg.idProduct) + '\n\n')
这个特定设备的输出是:
DEVICE ID 072f:223b on Bus 001 Address 004 =================
bLength : 0x12 (18 bytes)
bDescriptorType : 0x1 Device
bcdUSB : 0x200 USB 2.0
bDeviceClass : 0x0 Specified at interface
bDeviceSubClass : 0x0
bDeviceProtocol : 0x0
bMaxPacketSize0 : 0x40 (64 bytes)
idVendor : 0x072f
idProduct : 0x223b
bcdDevice : 0x100 Device 1.0
iManufacturer : 0x1 ACS
iProduct : 0x2 ACR1252 Dual Reader
iSerialNumber : 0x0
bNumConfigurations : 0x1
CONFIGURATION 1: 200 mA ==================================
bLength : 0x9 (9 bytes)
bDescriptorType : 0x2 Configuration
wTotalLength : 0xb1 (177 bytes)
bNumInterfaces : 0x2
bConfigurationValue : 0x1
iConfiguration : 0x0
bmAttributes : 0x80 Bus Powered
bMaxPower : 0x64 (200 mA)
INTERFACE 0: Smart Card ================================
bLength : 0x9 (9 bytes)
bDescriptorType : 0x4 Interface
bInterfaceNumber : 0x0
bAlternateSetting : 0x0
bNumEndpoints : 0x3
bInterfaceClass : 0xb Smart Card
bInterfaceSubClass : 0x0
bInterfaceProtocol : 0x0
iInterface : 0x4 ACR1252 Dual Reader PICC
ENDPOINT 0x1: Bulk OUT ===============================
bLength : 0x7 (7 bytes)
bDescriptorType : 0x5 Endpoint
bEndpointAddress : 0x1 OUT
bmAttributes : 0x2 Bulk
wMaxPacketSize : 0x40 (64 bytes)
bInterval : 0x0
ENDPOINT 0x81: Bulk IN ===============================
bLength : 0x7 (7 bytes)
bDescriptorType : 0x5 Endpoint
bEndpointAddress : 0x81 IN
bmAttributes : 0x2 Bulk
wMaxPacketSize : 0x40 (64 bytes)
bInterval : 0x0
ENDPOINT 0x84: Interrupt IN ==========================
bLength : 0x7 (7 bytes)
bDescriptorType : 0x5 Endpoint
bEndpointAddress : 0x84 IN
bmAttributes : 0x3 Interrupt
wMaxPacketSize : 0x40 (64 bytes)
bInterval : 0xa
INTERFACE 1: Smart Card ================================
bLength : 0x9 (9 bytes)
bDescriptorType : 0x4 Interface
bInterfaceNumber : 0x1
bAlternateSetting : 0x0
bNumEndpoints : 0x3
bInterfaceClass : 0xb Smart Card
bInterfaceSubClass : 0x0
bInterfaceProtocol : 0x0
iInterface : 0x5 ACR1252 Dual Reader SAM
ENDPOINT 0x2: Bulk OUT ===============================
bLength : 0x7 (7 bytes)
bDescriptorType : 0x5 Endpoint
bEndpointAddress : 0x2 OUT
bmAttributes : 0x2 Bulk
wMaxPacketSize : 0x40 (64 bytes)
bInterval : 0x0
ENDPOINT 0x82: Bulk IN ===============================
bLength : 0x7 (7 bytes)
bDescriptorType : 0x5 Endpoint
bEndpointAddress : 0x82 IN
bmAttributes : 0x2 Bulk
wMaxPacketSize : 0x40 (64 bytes)
bInterval : 0x0
ENDPOINT 0x83: Interrupt IN ==========================
bLength : 0x7 (7 bytes)
bDescriptorType : 0x5 Endpoint
bEndpointAddress : 0x83 IN
bmAttributes : 0x3 Interrupt
wMaxPacketSize : 0x40 (64 bytes)
bInterval : 0xa
Decimal VendorID=1839 & ProductID=8763
Hexadecimal VendorID=0x72f & ProductID=0x223b
我安装了 PyUSB 并且我能够使用一些示例代码检测设备,但是当它靠近时读取 NFC 卡没有什么比这更好的了(尽管有哔哔声,这让我相信 USB 设备本身工作正常)。
我还安装了 libacsccid1 包,它说它支持这个设备 https://github.com/acshk/acsccid , 但我不知道如何使用它。
除此之外,我不知道还能做什么。任何帮助将不胜感激。我的项目的目标是根据检测到的 NFC 标签的值来控制 GPIO 输出。
--- 更新 ---
我做了更多的工作,虽然我仍然无法让它工作,但我有更多的数据。具体来说,我正在解决这个问题:http://www.digitalmihailo.com/usb-programming-with-python-on-linux-pyusb-version/
从数据表中我可以确认它是 USB 2.0 全速设备:
为了测试,我只想让蜂鸣器发出声音。以下是此功能的设备 API 文档的屏幕截图:
因此,http://www.digitalmihailo.com/usb-programming-with-python-on-linux-pyusb-version/ 的简化版本对于我的设备将是:
#!/usr/bin/python
import os
import sys
import time
import usb.core
import usb.util
# According to what I've read, full speed USB is 64 byte packet size.
packet_len = 64
# Packing a request.
# Packets are 64 bytes long, most of the commands are 4 bytes long. So up to 18
# can be batched into a packet. For example command with bytes [0x94, 0x0, 0x0, 0x0] is getting firmware id
def pack_request(*arguments):
packet = [0x0] * packet_len
i = 0
for arg in arguments:
packet[i] = arg
i += 1
#packet[0:4] = [0x94, 0x0, 0x0, 0x0] #get firmware id
return ''.join([chr(c) for c in packet])
def main():
#Updated for the ACS ACR1252U
dev = usb.core.find(idVendor=0x72f, idProduct=0x223b)
# was it found?
if dev is None:
raise ValueError('Device not found')
try:
dev.detach_kernel_driver(0)
except: # this usually mean that kernel driver has already been dettached
pass
# ACS ACR1252U only has 1 configuration
dev.set_configuration()
# Interface 0: Dual Reader PICC. This is what we want
# Interface 1: Dual Reader SAM
try:
dev.set_interface_altsetting(0)
except usb.core.USBError:
print 'Error setting interface!'
pass
# According to the API, to sound the buzzer we must send:
#
# Class: 0xe0
# INS: 0x00
# P1: 0x00
# P2: 0x28
# Lc: 0x01
# DataIn (duration): 0xff (for 255 * 10ms = 2.55 seconds)
raw = pack_request(0xe0, 0x00, 0x00, 0x28, 0x01, 0xff)
#send the packet
# Params are (endpoint, data, timeout)
#
# According to the script output:
# ENDPOINT 0x01: Bulk OUT
dev.write(endpoint=0x01, data=raw)
#done
if __name__ == '__main__':
main()
当我运行此程序时,什么也没有发生……没有蜂鸣器,没有错误消息。这里可能出了什么问题?
谢谢!
最佳答案
出于好奇,我打开了 Info.plist(在 /usr/lib/pcsc/drivers/ifd-acsccid.bundle/Contents/
中),发现我的设备没有列出。
所以我继续将我的信息添加到 ifdVendorID (0x072F)、ifdProductID (0x223B) 和 ifdFriendlyName(ACS ACR1252U 双 PICC-SAM 读卡器)数组中,然后运行 pcscd -fd。
仅在这一步之后,pcsc_scan 才真正检测到我的设备,其他一切或多或少开始工作。最后,我没有直接使用 USB,而是使用了 pyscard ( http://pyscard.sourceforge.net/) 库。
这让蜂鸣器工作:
def sound_buzzer(reps):
#NOTE: This function only works if a card is present!
try:
hresult, hcontext = SCardEstablishContext(SCARD_SCOPE_USER)
assert hresult == SCARD_S_SUCCESS
hresult, readers = SCardListReaders(hcontext, [])
assert len(readers) > 0
reader = readers[0]
hresult, hcard, dwActiveProtocol = SCardConnect(hcontext, reader, SCARD_SHARE_SHARED, SCARD_PROTOCOL_T0 | SCARD_PROTOCOL_T1)
while reps > 0:
buzzer = [0xE0, 0x00, 0x00, 0x28, 0x01, 0x0F] # 0x0F = 15 * 10ms
hresult, response = SCardControl(hcard, SCARD_CTL_CODE(3500), buzzer)
sleep(0.15)
reps = reps - 1
except Exception, e:
#print 'Exception: '+ str(e)
pass
return
关于python - 在 Linux 中使用 ACS ACR1252U USB NFC 读卡器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31730218/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
Linux 管道可以缓冲多少数据?这是可配置的吗? 如果管道的两端在同一个进程中,但线程不同,这会有什么不同吗? 请注意:这个“同一个进程,两个线程”的问题是理论上的边栏,真正的问题是关于缓冲的。 最
我找到了here [最后一页] 一种有趣的通过 Linux 启动 Linux 的方法。不幸的是,它只是被提及,我在网上找不到任何有用的链接。那么有人听说过一种避免引导加载程序而使用 Linux 的方法
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
我试图了解 ld-linux.so 如何在 Linux 上解析对版本化符号的引用。我有以下文件: 测试.c: void f(); int main() { f(); } a.c 和 b.c:
与 RetroPie 的工作原理类似,我可以使用 Linux 应用程序作为我的桌面环境吗?我实际上并不需要像实际桌面和安装应用程序这样的东西。我只需要一种干净简单的方法来在 RaspberryPi 上
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 10 年前。 Improve thi
有什么方法可以覆盖现有的源代码,我应该用 PyQt、PyGTK、Java 等从头开始构建吗? 最佳答案 如果您指的是软件本身而不是它所连接的存储库,那么自定义应用程序的方法就是 fork 项目。据我所
我的情况是:我在一个磁盘上安装了两个 linux。我将第一个安装在/dev/sda1 中,然后在/dev/sda2 中安装第二个然后我运行第一个系统,我写了一个脚本来在第一个系统运行时更新它。
我在 i2c-0 总线上使用地址为 0x3f 的系统监视器设备。该设备在设备树中配置有 pmbus 驱动程序。 问题是,加载 linux 内核时,这个“Sysmon”设备没有供电。因此,当我在总线 0
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 11 年前。 Improve thi
我正试图在 linux 模块中分配一大块内存,而 kalloc 做不到。 我知道唯一的方法是使用 alloc_bootmem(unsigned long size) 但我只能从 linux 内核而不是
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我有 .sh 文件来运行应用程序。在该文件中,我想动态设置服务器名称,而不是每次都配置。 我尝试了以下方法,它在 CentOS 中运行良好。 nohup /voip/java/jdk1.8.0_71/
我是在 Linux 上开发嵌入式 C++ 程序的新手。我有我的 Debian 操作系统,我在其中开发和编译了我的 C++ 项目(一个简单的控制台进程)。 我想将我的应用程序放到另一个 Debian 操
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 4 年前。 Improve this ques
我使用4.19.78版本的稳定内核,我想找到带有企鹅二进制数据的C数组。系统启动时显示。我需要在哪里搜索该内容? 我在 include/linux/linux_logo.h 文件中只找到了一些 Log
我知道可以使用 gdb 的服务器模式远程调试代码,我知道可以调试针对另一种架构交叉编译的代码,但是是否可以更进一步,从远程调试 Linux 应用程序OS X 使用 gdbserver? 最佳答案 当然
是否有任何可能的方法来运行在另一个 Linux 上编译的二进制文件?我知道当然最简单的是在另一台机器上重建它,但假设我们唯一能得到的是一个二进制文件,那么这可能与否? (我知道这可能并不容易,但我只是
我是一名优秀的程序员,十分优秀!