如何在mac80211中编写定时器
如何在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查我的 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