IEEE 802.11b 中的长度字段

发布于 2024-10-19 11:16:43 字数 191 浏览 2 评论 0原文

我正在模拟 IEEE802.11b PHY 模型。我正在物理层中构建数据包的标头。

根据文献

PLCP LENGTH 字段应为无符号 16 位整数,指示传输 PPDU 的微秒数。

如果我假设数据包大小为 1024Bytes,则长度字段的值应该是多少(16 位宽)

I am simulating the IEEE802.11b PHY Model. I am building the header of the Packet in the Physical Layer.

As per the Literature

The PLCP LENGTH field shall be an unsigned 16-bit integer that indicates the number of microseconds to transmit the PPDU.

If I assume the packet size to be 1024Bytes, what should be the value of the Length field(16 bit wide)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光是把杀猪刀 2024-10-26 11:16:44

LENGTH 字段的计算取决于要发送的字节数以及数据速率(5.5 或 11 Mbps)。计算的基本思想是:

                        Bytes * 8
LENGTH = Time (µs) = ----------------
                     Data rate (Mbps)

但是,您需要阅读802.11b-1999 标准,第 15-17 页。它包含如何计算该值的完整详细信息以及几个示例。它明确地解释了如何正确舍入数据,以及何时应设置 SERVICE 字段中的长度扩展位

我不会在此处复制该部分的文本,因为看起来 IEEE 可能会严格执行其版权。但是,如果您还没有该标准,我建议您立即从上面的链接下载它 - 它是免费的!

如果您对解释该标准有任何疑问,请随时询问。

The calculation of the LENGTH field depends on the number of bytes to send, as well as on the data rate (5.5 or 11 Mbps). The basic idea of the calculation is:

                        Bytes * 8
LENGTH = Time (µs) = ----------------
                     Data rate (Mbps)

However, you need to read Section 18.2.3.5, Long PLCP LENGTH field in the 802.11b-1999 Standard, pages 15-17. It has the complete details of how to calculate this value, along with several examples. It unambiguously explains how to properly round the data, as well as when the length extension bit in the SERVICE field should be set.

I will not reproduce the text of the section here since it looks like IEEE might be strict about enforcing their copyright. However, if you don't have the standard already, I suggest you download it now from the link above -- it's free!

If you have any questions about interpreting the standard, don't hesitate to ask.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文