专家
公告
财富商城
电子网
旗下网站
首页
问题库
专栏
标签库
话题
专家
NEW
门户
发布
提问题
发文章
嵌入式
Linux应用层的精确延迟函数
2019-07-13 03:00
发布
生成海报
站内文章
/
嵌入式Linux
9783
0
1108
#include
#include
#include
void mdelay(int ms_count) { struct timeval tpStart, tpEnd; float timeUse; gettimeofday(&tpStart, NULL); do { gettimeofday(&tpEnd, NULL); timeUse = 1000 * (tpEnd.tv_sec - tpStart.tv_sec) + 0.001 * (tpEnd.tv_usec - tpStart.tv_usec); } while(timeUse < ms_count); }
Ta的文章
更多
>>
Linux应用层的精确延迟函数
0 个评论
数据定义
0 个评论
热门文章
×
关闭
举报内容
检举类型
检举内容
检举用户
检举原因
广告推广
恶意灌水
回答内容与提问无关
抄袭答案
其他
检举说明(必填)
提交
关闭
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮