zoukankan      html  css  js  c++  java
  • linux i2c 的通信函数i2c_transfer在什么情况下出现错误

    问题: linux i2c 的通信函数i2c_transfer在什么情况下出现错误
    描述:

    linux i2c设备驱动

    本人在写i2c设备驱动的时候使用i2c transfer函数进行通信的时候无法进行读写,返回值函数是-11,这个返回值是什么意思,


    解决方案1:

    参考errno-base.h 
    #define EPERM  1 /* Operation not permitted */
    #define ENOENT  2 /* No such file or directory */
    #define ESRCH  3 /* No such process */
    #define EINTR  4 /* Interrupted system call */
    #define EIO  5 /* I/O error */
    #define ENXIO  6 /* No such device or address */
    #define E2BIG  7 /* Argument list too long */
    #define ENOEXEC  8 /* Exec format error */
    #define EBADF  9 /* Bad file number */
    #define ECHILD 10 /* No child processes */
    #define EAGAIN 11 /* Try again */
    #define ENOMEM 12 /* Out of memory */
    #define EACCES 13 /* Permission denied */
    #define EFAULT 14 /* Bad address */
    #define ENOTBLK 15 /* Block device required */

  • 相关阅读:
    前端常用模板引擎- artTemplate
    Vue-多级组件嵌套传值
    echarts图表常用到的设置
    react-基础入门分享
    vue中 export const 和 export default的区别
    vue安装依赖报错
    nvm-node版本控制工具
    gulp-入门
    vue 中使用 iconfont
    c3中基本动画
  • 原文地址:https://www.cnblogs.com/x_wukong/p/9518670.html
Copyright © 2011-2022 走看看