如何在mac80211中编写定时器

发布于 2024-12-01 11:03:38 字数 61 浏览 2 评论 0原文

如何在mac80211中编写定时器来定期发送帧?

那么如何通过传递相应的参数来调用其他函数呢?

How can I write a timer in mac80211 to periodic send a Frame?

And how can I call the other function by transmit the corresponding parameters?

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

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

发布评论

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

评论(1

倾`听者〃 2024-12-08 11:03:38

检查我的 Ubuntu 时钟源:

cat /sys/devices/system/clocksource/clocksource0/available_clocksource
hpet acpi_pm

由于可能是过时的 RTC,这些是所有可能的时钟源。

mac80211 硬件没有计时器功能 - 一般情况下......无法推广到所有人。

无论如何,给定这些可用的时钟源,只需向定时器注册一个事件即可定期唤醒以通过 mac80211 发送数据。

例如,使用此作为基础:

http://blog.fpmurphy。 com/2009/07/linux-hpet-support.html

Checking my Ubuntu's clock sources:

cat /sys/devices/system/clocksource/clocksource0/available_clocksource
hpet acpi_pm

As possibly the outdated RTC, these are all the possible clock sources available.

the mac80211 hardware does not have the timer functionality - NORMALLY.....cannot generalize for all.

Anyway, given these available clocksource, just have to a register an event with the timer to wake periodically to send out data via mac80211.

For example, use this as a base:

http://blog.fpmurphy.com/2009/07/linux-hpet-support.html

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