阅读:1765回复:2
急救!给50分!!!!!!!!!!!!!!!
我用9052设计的12位数据采集卡时用SDK写程序遇到了一些问题。
请各位大侠帮忙解决一下,我将给50分做回报。 部分代码如下: FILE stream; U16 buffer[10000]; stream = fopen( \"c:\\\\c.txt\", \"a+\" ); PlxBusIopRead( hDevice, IopSpace0, 0x0, FALSE, buffer, sizeof(buffer), BitSize16 ); fwrite(buffer, sizeof(buffer),1, stream ); 问题: 1,写到文件里是乱码。 2,buffer定义的大小不同得到的乱码也不一样。 3,buffer大小采用10进制和16进制得到的乱码也不一样。 4,是不是在写文件之前需要进行什么处理? 请各位写过这样的程序的大侠多多帮忙。 |
|
沙发#
发布于:2003-07-24 15:36
调试时Buffer里的值是多少?
用printf打出来看看。 |
|
|
板凳#
发布于:2003-07-26 02:45
you may try this way:
1. by pass PlxBusIopRead();(don\'t call this function) 2. set a sequence number into you allocated buffer; 3. write into the file; if the problem happens, then check buffer, allocate Ok?; if the problem not more, then check PlxBusIopRead(); |
|