当前位置:   article > 正文

Linux驱动_spi驱动(ICM20608)_spi-max-frequency

spi-max-frequency

参考: 

Linux SPI 驱动分析(1)— 结构框架_StephenZhou-CSDN博客_linux spi驱动

Linux SPI 驱动分析(2)— 框架层源码分析_StephenZhou-CSDN博客_spi_message_init

SPI驱动的框架和源码分析,可以在参考博客中查看。

驱动编写测试 :

        原理图如下所示:

        LINUX下的SPI主机驱动已经由SOC厂商编写好了,比如I.MX6ULL的SPI主机驱动由NXP官方编写好了,我们编写设备驱动的时候主需要调用相应的api函数。 

 一、修改设备树

       1、添加电气属性

        使用芯片的spi控制器,肯定得配置相应的管脚复用,因此在 iomuxc 节点中添加一个新的子节点来描述 ICM20608 所使用的 SPI 引脚,子节点名字为 pinctrl_ecspi3,节点内容如下所示:

  1. pinctrl_ecspi3: ecspi3grp {
  2. fsl,pins = <
  3. MX6UL_PAD_UART2_TX_DATA__GPIO1_IO20 0x10B0 /*将管脚复用为GPIO模式,设置spi电气属性为0X10B0*/
  4. MX6UL_PAD_UART2_RX_DATA__ECSPI3_SCLK 0x10B1
  5. MX6UL_PAD_UART2_CTS_B__ECSPI3_MOSI 0x10B1
  6. MX6UL_PAD_UART2_RTS_B__ECSPI3_MISO 0x10B1>;
  7. };

        #GPIO1_IO20为片选管脚,其余3个功能不用多说。

        2、添加icm20608设备信息

  1. &ecspi3 {
  2. fsl,spi-num-chipselects = <1>; /*一个片选信号*/
  3. cs-gpios = <&gpio1 20 GPIO_ACTIVE_LOW>; /*软件片选引脚,低电平有效*/
  4. pinctrl-names = "default";
  5. pinctrl-0 = <&pinctrl_ecspi3>;
  6. status = "okay";
  7. /*对应的spi子节点*/
  8. spidev0: icm20608@0 { /*@后面的0表示spi芯片接到哪个硬件片选上,本实验硬件上接到了0,但使用的是软件片选*/
  9. reg = <0>; /*required*/
  10. compatible = "alientek,icm20608";
  11. spi-max-frequency = <8000000>; /*SPI时钟频率8MHZ*/
  12. };
  13. };

        在ecspi3控制器下只接了一个icm20608,因此片选信号数量为1。
        cs-gpios描述的是片选管脚,设置的是低电平有效。
        spi-max-frequency设置的是spi最大时钟频率。

二、设备驱动编写

        1、spi驱动编写框架

  1. /* 传统匹配方式 ID 列表 */
  2. static const struct spi_device_id icm20608_id[] = {
  3. {"alientek,icm20608", 0},
  4. {}
  5. };
  6. /* 设备树匹配列表 */
  7. static const struct of_device_id icm20608_of_match[] = {
  8. { .compatible = "alientek,icm20608" },
  9. { /* Sentinel */ }
  10. };
  11. /* SPI 驱动结构体 */
  12. static struct spi_driver icm20608_driver = {
  13. .probe = icm20608_probe,
  14. .remove = icm20608_remove,
  15. .driver = {
  16. .owner = THIS_MODULE,
  17. .name = "icm20608",
  18. .of_match_table = icm20608_of_match,
  19. },
  20. .id_table = icm20608_id,
  21. };
  22. /*
  23. * @description : 驱动入口函数
  24. * @param : 无
  25. * @return : 无
  26. */
  27. static int __init icm20608_init(void)
  28. {
  29. return spi_register_driver(&icm20608_driver);
  30. }
  31. /*
  32. * @description : 驱动出口函数
  33. * @param : 无
  34. * @return : 无
  35. */
  36. static void __exit icm20608_exit(void)
  37. {
  38. spi_unregister_driver(&icm20608_driver);
  39. }
  40. module_init(icm20608_init);
  41. module_exit(icm20608_exit);
  42. MODULE_LICENSE("GPL");
  43. MODULE_AUTHOR("ZYC");

        可以看出spi驱动的框架和i2c驱动框架差不多,通过设备树匹配方式,当驱动和设备树中的设备compatible属性匹配以后就会执行,.probe函数,当卸载驱动的时候就会执行.remove函数。

        我们通常在.probe函数中调用字符设备的框架流程来注册!(包括注册设备、注册类、申请设备号等)

         2、完整spi驱动

  1. #include <linux/types.h>
  2. #include <linux/kernel.h>
  3. #include <linux/delay.h>
  4. #include <linux/ide.h>
  5. #include <linux/init.h>
  6. #include <linux/module.h>
  7. #include <linux/errno.h>
  8. #include <linux/gpio.h>
  9. #include <linux/cdev.h>
  10. #include <linux/device.h>
  11. #include <linux/of_gpio.h>
  12. #include <linux/semaphore.h>
  13. #include <linux/timer.h>
  14. #include <linux/i2c.h>
  15. #include <linux/spi/spi.h>
  16. #include <linux/of.h>
  17. #include <linux/of_address.h>
  18. #include <linux/of_gpio.h>
  19. #include <linux/platform_device.h>
  20. #include <asm/mach/map.h>
  21. #include <asm/uaccess.h>
  22. #include <asm/io.h>
  23. #include "icm20608reg.h"
  24. #define ICM20608_CNT 1
  25. #define ICM20608_NAME "icm20608"
  26. struct icm20608_dev {
  27. dev_t devid; /* 设备号 */
  28. struct cdev cdev; /* cdev */
  29. struct class *class; /* 类 */
  30. struct device *device; /* 设备 */
  31. struct device_node *nd; /* 设备节点 */
  32. int major; /* 主设备号 */
  33. void *private_data; /* 私有数据 */
  34. signed int gyro_x_adc; /* 陀螺仪X轴原始值 */
  35. signed int gyro_y_adc; /* 陀螺仪Y轴原始值 */
  36. signed int gyro_z_adc; /* 陀螺仪Z轴原始值 */
  37. signed int accel_x_adc; /* 加速度计X轴原始值 */
  38. signed int accel_y_adc; /* 加速度计Y轴原始值 */
  39. signed int accel_z_adc; /* 加速度计Z轴原始值 */
  40. signed int temp_adc; /* 温度原始值 */
  41. };
  42. static struct icm20608_dev icm20608dev;
  43. /*
  44. * @description : 从icm20608读取多个寄存器数据
  45. * @param - dev: icm20608设备
  46. * @param - reg: 要读取的寄存器首地址
  47. * @param - val: 读取到的数据
  48. * @param - len: 要读取的数据长度
  49. * @return : 操作结果
  50. */
  51. static int icm20608_read_regs(struct icm20608_dev *dev, u8 reg, void *buf, int len)
  52. {
  53. u8 data=0;
  54. struct spi_device *spi = (struct spi_device *)dev->private_data;
  55. data = reg | 0x80;
  56. spi_write_then_read(spi, &data, 1, buf, len); //读寄存器数据,先写入地址再读
  57. return 0;
  58. }
  59. /*
  60. * @description : 向icm20608多个寄存器写入数据
  61. * @param - dev: icm20608设备
  62. * @param - reg: 要写入的寄存器首地址
  63. * @param - val: 要写入的数据缓冲区
  64. * @param - len: 要写入的数据长度
  65. * @return : 操作结果
  66. */
  67. static s32 icm20608_write_regs(struct icm20608_dev *dev, u8 reg, u8 *buf, u8 len)
  68. {
  69. u8 *txdata;
  70. struct spi_device *spi = (struct spi_device *)dev->private_data;
  71. txdata = kzalloc(len+1, GFP_KERNEL); //申请内存
  72. txdata[0] = reg & ~0x80; //起始地址保存要写的寄存器地址
  73. memcpy(&txdata[1], buf, len); //要发送的数据拷贝
  74. spi_write(spi, txdata, len+1);
  75. kfree(txdata);
  76. return 0;
  77. }
  78. /*
  79. * @description : 读取icm20608指定寄存器值,读取一个寄存器
  80. * @param - dev: icm20608设备
  81. * @param - reg: 要读取的寄存器
  82. * @return : 读取到的寄存器值
  83. */
  84. static unsigned char icm20608_read_onereg(struct icm20608_dev *dev, u8 reg)
  85. {
  86. u8 data = 0;
  87. icm20608_read_regs(dev, reg, &data, 1);
  88. return data;
  89. }
  90. /*
  91. * @description : 向icm20608指定寄存器写入指定的值,写一个寄存器
  92. * @param - dev: icm20608设备
  93. * @param - reg: 要写的寄存器
  94. * @param - data: 要写入的值
  95. * @return : 无
  96. */
  97. static void icm20608_write_onereg(struct icm20608_dev *dev, u8 reg, u8 value)
  98. {
  99. u8 buf = value;
  100. icm20608_write_regs(dev, reg, &buf, 1);
  101. }
  102. /*
  103. * @description : 读取ICM20608的数据,读取原始数据,包括三轴陀螺仪、
  104. * : 三轴加速度计和内部温度。
  105. * @param - dev : ICM20608设备
  106. * @return : 无。
  107. */
  108. void icm20608_readdata(struct icm20608_dev *dev)
  109. {
  110. unsigned char data[14];
  111. icm20608_read_regs(dev, ICM20_ACCEL_XOUT_H, data, 14);
  112. dev->accel_x_adc = (signed short)((data[0] << 8) | data[1]);
  113. dev->accel_y_adc = (signed short)((data[2] << 8) | data[3]);
  114. dev->accel_z_adc = (signed short)((data[4] << 8) | data[5]);
  115. dev->temp_adc = (signed short)((data[6] << 8) | data[7]);
  116. dev->gyro_x_adc = (signed short)((data[8] << 8) | data[9]);
  117. dev->gyro_y_adc = (signed short)((data[10] << 8) | data[11]);
  118. dev->gyro_z_adc = (signed short)((data[12] << 8) | data[13]);
  119. }
  120. /*
  121. * @description : 打开设备
  122. * @param - inode : 传递给驱动的inode
  123. * @param - filp : 设备文件,file结构体有个叫做pr似有ate_data的成员变量
  124. * 一般在open的时候将private_data似有向设备结构体。
  125. * @return : 0 成功;其他 失败
  126. */
  127. static int icm20608_open(struct inode *inode, struct file *filp)
  128. {
  129. filp->private_data = &icm20608dev; /* 设置私有数据 */
  130. return 0;
  131. }
  132. /*
  133. * @description : 从设备读取数据
  134. * @param - filp : 要打开的设备文件(文件描述符)
  135. * @param - buf : 返回给用户空间的数据缓冲区
  136. * @param - cnt : 要读取的数据长度
  137. * @param - offt : 相对于文件首地址的偏移
  138. * @return : 读取的字节数,如果为负值,表示读取失败
  139. */
  140. static ssize_t icm20608_read(struct file *filp, char __user *buf, size_t cnt, loff_t *off)
  141. {
  142. signed int data[7];
  143. long err = 0;
  144. struct icm20608_dev *dev = (struct icm20608_dev *)filp->private_data;
  145. icm20608_readdata(dev);
  146. data[0] = dev->gyro_x_adc;
  147. data[1] = dev->gyro_y_adc;
  148. data[2] = dev->gyro_z_adc;
  149. data[3] = dev->accel_x_adc;
  150. data[4] = dev->accel_y_adc;
  151. data[5] = dev->accel_z_adc;
  152. data[6] = dev->temp_adc;
  153. err = copy_to_user(buf, data, sizeof(data));
  154. return 0;
  155. }
  156. /*
  157. * @description : 关闭/释放设备
  158. * @param - filp : 要关闭的设备文件(文件描述符)
  159. * @return : 0 成功;其他 失败
  160. */
  161. static int icm20608_release(struct inode *inode, struct file *filp)
  162. {
  163. return 0;
  164. }
  165. /* icm20608操作函数 */
  166. static const struct file_operations icm20608_ops = {
  167. .owner = THIS_MODULE,
  168. .open = icm20608_open,
  169. .read = icm20608_read,
  170. .release = icm20608_release,
  171. };
  172. /*
  173. * ICM20608内部寄存器初始化函数
  174. * @param : 无
  175. * @return : 无
  176. */
  177. void icm20608_reginit(void)
  178. {
  179. u8 value = 0;
  180. icm20608_write_onereg(&icm20608dev, ICM20_PWR_MGMT_1, 0x80);
  181. mdelay(50);
  182. icm20608_write_onereg(&icm20608dev, ICM20_PWR_MGMT_1, 0x01);
  183. mdelay(50);
  184. value = icm20608_read_onereg(&icm20608dev, ICM20_WHO_AM_I);
  185. printk("ICM20608 ID = %#X\r\n", value);
  186. icm20608_write_onereg(&icm20608dev, ICM20_SMPLRT_DIV, 0x00); /* 输出速率是内部采样率 */
  187. icm20608_write_onereg(&icm20608dev, ICM20_GYRO_CONFIG, 0x18); /* 陀螺仪±2000dps量程 */
  188. icm20608_write_onereg(&icm20608dev, ICM20_ACCEL_CONFIG, 0x18); /* 加速度计±16G量程 */
  189. icm20608_write_onereg(&icm20608dev, ICM20_CONFIG, 0x04); /* 陀螺仪低通滤波BW=20Hz */
  190. icm20608_write_onereg(&icm20608dev, ICM20_ACCEL_CONFIG2, 0x04); /* 加速度计低通滤波BW=21.2Hz */
  191. icm20608_write_onereg(&icm20608dev, ICM20_PWR_MGMT_2, 0x00); /* 打开加速度计和陀螺仪所有轴 */
  192. icm20608_write_onereg(&icm20608dev, ICM20_LP_MODE_CFG, 0x00); /* 关闭低功耗 */
  193. icm20608_write_onereg(&icm20608dev, ICM20_FIFO_EN, 0x00); /* 关闭FIFO */
  194. }
  195. /*
  196. * @description : spi驱动的probe函数,当驱动与
  197. * 设备匹配以后此函数就会执行
  198. * @param - client : spi设备
  199. * @param - id : spi设备ID
  200. *
  201. */
  202. static int icm20608_probe(struct spi_device *spi)
  203. {
  204. /* 1、构建设备号 */
  205. if (icm20608dev.major) {
  206. icm20608dev.devid = MKDEV(icm20608dev.major, 0);
  207. register_chrdev_region(icm20608dev.devid, ICM20608_CNT, ICM20608_NAME);
  208. } else {
  209. alloc_chrdev_region(&icm20608dev.devid, 0, ICM20608_CNT, ICM20608_NAME);
  210. icm20608dev.major = MAJOR(icm20608dev.devid);
  211. }
  212. /* 2、注册设备 */
  213. cdev_init(&icm20608dev.cdev, &icm20608_ops);
  214. cdev_add(&icm20608dev.cdev, icm20608dev.devid, ICM20608_CNT);
  215. /* 3、创建类 */
  216. icm20608dev.class = class_create(THIS_MODULE, ICM20608_NAME);
  217. if (IS_ERR(icm20608dev.class)) {
  218. return PTR_ERR(icm20608dev.class);
  219. }
  220. /* 4、创建设备 */
  221. icm20608dev.device = device_create(icm20608dev.class, NULL, icm20608dev.devid, NULL, ICM20608_NAME);
  222. if (IS_ERR(icm20608dev.device)) {
  223. return PTR_ERR(icm20608dev.device);
  224. }
  225. /*初始化spi_device */
  226. spi->mode = SPI_MODE_0; /*MODE0,CPOL=0,CPHA=0*/
  227. spi_setup(spi); /*设置spi*/
  228. icm20608dev.private_data = spi; /* 设置私有数据 */
  229. /* 初始化ICM20608内部寄存器 */
  230. icm20608_reginit();
  231. return 0;
  232. }
  233. /*
  234. * @description : spi驱动的remove函数,移除spi驱动的时候此函数会执行
  235. * @param - client : spi设备
  236. * @return : 0,成功;其他负值,失败
  237. */
  238. static int icm20608_remove(struct spi_device *spi)
  239. {
  240. /* 删除设备 */
  241. cdev_del(&icm20608dev.cdev);
  242. unregister_chrdev_region(icm20608dev.devid, ICM20608_CNT);
  243. /* 注销掉类和设备 */
  244. device_destroy(icm20608dev.class, icm20608dev.devid);
  245. class_destroy(icm20608dev.class);
  246. return 0;
  247. }
  248. /* 传统匹配方式ID列表 */
  249. static const struct spi_device_id icm20608_id[] = {
  250. {"alientek,icm20608", 0},
  251. {}
  252. };
  253. /* 设备树匹配列表 */
  254. static const struct of_device_id icm20608_of_match[] = {
  255. { .compatible = "alientek,icm20608" },
  256. { /* Sentinel */ }
  257. };
  258. /* SPI驱动结构体 */
  259. static struct spi_driver icm20608_driver = {
  260. .probe = icm20608_probe,
  261. .remove = icm20608_remove,
  262. .driver = {
  263. .owner = THIS_MODULE,
  264. .name = "icm20608",
  265. .of_match_table = icm20608_of_match,
  266. },
  267. .id_table = icm20608_id,
  268. };
  269. /*
  270. * @description : 驱动入口函数
  271. * @param : 无
  272. * @return : 无
  273. */
  274. static int __init icm20608_init(void)
  275. {
  276. return spi_register_driver(&icm20608_driver);
  277. }
  278. /*
  279. * @description : 驱动出口函数
  280. * @param : 无
  281. * @return : 无
  282. */
  283. static void __exit icm20608_exit(void)
  284. {
  285. spi_unregister_driver(&icm20608_driver);
  286. }
  287. module_init(icm20608_init);
  288. module_exit(icm20608_exit);
  289. MODULE_LICENSE("GPL");
  290. MODULE_AUTHOR("ZYC");

从完整的驱动代码中可以看出:
        ①在读取寄存器的时候调用了spi_write_then_read函数,从函数名字可以看出是先写入寄存器数据,在读出寄存器数据。即同步写一次同时读一次!

  1. /* this copies txbuf and rxbuf data; for small transfers only! */
  2. int spi_write_then_read(struct spi_device *spi,
  3. const void *txbuf, unsigned n_tx,
  4. void *rxbuf, unsigned n_rx);

spi表示描述的spi设备信息。
txbuf是写缓冲区
n_tx是写入的数据长度
rxbuf是读数据缓冲区
n_rx是读出的数据长度 

②在写寄存器的时候调用了spi_write函数,即同步写一次数据

int spi_write(struct spi_device *spi, const void *buf, size_t len);

spi表示描述的spi设备信息
buf是写缓冲区
len是写的长度


         ##在使用编写spi驱动的时候,需要用到软件片选管脚,然而为什么我们没有在.probe函数中申请这个管脚呢?
        因为在SOC厂商编写的SPI主机驱动中已经通过设备树获取了cs-gpios了,并保存在spi设备信息中!!原理看如下代码:

  1. static int spi_imx_probe(struct platform_device *pdev)
  2. {
  3. struct device_node *np = pdev->dev.of_node;
  4. const struct of_device_id *of_id =
  5. of_match_device(spi_imx_dt_ids, &pdev->dev);
  6. struct spi_imx_master *mxc_platform_info =
  7. dev_get_platdata(&pdev->dev);
  8. struct spi_master *master;
  9. struct spi_imx_data *spi_imx;
  10. struct resource *res;
  11. int i, ret, num_cs, irq;
  12. if (!np && !mxc_platform_info) {
  13. dev_err(&pdev->dev, "can't get the platform data\n");
  14. return -EINVAL;
  15. }
  16. ret = of_property_read_u32(np, "fsl,spi-num-chipselects", &num_cs);
  17. if (ret < 0) {
  18. if (mxc_platform_info)
  19. num_cs = mxc_platform_info->num_chipselect;
  20. else
  21. return ret;
  22. }
  23. master = spi_alloc_master(&pdev->dev,
  24. sizeof(struct spi_imx_data) + sizeof(int) * num_cs);
  25. if (!master)
  26. return -ENOMEM;
  27. platform_set_drvdata(pdev, master);
  28. master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32);
  29. master->bus_num = pdev->id;
  30. master->num_chipselect = num_cs;
  31. spi_imx = spi_master_get_devdata(master);
  32. spi_imx->bitbang.master = master;
  33. for (i = 0; i < master->num_chipselect; i++) {
  34. int cs_gpio = of_get_named_gpio(np, "cs-gpios", i);
  35. if (!gpio_is_valid(cs_gpio) && mxc_platform_info)
  36. cs_gpio = mxc_platform_info->chipselect[i];
  37. spi_imx->chipselect[i] = cs_gpio;
  38. if (!gpio_is_valid(cs_gpio))
  39. continue;
  40. ret = devm_gpio_request(&pdev->dev, spi_imx->chipselect[i],
  41. DRIVER_NAME);
  42. if (ret) {
  43. dev_err(&pdev->dev, "can't get cs gpios\n");
  44. goto out_master_put;
  45. }
  46. }
  47. spi_imx->bitbang.chipselect = spi_imx_chipselect;
  48. spi_imx->bitbang.setup_transfer = spi_imx_setupxfer;
  49. spi_imx->bitbang.txrx_bufs = spi_imx_transfer;
  50. spi_imx->bitbang.master->setup = spi_imx_setup;
  51. spi_imx->bitbang.master->cleanup = spi_imx_cleanup;
  52. spi_imx->bitbang.master->prepare_message = spi_imx_prepare_message;
  53. spi_imx->bitbang.master->unprepare_message = spi_imx_unprepare_message;
  54. spi_imx->bitbang.master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
  55. /*...省略代码....*/
  56. return ret;
  57. }

        从代码中可以看出当SPI主机驱动和设备匹配成功后会执行spi_imx_probe函数,在这个函数中已经通过of_get_named_gpio获取了设备树中我们描写的片选管脚信息,并在下面进行了申请!

 三、应用函数

  1. #include "stdio.h"
  2. #include "unistd.h"
  3. #include "sys/types.h"
  4. #include "sys/stat.h"
  5. #include "sys/ioctl.h"
  6. #include "fcntl.h"
  7. #include "stdlib.h"
  8. #include "string.h"
  9. #include <poll.h>
  10. #include <sys/select.h>
  11. #include <sys/time.h>
  12. #include <signal.h>
  13. #include <fcntl.h>
  14. /*
  15. * @description : main主程序
  16. * @param - argc : argv数组元素个数
  17. * @param - argv : 具体参数
  18. * @return : 0 成功;其他 失败
  19. */
  20. int main(int argc, char *argv[])
  21. {
  22. int fd;
  23. char *filename;
  24. signed int databuf[7];
  25. unsigned char data[14];
  26. signed int gyro_x_adc, gyro_y_adc, gyro_z_adc;
  27. signed int accel_x_adc, accel_y_adc, accel_z_adc;
  28. signed int temp_adc;
  29. float gyro_x_act, gyro_y_act, gyro_z_act;
  30. float accel_x_act, accel_y_act, accel_z_act;
  31. float temp_act;
  32. int ret = 0;
  33. if (argc != 2) {
  34. printf("Error Usage!\r\n");
  35. return -1;
  36. }
  37. filename = argv[1];
  38. fd = open(filename, O_RDWR);
  39. if(fd < 0) {
  40. printf("can't open file %s\r\n", filename);
  41. return -1;
  42. }
  43. while (1) {
  44. ret = read(fd, databuf, sizeof(databuf));
  45. if(ret == 0) { /* 数据读取成功 */
  46. gyro_x_adc = databuf[0];
  47. gyro_y_adc = databuf[1];
  48. gyro_z_adc = databuf[2];
  49. accel_x_adc = databuf[3];
  50. accel_y_adc = databuf[4];
  51. accel_z_adc = databuf[5];
  52. temp_adc = databuf[6];
  53. /* 计算实际值 */
  54. gyro_x_act = (float)(gyro_x_adc) / 16.4;
  55. gyro_y_act = (float)(gyro_y_adc) / 16.4;
  56. gyro_z_act = (float)(gyro_z_adc) / 16.4;
  57. accel_x_act = (float)(accel_x_adc) / 2048;
  58. accel_y_act = (float)(accel_y_adc) / 2048;
  59. accel_z_act = (float)(accel_z_adc) / 2048;
  60. temp_act = ((float)(temp_adc) - 25 ) / 326.8 + 25;
  61. printf("\r\n原始值:\r\n");
  62. printf("gx = %d, gy = %d, gz = %d\r\n", gyro_x_adc, gyro_y_adc, gyro_z_adc);
  63. printf("ax = %d, ay = %d, az = %d\r\n", accel_x_adc, accel_y_adc, accel_z_adc);
  64. printf("temp = %d\r\n", temp_adc);
  65. printf("实际值:");
  66. printf("act gx = %.2f°/S, act gy = %.2f°/S, act gz = %.2f°/S\r\n", gyro_x_act, gyro_y_act, gyro_z_act);
  67. printf("act ax = %.2fg, act ay = %.2fg, act az = %.2fg\r\n", accel_x_act, accel_y_act, accel_z_act);
  68. printf("act temp = %.2f°C\r\n", temp_act);
  69. }
  70. usleep(1000000); /*1000ms */
  71. }
  72. close(fd); /* 关闭文件 */
  73. return 0;
  74. }

        I.MX6U 是支持硬件浮点的,因此我们在编译 icm20608App.c 的时候就可以使能硬件浮点,这样可以加速浮点计算。编译命令如下:

arm-linux-gnueabihf-gcc -march=armv7-a -mfpu=neon -mfloat-abi=hard icm20608App.c -o icm20608App

APP运行测试 :

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/205780
推荐阅读
相关标签
  

闽ICP备14008679号