如何在Linux上限制USB2.0传输速率?
我有一个简单的项目,可以限制Linux上的USB2.0传输速率。使用此程序,用户可以选择他们想要的任何传输速度,例如 10 Mbps。但我不知道从哪里开始或做什么。如果您有任何想法,我将非常高兴。一个有用的库或函数或其他什么。预先感谢您的任何帮助。
I have a simple project which can limit USB2.0 transfer rate on linux. With this program users can select any transfer speed they want, let say 10 Mbps. But I don't know where to start or what to do. I will be very glad if you have any idea. An useful library or function or whatever. Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想限制整个系统上的 GLOBAL USB2.0 速率,那么你可能必须编写一个 Linux 内核模块。学习内核编程非常困难,而不是被认为是“简单的项目”。
如果您想为一个简单的应用程序执行此操作,那么只需在程序中放置一些计时器,根据用户的选择“限制”数据写入/读取。请注意,此代码必须位于应用程序本身中。
If you want to limit GLOBAL USB2.0 rate on the whole system, then you must probably write a Linux Kernel module. Learning kernel programming is very hard and not something that is considered a "simple project".
If you want to do it for a simple application then just put some timers in the program that "throtte" data writing/reading according to user selection. Notice that this code has to be in the application itself.