资源简介
实现了四位八段数码管的写操作。可以任意写入段码显示任意数字。包含驱动程序和测试用的应用程序。pxa-270开发板上测试成功。
代码片段和文件信息
/*
* led8.c
* LED driver
*/
#include // We‘re doing kernel work
#include // Specifically a module
#include // init_module & cleanup_module
#include // File operations
#include // for get_user and put_user
#include // ioremap() iounmap()
#include // ioremap() iounmap()
#include “led8.h“
#define SUCCESS 0
static int Device_Open = 0; // prevent concurrent
unsigned short *vled1;
unsigned short *vled2; // LED i/o remapped virtual address
static int led_open(struct inode *inode struct file *file)
{
dprintk (“LED opened(%p)\n“ file);
// We don‘t want to talk to two processes at the same time
if (Device_Open) return -EBUSY;
Device_Open++;
return SUCCESS;
}
/* Th
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1021 2009-12-08 15:12 ledrun.c
文件 3892 2009-12-08 15:29 led8.c
文件 1158 2009-12-08 15:12 led8.h
----------- --------- ---------- ----- ----
6071 3
- 上一篇:RF1800编程器软件老并口
- 下一篇:外挂海模块1.44版外挂作坊1.8版
相关资源
- ARM嵌入式Linux系统开发从入门到精通
- ARM嵌入式系统基础教程+周立功_pdf
- arm体系结构与编程 入门
- 在LPC1114上移植uCos ii
- Keil ARM MDK Keil uVision4MDK4.12破解文件
- S3C2410各功能官方测试源程序
- arm开发详解很全面的开发资料
- s3c2440的头文件
- 基于arm的贪吃蛇游戏的开发包括源代
- linux面试题,驱动,嵌入式面试题ar
- 嵌入式 arm 串口通讯
- ubuntu 20.04 下安装arm-linux-gnueabi和编译
- PROTEUS中使用ARM处理器及uCOS-II仿真实验
- Ubunt系统下与ARM板Qt串口通信程序
- arm usb driver 驱动
- arm裸机软中断
- 基于ARM的LED显示实验
- ARM_AD接口实验代码
- 利用opencv在arm9上实现USB摄像头视频采
- Superboot4412.bin
- linuxQT在ARM开发板运用摄像头
- DSP嵌入式系统开发典型案例
- ARM嵌入式系统基础教程第二版课后习
- arm汇编语言实验1~8.rar
- 基于ARM电子琴的设计
- LPC2100开发板资料
- 嵌入式系统课程设计-E字表视力测试系
-
pip-sc
ript.zip - arm7 lpc2131可调电子时钟程序
- ARM开发板远程升级程序
评论
共有 条评论