找回密码
 立即注册

QQ登录

只需一步,快速开始

打印 上一主题 下一主题
开启左侧

NUC970如何修改底层来正常使用spidev0.1

[复制链接]
跳转到指定楼层
楼主
匿名  发表于 2023-5-6 11:28:13 回帖奖励 |倒序浏览 |阅读模式
  1. static int   fd_ADC;

  2. static unsigned int mode;
  3. static unsigned char bits = 8;
  4. static unsigned int  speed = 500000;
  5. static unsigned short spi_delay=0;
  6. int OpenADC()
  7. {
  8.     int ret=0;

  9.         fd_ADC = open("/dev/spidev1.0", O_RDWR);
  10.         if (fd_ADC == -1)
  11.         {
  12.                 printf("Open /dev/adc error\n");
  13.                 return -1;
  14.         }
  15.         mode=SPI_MODE_0;
  16.     ret = ioctl(fd_ADC, SPI_IOC_WR_MODE, &mode);
  17.         if (ret == -1)         {        printf("can't set spi mode\n");
  18.          perror("Fail:");   exit(EXIT_FAILURE);}

  19.     ret = ioctl(fd_ADC, SPI_IOC_WR_BITS_PER_WORD, &bits);
  20.         if (ret == -1)                printf("can't set bits per word\n");
  21.     ret = ioctl(fd_ADC, SPI_IOC_WR_MAX_SPEED_HZ, &speed);
  22.         if (ret == -1)                printf("can't set max speed hz\n");
  23.         return 0;
  24. }
复制代码


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 顶 踩
回复

使用道具

沙发
匿名  发表于 2023-5-6 11:28:27
NUC972DF61Y 带linux系统运行,根据默认配置生成了对应的u-boot-spl.bin u-boot.bin 970uimage ubi.img并通过NuWriter.exe将这些文件烧录到芯片中。
运行如下代码: 提示can't set spi mode 用perror打印错误 提示Invalid atgument
回复 支持 反对

使用道具

板凳
匿名  发表于 2023-5-9 16:35:47
回复 支持 反对

使用道具

高级模式
B Color Image Link Quote Code Smilies |上传

本版积分规则

新唐MCU