Location:
Search - ARM Linux GPIO
Search list
Description: gpio驱动程序:
gpio驱动程序 PC14.15,linux+arm平台-gpio Driver : gpio driver PC14.15, linux + arm platform
Platform: |
Size: 9436 |
Author: chneggp |
Hits:
Description: gpio驱动
leddrv.c为驱动源程序
writeled.c为应用程序
writeled.c 编译方式 arm-elf-gcc -Wall -O2 -Wl,-elf2flt -o writeled writeled.c
leddrv.c 编译方式 arm-elf-gcc -D__KERNEL__ -I你的uClinux目录/linux-2.4.x/include-Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -fno-common -pipe -fno-builtin -D__linux__ -DNO_MM -mapcs-32 -march=armv4 -mtune=arm7tdmi -mshort-load-bytes -msoft-float -DMODULE -c -o leddrv.o leddrv.c
Platform: |
Size: 2108 |
Author: zhengbo |
Hits:
Description: arm 平台下 linux gpio 的驱动
Platform: |
Size: 48696 |
Author: 胡 |
Hits:
Description: 三星arm9处理器,s3c2410的开关量书输入输出(gpio)的驱动-arm9 Samsung processor, s3c2410 switch on the input-output (GPIO) Drivers
Platform: |
Size: 2048 |
Author: 刘二 |
Hits:
Description: gpio驱动程序:
gpio驱动程序 PC14.15,linux+arm平台-gpio Driver : gpio driver PC14.15, linux+ arm platform
Platform: |
Size: 9216 |
Author: chneggp |
Hits:
Description: 4x4按键的嵌入式Linux驱动
平台:AT91RM92-4x4 keypad embedded Linux-driven platforms : AT91RM92
Platform: |
Size: 12288 |
Author: 路晓光 |
Hits:
Description: 本程序是linux下写arm9200的gpio的程序及makefile文件
-the procedure is written under linux gpio arm9200 the procedures and documents makefile
Platform: |
Size: 3072 |
Author: zhf_make |
Hits:
Description: 本文研究了在目前流行的嵌入式微控制器ARM9(Samsung 的 S3C2410)上硬件测试的方法。分析了在嵌入式Linux基础上开发测试程序的基本方法,解决了在S3C2410开发板测试GPIO、中断、串口和RTC时钟过程中的重点和难点问题。-In this paper, in the current popular microcontroller embedded ARM9 (Samsung
Platform: |
Size: 592896 |
Author: 王强 |
Hits:
Description: 初学者的福音. 代码易懂!
通过IO模拟实现的arm2410的iic总线驱动程序
可进行读写操作
Platform: |
Size: 3072 |
Author: Jinn |
Hits:
Description: gpio驱动
leddrv.c为驱动源程序
writeled.c为应用程序
writeled.c 编译方式 arm-elf-gcc -Wall -O2 -Wl,-elf2flt -o writeled writeled.c
leddrv.c 编译方式 arm-elf-gcc -D__KERNEL__ -I你的uClinux目录/linux-2.4.x/include-Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -fno-common -pipe -fno-builtin -D__linux__ -DNO_MM -mapcs-32 -march=armv4 -mtune=arm7tdmi -mshort-load-bytes -msoft-float -DMODULE -c -o leddrv.o leddrv.c
-GPIO driver leddrv.c-driven source code for applications writeled.c way writeled.c compiler arm-elf-gcc-Wall-O2-Wl,-elf2flt-o writeled writeled.cleddrv.c way compiler arm-elf-gcc-- you are D__KERNEL__-I of the uClinux directory/linux-2.4.x/include-Wall-Wstrict-prototypes-Wno-trigraphs-O2-fno-strict-aliasing-fno-common-fno-common-pipe-fno-builtin-D__linux__-- DNO_MM-mapcs-32-march = armv4-mtune = arm7tdmi-mshort-load-bytes-msoft-float-DMODULE-c-o leddrv.o leddrv.c
Platform: |
Size: 2048 |
Author: zhengbo |
Hits:
Description: s3c2410gpio操作代码,包含wince的驱动和evc应用程序-s3c2410gpio operation code, including drivers and EVC wince application
Platform: |
Size: 1078272 |
Author: tangbin1982 |
Hits:
Description: arm 平台下 linux gpio 的驱动-arm platform linux gpio driver
Platform: |
Size: 48128 |
Author: 胡 |
Hits:
Description: 嵌入式arm+linux环境GPIO (通用输入/输出)测试驱动代码-Embedded arm linux environment GPIO (General Purpose Input/Output) test-driven code
Platform: |
Size: 13312 |
Author: 蓝色忧郁 |
Hits:
Description: 1、将makefile中的
CROSS =/usr/local/arm/2.95.3/bin/arm-linux-
CFLAGS+=-I/usr/local/src/2.4.18-rmk7/include
CFLAGS+=-I/usr/local/src/2.4.18-rmk7/include/linux
CFLAGS+=-I/usr/local/arm/2.95.3/arm-linux/include
路径改为你宿主机上的。
2、#make,来编译驱动模块。
3、#export PATH=$PATH:/usr/local/arm/2.95.3/bin //取决于你宿主机上的交叉编译工具路径
#arm-linux-gcc -o gpio_test gpio_test.c //编译应用程序
最终在你的当前文件夹下会生成gpiodrv.o与gpio_test两个文件。
4、#mkdir /tmp/1
5、通过ftp的方法,把gpio_test与gpiodrv.o文件下载到你的开发板上的/tmp/1目录中。
6、#mknod /dev/gpio c 220 0 //创建文件节点
#insmod gpiodrv.o
#chmod +x gpio_test
#./gpio_test
然后,就可以看到四个LED灯在闪烁了。:)-1, the makefile in the CROSS =/usr/local/arm/2.95.3/bin/arm-linux- CFLAGS+ =- I/usr/local/src/2.4.18-rmk7/include CFLAGS+ =- I/usr/local/src/2.4.18-rmk7/include/linux CFLAGS+ =- I/usr/local/arm/2.95.3/arm-linux/include changed the path on your host. 2,# make, to compile driver modules. 3,# export PATH = $ PATH:/usr/local/arm/2.95.3/bin// depends on your host on the path of the cross compiler tool# arm-linux-gcc-o gpio_test gpio_test.c// compile the application procedures for the ultimate in your current folder will be generated under the two documents gpiodrv.o and gpio_test. 4,# mkdir/tmp/1 5, through the ftp way to gpiodrv.o File Download gpio_test with the development of your board/tmp/1 directory. 6,# mknod/dev/gpio c 220 0// create a file node# insmod gpiodrv.o# chmod+ x gpio_test#./Gpio_test then four LED lights can be seen in the flicker of. :)
Platform: |
Size: 9216 |
Author: 马工 |
Hits:
Description: 一个在arm linux下的soc的gpio的驱动程序-A soc under arm linux driver for gpio
Platform: |
Size: 4096 |
Author: zhou |
Hits:
Description: 最基本的Linux驱动程序,自写,如按键和GPIO的驱动程序,基于S33C2410开发板,希望对初学者有所帮助-basic Linux driver,written myself,including the key driver and gpio driver ,holp it is helpfull for freshmen of arm linux driver designer.
Platform: |
Size: 31744 |
Author: 刘小军 |
Hits:
Description: 嵌入式linux下ARM的GPIO驱动例子-Under the embedded ARM-GPIO driver linux example
Platform: |
Size: 1024 |
Author: lhh |
Hits:
Description: 该代码为ARM Linux下ATsam9260 LED驱动代码,为学习Linux下GPIO的控制提供了参考-The code for the ARM Linux code under the ATsam9260 LED driver for Linux, GPIO control study provides a reference
Platform: |
Size: 1024 |
Author: bush |
Hits:
Description: This a simple example to let a LED blink and test button-input (GPIO) on a Philips LPC2106 (ARM7TDMI-S-architecture). The demo-board LPC-P2106 from Olimex has been used. The project-setup is adapted for the arm-elf GNU-toolchain on MS-Windows "hosts" but since the GNU-tools are used, the changes needed to build the project on Unix/Linux are minimal. Please read the readme.txt and comments in the source-code and the makefile for further information.-This is a simple example to let a LED blink and test button-input (GPIO) on a Philips LPC2106 (ARM7TDMI-S-architecture). The demo-board LPC-P2106 from Olimex has been used. The project-setup is adapted for the arm-elf GNU-toolchain on MS-Windows "hosts" but since the GNU-tools are used, the changes needed to build the project on Unix/Linux are minimal. Please read the readme.txt and comments in the source-code and the makefile for further information.
Platform: |
Size: 17408 |
Author: saeid |
Hits:
Description: 国嵌arm的linux的GPIO操作,LED跑马灯的例子-Examples of the country embedded arm linux GPIO operation, LED Marquee
Platform: |
Size: 1024 |
Author: suwenyi |
Hits: