当前位置:网站首页>STM32MP157A驱动开发 | 01- 板载LED作为系统心跳指示灯
STM32MP157A驱动开发 | 01- 板载LED作为系统心跳指示灯
2022-08-04 21:00:00 【Mculover666】
一、板载LED
此用户LED连接到PA13。
二、作为用户LED
1. 设备树描述
添加pinctrl描述,将PA13作为普通gpio:
&pinctrl {
led_pins_a: led-0 {
pins {
pinmux = <STM32_PINMUX('A', 13, GPIO)>; /* USER_LED */
};
};
};
添加led节点描述:
led {
compatible = "gpio-leds";
pinctrl-0 = <&led_pins_a>;
blue {
label = "blue";
gpios = <&gpioa 13 GPIO_ACTIVE_LOW>;
default-state = "off";
};
};
2. 测试
重新编译设备树,启动。
三、作为系统心跳LED
led {
compatible = "gpio-leds";
pinctrl-0 = <&led_pins_a>;
heartled {
label = "heartled";
gpios = <&gpioa 13 GPIO_ACTIVE_LOW>;
linux,default-trigger = "heartbeat";
default-state = "off";
};
};
边栏推荐
- C#之app.config、exe.config和vshost.exe.config作用区别
- STP基本配置及802.1D生成树协议的改进
- Five Minutes Introductory Text Processing Three Musketeers grep awk sed
- 拼多多开放平台订单信息查询接口【pdd.order.basic.list.get订单基础信息列表查询接口(根据成交时间)】代码对接教程
- jekyll adds a flowchart to the blog
- 3、IO流之字节流和字符流
- 二叉搜索树解决硬木问题
- 【Programming Ideas】
- 基于单向链表结构的软件虚拟定时器的设计与构建
- 如何用好建造者模式
猜你喜欢
随机推荐
88. (the home of cesium) cesium polymerization figure
ts集成和使用
88.(cesium之家)cesium聚合图
推荐系统_刘老师
宝塔实测-搭建中小型民宿酒店管理源码
【Programming Ideas】
PowerCLi 批量配置NTP
Uniapp微信雪糕刺客单页小程序源码
27.降维
如何进行AI业务诊断,快速识别降本提效增长点?
LINQ to SQL (Group By/Having/Count/Sum/Min/Max/Avg操作符)
3、IO流之字节流和字符流
格密码入门
【编程思想】
Feign 与 OpenFeign
JWT主动校验Token是否过期
QT(41)-多线程-QTThread-同步QSemaphore-互斥QMutex
How to train a deep learning model?
After encountering MapStruct, the conversion between PO, DTO and VO objects is no longer handwritten
顺序队列