Android在JNI层驱动AT24C32

1.需要在/system/core/rootdir/init.rc开启节点权限
在这里插入图片描述
2.jni层源码如下

#include <jni.h>
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <stdint.h>
#include <termios.h>
#include <android/log.h>
#include <sys/ioctl.h>
#include <linux/i2c-dev.h>
#include <linux/i2c.h>
#include <stdbool.h>
#include <unistd.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/stat.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <fcntl.h>
#include <unistd.h>

jint fd_at24cxx;

extern "C" JNIEXPORT jint JNICALL
Java_com_example_srednew_i2c_I2COpen(JNIEnv *env, jobject thiz)
{
    fd_at24cxx = open("/dev/i2c-2", O_RDWR);
    if (fd_at24cxx < 0) {
        __android_log_print(ANDROID_LOG_INFO, "at24cxx", "at24cxx open fail");
        return -1;
    } else {
        __android_log_print(ANDROID_LOG_INFO, "at24cxx", "at24cxx open success");
    }
    ioctl(fd_at24cxx,I2C_SLAVE,0x50); // 设置从设备地址
    ioctl(fd_at24cxx,I2C_TIMEOUT,1);  // 设置超时
    ioctl(fd_at24cxx,I2C_RETRIES,1);  // 设置重试次数
    return 1;
}

extern "C" JNIEXPORT jint JNICALL
Java_com_example_srednew_i2c_I2CWrite(JNIEnv *env, jobject thiz, jbyte data, jint high_address, jint low_address)
{
    int ret = 0;
    jbyte buffer[3];

    buffer[0] = (jbyte)high_address;
    buffer[1] = (jbyte)low_address;
    buffer[2] = data;

    if (high_address > 15 || high_address < 0 || low_address > 255 || low_address < 0) {
        __android_log_print(ANDROID_LOG_INFO, "at24cxx", "high_address or low_address error");
        return -1;
    }

    ret = write(fd_at24cxx, buffer, 3);
    if(ret < 0)//写入数据
    {
        __android_log_print(ANDROID_LOG_INFO, "at24cxx", "at24cxx write fail");
        return -1;
    }
    usleep(10000);
    return ret;

}

extern "C" JNIEXPORT jbyte JNICALL
Java_com_example_srednew_i2c_I2CRead(JNIEnv *env, jobject thiz, jint high_address, jint low_address)
{
    int ret;
    jbyte buffer[2];
    buffer[0] = (jbyte)high_address;
    buffer[1] = (jbyte)low_address;
    jbyte recive_buffer;

    if (high_address > 15 || high_address < 0 || low_address > 255 || low_address < 0) {
        __android_log_print(ANDROID_LOG_INFO, "at24cxx", "high_address or low_address error");
        return -1;
    }

    ret = write(fd_at24cxx, buffer, 2);
    if(ret < 0)//写入数据
    {
        __android_log_print(ANDROID_LOG_INFO, "at24cxx", "at24cxx write fail");
        return -1;
    }
    ret = read(fd_at24cxx, &recive_buffer, 1);
    if(ret < 0)//读出数据
    {
        __android_log_print(ANDROID_LOG_INFO, "at24cxx", "at24cxx read fail");
        return -1;
    }
    return recive_buffer;
}

extern "C" JNIEXPORT int JNICALL
Java_com_example_srednew_i2c_I2CClose(JNIEnv *env, jobject thiz)
{
    int ret;

    ret = close(fd_at24cxx);
    if (ret < 0) {
        __android_log_print(ANDROID_LOG_INFO, "at24cxx", "at24cxx close fail");
    } else {
        __android_log_print(ANDROID_LOG_INFO, "at24cxx", "at24cxx close success");
    }

    return ret;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值