Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有来自 SCSA 命令的 45 个字节用于 LBU:
0, 0, 4, 8, 0, 0, 0
我尝试将其导出为 python 中的 64 位 uuint LBU:
struct.unpack('GG', chr(0)+chr(0)+chr(4)+chr(8)+chr(0)+chr(0)+chr(0))
这个对吗?也许不吧...
谢谢
我看不出有任何方式可以将该价值解释为理智的 LBA。您是否可能正在查看 READ(12),而不是 READ(16)?如果是这种情况,那么字节将是一个完全正常的 LBA (0x2c30 = 11312) 和长度 (0x0800 = 2048)。