- 论坛徽章:
- 0
|
大家好!
我的设计中使用了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类型呢?哪位提供方法解决一下? |
|