1393|0

2015

帖子

0

TA的资源

纯净的硅(中级)

楼主
 

linux下用文件控制gpio的输出电平 [复制链接]

在写使用spi过程中,需要用到GPIO3.21这个引脚的高电平输出信号。 
在超级终端里面的输入方法:

# cd /sys/class/gpio
/sys/class/gpio# echo 117 >export                                       
 /sys/class/gpio# echo out >gpio117/direction

这个固然可以实现引脚电平的输出,在使用中,还可以用文件操作方式使得电平升高。如下:


#include stdlib.h  

#include stdio.h  

#include string.h

#include unistd.h

#include fcntl.h   


//芯片复位引脚:GPIO3.21

#define SYSFS_GPIO_EXPORT           "/sys/class/gpio/export"  

#define SYSFS_GPIO_RST_PIN_VAL      "117"   

#define SYSFS_GPIO_RST_DIR          "/sys/class/gpio/gpio117/direction"

#define SYSFS_GPIO_RST_DIR_VAL      "OUT"  

#define SYSFS_GPIO_RST_VAL          "/sys/class/gpio/gpio117/value"

#define SYSFS_GPIO_RST_VAL_H        "1"

#define SYSFS_GPIO_RST_VAL_L        "0"

int main() 

    int fd; 

         //打开端口/sys/class/gpio# echo 117 > export

         fd = open(SYSFS_GPIO_EXPORT, O_WRONLY);

         if(fd == -1)

         {
                   printf("ERR: Radio hard reset pin open error.\n");

                   return EXIT_FAILURE;

         }

         write(fd, SYSFS_GPIO_RST_PIN_VAL ,sizeof(SYSFS_GPIO_RST_PIN_VAL)); 

         close(fd); 

         //设置端口方向/sys/class/gpio/gpio117# echo out > direction

         fd = open(SYSFS_GPIO_RST_DIR, O_WRONLY);

         if(fd == -1)

         {

                   printf("ERR: Radio hard reset pin direction open error.\n");

                   return EXIT_FAILURE;

         }

         write(fd, SYSFS_GPIO_RST_DIR_VAL, sizeof(SYSFS_GPIO_RST_DIR_VAL)); 

         close(fd); 

         fd = open(SYSFS_GPIO_RST_VAL, O_RDWR);

         if(fd == -1)

         {
                   printf("ERR: Radio hard reset pin value open error.\n");

                   return EXIT_FAILURE;

         }     
         //输出高电平
         write(fd, SYSFS_GPIO_RST_VAL_H, sizeof(SYSFS_GPIO_RST_VAL_H));  

         while(1)
         {
         }

         close(fd);

         printf("INFO: Radio hard reset pin value open error.\n");

         return 0;

 
点赞 关注

回复
举报
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/6 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表