问题描述
我目前正在与Contiki-NG合作开发一个无线传感器网络项目.但是,我需要添加无线电占空比"功能以节省能源.可以使用contiki mac在Contiki中添加RDC.好像Contiki-ng没有contiki mac这样的东西.我可以在 contiki-ng/os/net/mac/中看到的只有CSMA MAC,BLE MAC,TSCH MAC,NullMAC和一些共享的MAC组件.有什么方法可以在Contiki-NG上使用RDC吗?
I'm currently developing a wireless sensor network project with Contiki-NG. However, I need to add Radio Duty Cycling feature to save energy. It was possible to add RDC in Contiki using contiki mac. It seems to be Contiki-ng does not have such thing as contiki mac. All I can see inside contiki-ng/os/net/mac/ are CSMA MAC, BLE MAC, TSCH MAC, NullMAC and some shared MAC components. Is there any way we can use RDC on Contiki-NG?
推荐答案
如果需要工作循环,可以使用TSCH:TSCH自行完成.
You can use TSCH if you need duty cycling: TSCH does it on its own.
或者您可以在应用程序代码中打开和关闭CSMA.
Or you can togggle CSMA on and off from the application code.
这篇关于Contiki-NG是否支持无线电占空比(RDC)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!