3658|4

87

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

串口的WriteFile問題 [复制链接]


BOOL WINAPI WriteFile(
  __in         HANDLE hFile,
  __in         LPCVOID lpBuffer,
  __in         DWORD nNumberOfBytesToWrite,
  __out_opt    LPDWORD lpNumberOfBytesWritten,
  __inout_opt  LPOVERLAPPED lpOverlapped
);

WriteFile 返回TRUE
这时候应该表示数据是已经通过串口发送出去了

可是"lpNumberOfBytesWritten"却是0
说明我传送了0 byte
倒底是有没有成功传送??

最新回复

对  详情 回复 发表于 2008-3-18 10:21
点赞 关注

回复
举报

84

帖子

0

TA的资源

一粒金砂(中级)

沙发
 
返回TRUE表示调用WriteFile成功。以下是MSDN中对于lpNumberOfBytesWritten的说明:
lpNumberOfBytesWritten
[out] Pointer to the variable that receives the number of bytes written. WriteFile sets this value to zero before doing any work or error checking.
If lpOverlapped is NULL, lpNumberOfBytesWritten cannot be NULL. If lpOverlapped is not NULL, lpNumberOfBytesWritten can be NULL. If this is an overlapped write operation, you can get the number of bytes written by calling GetOverlappedResult. If hFile is associated with an I/O completion port, you can get the number of bytes written by calling GetQueuedCompletionStatus.

If I/O completion ports are used and you are using a callback routine to free the memory allocated to the OVERLAPPED structure pointed to by the lpOverlapped parameter, specify NULL as the value of this parameter to avoid a memory corruption problem during the deallocation. This memory corruption problem will cause an invalid number of bytes to be returned in this parameter.

 
 

回复

68

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
这跟打开串口的方式有关。
 
 
 

回复

75

帖子

0

TA的资源

一粒金砂(初级)

4
 
所以~
返回TRUE表示调用WriteFile成功
并不能表示数据是已经通过串口发送出去了
可以这样解怿吗??
谢谢~

 
 
 

回复

71

帖子

0

TA的资源

一粒金砂(初级)

5
 
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/8 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表