保留 27 位到 19 位转换的数据
我有一个访问控制解决方案,其中 27 位格式为 13 位用于设施代码,14 位用于徽章 ID。相反,我需要将其转换为 8 位设施代码和 16 位徽章 ID。
为了使用 8 位设施代码大小获得相同的结果,我可以在 27 位方面进行转换的最大数字是多少?意思是,如果我有 13 位的设施代码,我可以砍掉多少位才能仍然获得相同的结果和 8 位大小?
I have an access control solution where the 27 bit format is 13 bits for the facility code and 14 bits for the badge ID. Conversely, I need to convert it into 8 bits for the facility code and 16 bits for the badge ID.
What is the largest number I can convert from on the 27 bit side to get the same result using the 8 bit facility code size? Meaning, if I have 13 bits for the facility code, how many bits can I chop off to still get the same result and an 8 bit size?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果设施代码从不大于255,您可以砍掉5 个最高有效位(即保留8 个最低有效位),而不会丢失信息。
If the facility code is never greater than 255, you can chop off the 5 most significant bits (i.e. keep the 8 least significant ones), without losing information.