免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4554 | 回复: 1
打印 上一主题 下一主题

I2C应用程序和Linux内核驱动程序看到的数据不一致? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-05-13 21:11 |只看该作者 |倒序浏览
大家好!
我的设计中使用了I2C总线控制器。程序包括应用程序和驱动。
应用程序中,定义了下面的数组(数组的偶数项(0开始)表示I2C设备的地址。奇数项表示数据。):
unsigned char startRA[]={
      STA_REG_SOFT_RESET,      0x01,
      STA_REG_SOFT_RESET,      0x00,
      STA_REG_MUTE,            0x01,
      STA_REG_PCMDIVIDER,      0x01,
      STA_REG_PCMCONF,         0x31,
      STA_REG_PLLFRAC_441_H,   0x67,
      STA_REG_PLLFRAC_441_L,   0x77,
      STA_REG_PLLFRAC_H,       0xbb,
      STA_REG_PLLFRAC_L,       0x3a,
      STA_REG_MFSDF_441,       0x10,
      STA_REG_MFSDF,           0x0F,
      STA_REG_PLLCTL_2,        0x0C,
      STA_REG_PLLCTL_3,        0x00,
      STA_REG_PLLCTL_1,        0xA1,
      STA_REG_SCLK_POL,        0x00,
      STA_REG_REQ_POL,         0x01,
      STA_REG_DATA_REQ_ENABLE, 0x04,
      STA_REG_PLLCTL_1,        0xA1,
      STA_REG_RUN,             0x01,
      STA_REG_PLAY,            0x01,
      STA_REG_MUTE,            0x00,
      0xff,                    0xff };//0xff作为终止符号,没有传入内核
然后调用write函数把数组写入I2C总线内核驱动。传递给write函数的数据的类型为unsigned char。
可是,内核中的i2cdev_write是char:
static ssize_t i2cdev_write (struct file *file, const char __user *buf, size_t count,
                             loff_t *offset)
在测试中,我们在内核中把应用程序输入的数据打印出来如下:
i2cdev_write Kernel: 16
i2cdev_write Kernel: 16
i2cdev_write Kernel: 20
i2cdev_write Kernel: 84
i2cdev_write Kernel: 85
i2cdev_write Kernel: 82
i2cdev_write Kernel: 81
i2cdev_write Kernel: 101
i2cdev_write Kernel: 100
i2cdev_write Kernel: 80
i2cdev_write Kernel: 97
i2cdev_write Kernel: 6
i2cdev_write Kernel: 7
i2cdev_write Kernel: 5
i2cdev_write Kernel: 13
i2cdev_write Kernel: 12
i2cdev_write Kernel: 24
i2cdev_write Kernel: 5
i2cdev_write Kernel: 114
i2cdev_write Kernel: 19
i2cdev_write Kernel: 20
请问这个是怎么解释的?
把应用程序的所有数据都改写为int类型呢?哪位提供方法解决一下?

论坛徽章:
0
2 [报告]
发表于 2007-05-14 09:22 |只看该作者
原来是测试打印函数出错,传送进来的数据还是对的
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP