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 */

  • 相关阅读:
    学习进度06
    求最大子数组03
    js实现标签绑定回车事件
    ImageDown
    ImageUpload
    XMLProcess
    VideoConvert
    SmtpServerHelper
    SharpZip(压缩帮助类)
    SessionHelper
  • 原文地址:https://www.cnblogs.com/x_wukong/p/9518670.html
Copyright © 2011-2022 走看看