2021-07-22 rv1126 gpio 按键触发 dts 样例

1/dts 目录及底层库寄存器平台接口目录

 kernel/arch/arm/boot/dts

5/5组 gpio 偏移
复位gpio使用第二组 gpio1 复用引脚名称 pk pd5
5个bank 映射到 通用接口库 pinctrl

ff460000
ff620000
ff630000
ff640000
ff650000

3/底下目录基本同op没差别

  1. List item

4/测试源码

//gcc -o cpuid gets.c 
//${CROSS_COMPILE}gcc -o cpuid gets.c
//this code for tested ok rv1126
#include<stdio.h>    
#include<stdlib.h> 
#include<string.h>    
#include<unistd.h>  
#include<signal.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<termios.h>
#include <errno.h>
#include <fcntl.h>
//io 操作
#include <sys/ioctl.h>

#define flash_led "/sys/class/leds/white:camera/brightness"

int main(int argc, const char * argv[])    
{   
char *arg=0;

int fd, l_status = 0, index;

//if(strcmp(iot_cmd_flash, "on") == 0){
//	l_status = 1;
//}
  // 	else if(strcmp(iot_cmd_flash, "en") == 0){
//	l_status = 2;
//}

//打开设备映射
fd = open(flash_led, O_RDWR);

if(fd < 0){
	perror("Led dev open fail!!\n");
	return 1;
}

write(fd, “-1”,1);

sleep(2);

write(fd, "0", 1);

//关闭FD句柄
close(fd);	

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值