在上一篇文章中,我写了如何在rk3399pro的Android系统代码中编写和调试驱动。
上文链接:https://blog.csdn.net/xiaozhuang008/article/details/109066601
本次将重点描述如何在Android studio中利用调用这些驱动。
1、切换到project视图,在app/src/main/下新建jni文件夹。
2、在jni文件夹中新建Android.mk文件
3、在Android.mk文件中下添加如下代码:
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := leds
LOCAL_SRC_FILES := com_firefly_leds_hardware_leds.c \
LOCAL_LDLIBS += -L$(SYSROOT)/usr/lib -llog
include $(BUILD_SHARED_LIBRARY)
4、在jni文件中添加com_firefly_leds_hardware_leds.c文件,文件内容如下:
#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>
#includ