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.
我想使用 BCD 将 int 转换为 byte[4] 数组。
有问题的 int 将来自设备 ID 和他需要通过串行端口与设备通话。
是否有任何预制功能可以做到这一点,或者你能给我一个简单的方法吗?
例子:
int id= 29068082
会输出:
byte[4]{0x82, 0x80, 0x06, 0x29};