Chinaunix首页 | 论坛 | 博客
  • 博客访问: 971902
  • 博文数量: 192
  • 博客积分: 3070
  • 博客等级: 中校
  • 技术积分: 1861
  • 用 户 组: 普通用户
  • 注册时间: 2007-06-27 23:44
个人简介

Start Linux Leave Linux a while Back to Linux

文章分类

全部博文(192)

文章存档

2023年(18)

2022年(11)

2021年(8)

2020年(14)

2019年(7)

2018年(13)

2017年(16)

2016年(4)

2012年(2)

2011年(13)

2010年(26)

2009年(13)

2008年(27)

2007年(20)

我的朋友

分类: 其他平台

2023-12-08 14:19:02

在T113中按了Power 键之后给 PD15高电平(电源Enable脚)
vim /brandy/boot-2018/board/sunxi/board.c

int board_init(void){
    ...
    pr_msg("kk-boot-test:board_init \n");   // 并没有打印
    sunxi_gpio_set_cfgpin(111, SUNXI_GPIO_OUTPUT);    // 111设置为输出
    gpio_direction_output(111, 1);    // 输出高电平

    ...

}

./build.sh brandy
./build.sh pack

=========================

PD15 (output) - Power Enable:  3*32+15 = 111

PE13 (input) - Power Switch:  4*32+13 = 141
PD15 (output) - Power Enable:  3*32+15 = 111

#PE13 - Power Switch
echo 141 > /sys/class/gpio/export
echo in > /sys/class/gpio/gpio141/direction
cat /sys/class/gpio/gpio141/value

#PD15 - Power Enable
echo 111 > /sys/class/gpio/export
echo out > /sys/class/gpio/gpio111/direction
echo 1 > /sys/class/gpio/gpio111/value
echo 0 > /sys/class/gpio/gpio111/value


阅读(201) | 评论(0) | 转发(0) |
0

上一篇:T113 修改开机画面

下一篇:没有了

给主人留下些什么吧!~~