Location:
Search - serial linux
Search list
Description: 详细讲述了linux设备驱动程序的开发,想学习linux下设备驱动程序开发工作的人员可以参考。文件清单列出如下:
linuxdriver_code_tool
|-- 03
| `-- 2.6内核升级工具
| |-- device-mapper-1.00.19-2.i386.rpm
| |-- lvm2-2.00.25-1.01.i386.rpm
| |-- mkinitrd-4.2.0.3.tar.tar
| |-- module-init-tools-3.2.2.tar.bz2
| `-- modutils-2.4.5-1.src.rpm
|-- 04
| |-- 内核模块参数范例
| | `-- book.c
| |-- 内核模块导出符号
| | `-- export_symb.c
| `-- 最简单的内核模块
| `-- hello.c
|-- 05
| `-- udev源代码
| `-- udev-114.tar.gz
|-- 06
| |-- globalmem驱动
| | `-- globalmem.c
| `-- 包含2个globalmem设备的驱动
| `-- globalmem_two.c
|-- 07
| `-- 含并发控制的globalmem驱动
| `-- globalmem_lock.c
|-- 08
| |-- globalfifo驱动
| | `-- globalfifo.c
| `-- poll应用程序范例
| `-- pollmonitor.c
|-- 09
| |-- 异步通知应用程序范例
| | `-- asyncmonitor.c
| `-- 支持异步通知的globalfifo
| `-- globalfifo_async.c
|-- 10
| |-- S3C2410实时钟驱动
| | `-- s3c2410-rtc.c
| `-- 秒设备驱动与应用程序
| |-- second.c
| `-- second_test.c
|-- 11
| |-- DMA范例
| | |-- 3c505.c
| | |-- 3c505.h
| | `-- dma.h
| `-- 静态映射范例
| `-- mach-smdk2440.c
|-- 12
| |-- NVRAM驱动
| | `-- generic_nvram.c
| |-- 触摸屏驱动
| | |-- 作为input设备
| | | |-- s3c2410_ts.c
| | | `-- s3c2410_ts.h
| | `-- 作为普通字符设备
| | `-- s3c2410-ts.c
| |-- 看门狗驱动
| | `-- s3c2410_wdt.c
| `-- 平台设备
| `-- devs.c
|-- 13
| |-- IDE驱动
| | |-- ide-disk.c
| | `-- ide-h8300.c
| `-- RAMDISK驱动
| `-- rd.c
|-- 14
| |-- S3C2410串口驱动
| | |-- regs-gpio.h
| | |-- regs-serial.h
| | `-- s3c2410.c
| `-- 串口核心层
| |-- serial_core.c
| `-- serial_core.h
|-- 15
| |-- S3C2410 I2C主机驱动
| | |-- i2c-s3c2410.c
| | |-- iic.h
| | |-- regs-gpio.h
| | `-- regs-iic.h
| `-- SAA711x I2C设备驱动
| `-- saa711x.c
|-- 16
| `-- CS8900以太网设备驱动
| |-- cs89x0.c
| `-- cs89x0.h
|-- 17
| |-- ALSA工具及库
| | |-- alsa-driver-1.0.15.tar.bz2
| | |-- alsa-firmware-1.0.15.tar.bz2
| | |-- alsa-lib-1.0.15.tar.bz2
| | |-- alsa-oss-1.0.15.tar.bz2
| | |-- alsa-tools-1.0.15.tar.bz2
| | |-- alsa-utils-1.0.13.tar.bz2
| | `-- pyalsa-1.0.15.tar.bz2
| |-- ALSA驱动范例
| | |-- sa11xx-uda1341.c
| | `-- uda1341.h
| |-- ALSA应用程序范例
| | |-- pcm.c
| | `-- pcm_min.c
| |-- OSS驱动范例
| | `-- s3c2410-uda1341.c
| `-- OSS应用程序范例
| |-- mixer.c
| `-- sound.c
|-- 18
| |-- FRAMEBUFFER应用程序范例
| | `-- fb_display
| | |-- fb_display.c
| | |-- fb_display.h
| | |-- Makefile
| | |-- README
| | `-- test.c
| `-- S3C2410 LCD驱动
| |-- s3c2410fb.c
| `-- s3c2410fb.h
|-- 19
| |-- busybox源代码
| | `-- busybox-1.2.1.tar.bz2
| |-- MTD工具
| | `-- mtd-utils-1.0.0.tar.gz
| |-- nand驱动范例
| | `-- s3c2410.c
| |-- nor驱动范例
| | `-- s3c2410nor.c
| `-- yaffs&yaffs2源代码
| |-- yaffs.tar.gz
| `-- yaffs2.tar.gz
|-- 20
| |-- USB串口驱动
| | |-- usb-serial.c
| | `-- usb-serial.h
| |-- USB工具
| | `-- usbview-1.0.tar.tar
| |-- USB骨架程序
| | `-- usb-skeleton.c
| |-- USB键盘驱动
| | |-- input.h
| | |-- usb_input.h
| | `-- usbkbd.c
| `-- usb主机控制器驱动范例
| |-- ohci-s3c2410.c
| `-- usb-control.h
|-- 21
| |-- PCI骨架程序
| | `-- pci-skeleton.c
| `-- PCI驱动范例
| `-- i810_audio.c
`-- 22
|-- 范例代码
| |-- oops范例
| | |-- oops_example.asm
| | `-- oops_example.c
| `-- proc范例
| `-- sim_proc.c
`-- 内核调试工具
|-- ddd-3.3.11.tar.gz
|-- gdbmod-2.4.bz2
|-- kdb-v4.4-2.6.15-rc5-common-1.bz2
|-- kdb-v4.4-2.6.15-rc5-common-2.bz2
|-- kdb-v4.4-2.6.15-rc5-i386-1.bz2
`-- linux-2.6.15.5-kgdb-2.4.tar.tar
Platform: |
Size: 25078324 |
Author: zxx000 |
Hits:
Description: describle how to develop serial program in posix
Platform: |
Size: 59392 |
Author: 刘亮 |
Hits:
Description: linux下的一个串口调试程序的源代码-of a serial debugging program's source code
Platform: |
Size: 13312 |
Author: 缪志华 |
Hits:
Description: linux下读写串口,包括参数的设置,以及如何进行读写-Serial literacy, including parameter settings, and how to read and write
Platform: |
Size: 2048 |
Author: 张函 |
Hits:
Description: 这是基于arm s3c44b0处理器的开发平台的串口传输的简单的程序-This is based on the arm s3c44b0 processor development platform serial transmission of simple procedures
Platform: |
Size: 16384 |
Author: 欧阳纯风 |
Hits:
Description: 嵌入式Linux应用开发详解 linux下串口操作源码和网络口操作源码-Embedded Linux Application Development Elaborates on Linux operating Serial source and network operation source I
Platform: |
Size: 6471680 |
Author: 伏镒永 |
Hits:
Description: linux串口编程的一些文档以及一些示例,有助于刚开始接触串口的人的快速入门-some documentation, and sample some help contact the beginning of the serial Quick Start
Platform: |
Size: 157696 |
Author: 李东 |
Hits:
Description: 一个串口驱动开发教程,对初学者很有帮助,欢迎下载-a good tutorial of linux serial port driver
Platform: |
Size: 2048 |
Author: 问问 |
Hits:
Description: 这是一个linux下的串口编程的源代码。-This is a source code about serial port programming in linux.
Platform: |
Size: 2048 |
Author: 夏雨 |
Hits:
Description: linux下串口通讯源程序,可以作为两机通信-source program about serial communication in linux,and can used in communication between two terminals.
Platform: |
Size: 2048 |
Author: 陆敏 |
Hits:
Description: Borland C 3.1的串口编程源代码,中断方式接收,键盘按键发送。
可运行于DOS,windows98,Windows2-Borland C 3.1 Serial programming source code, interrupt receiving, sending keyboard keys. Can run on DOS, Linux, Windows
Platform: |
Size: 15360 |
Author: 赵磊 |
Hits:
Description: 本文介绍了嵌入式操作系统Linux中的串口应用编程方法。对需要进行串口编程的人有一定的帮助。-This paper introduces the embedded Linux operating system serial programming method. The need for the serial programming will help.
Platform: |
Size: 242688 |
Author: 王飞 |
Hits:
Description: linux下通过串口关闭Linux服务器的串口通讯程序 C语言源程序 sled-0.1.tar.gz-Serial closed through the Linux server serial communication procedures C language source sled-0.1.tar.gz
Platform: |
Size: 57344 |
Author: 蓝鸥 |
Hits:
Description: linux下的串口驱动,通讯程序,已经是成熟代码,可以直接使用!-The Serial Driver, communication procedures, it is already a mature code that can be used directly!
Platform: |
Size: 140288 |
Author: 夏磊 |
Hits:
Description: 自己写的gps信息解码的程序,linux平台下的,主要是gga,rmc等的解析。-Wrote it myself gps information decoding procedure, linux platform, mainly gga, rmc etc. Analysis.
Platform: |
Size: 17408 |
Author: a |
Hits:
Description: linux下3个串口收发数据的测试程序,包括串口的打开,串口的初始化,以及发送和接收数据的函数-3 serial port under linux to send and receive data testing procedures, including the opening of the serial, serial initialization, as well as send and receive data function
Platform: |
Size: 1024 |
Author: 汪龙峰 |
Hits:
Description: linux下串口通信例子,可以很容易就移植到嵌入式平台。-Examples of serial communication under linux can be easily ported to embedded platforms.
Platform: |
Size: 6144 |
Author: aki |
Hits:
Description: linux下用QT 做的串口编程工具,在linux下做串口调试有一定的参考价值-linux using QT do serial programming tools, in doing serial debugging under linux of some reference value
Platform: |
Size: 484352 |
Author: 杨工 |
Hits:
Description: 嵌入式linux-socket串口编程,-Serial programming embedded linux-socket,
Platform: |
Size: 11264 |
Author: hbf |
Hits:
Description: serial-linux adalah program tes serial versi linux yang khusus dibuat untuk mengetes komunikasi serial peralatan yang ada di jalan tol.
Platform: |
Size: 4412416 |
Author: aday |
Hits:
« 12
3
4
5
6
7
8
9
10
...
50
»