CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 搜索资源 - character

搜索资源列表

  1. drive

    0下载:
  2. C语言实现的Linux字符设备驱动,能够注册字符设备模块,文件中含有2个脚本文件,实现字符设备模块的加载和卸载-C language implementation of the Linux character device driver can register character device module, the file contains two scr ipts, the character devices to achieve the loading and unloading mo
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:98350
    • 提供者:miao
  1. linux-char-driver-develop-guid

    0下载:
  2. linux 字符设备开发流程及内核函数工作原理,很精辟、透彻!-linux character device development process and the principle of kernel functions, it is insightful, thorough!
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:151866
    • 提供者:王涛
  1. char-driver-by-sem

    1下载:
  2. 一个字符驱动源码,基于信号量同步。亲自试验,可以运行。-A character-driven source code, semaphore-based synchronization. Test yourself, you can run.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:3907
    • 提供者:王涛
  1. linux-driver-by-zs

    0下载:
  2. linux 字符驱动,基于阻塞和非阻塞。亲自运行,可以的。-linux character-driven, based on the blocking and nonblocking. Person operation, can.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:3811
    • 提供者:王涛
  1. linux-char-driver-by-timer

    0下载:
  2. linux 字符驱动实例,基于定时器的,可以用的源码。-linux instances of character-driven, based on the timer, you can use the source code.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:2566
    • 提供者:王涛
  1. linux-char-driver-by-mmap

    0下载:
  2. linux 字符驱动函数,基于内存隐射--mmap。无需修改,可以运行。-linux character-driven functions, memory-based hint- mmap. Without modification, you can run.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:4352
    • 提供者:王涛
  1. linux-char-driver-by-proc

    0下载:
  2. linux 字符驱动基于访问/proc的。字符驱动入门绝好例子,无需修改。-linux character-driven based on the access/proc' s. A great example of character-driven entry without modification.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-27
    • 文件大小:1328
    • 提供者:王涛
  1. match

    0下载:
  2. 字符串匹配,使用有限状态自动机原理实现,并解释转义字符 \\ -String matching, the use of finite state automata theory to achieve, and explain the escape character ' \ \'
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:1990
    • 提供者:北极冰
  1. LDD3

    0下载:
  2. 学习linux驱动开发的好书,里面详细介绍了字符设备,块设备,网络设备驱动。-Good books to learn linux driver development, which introduces the character devices, block devices, network device drivers.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-10
    • 文件大小:2482947
    • 提供者:mall
  1. Linux-driver-development13

    0下载:
  2. 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第13章、Linux块设备驱动。块设备是与字符设备并列的概念,这两类设备在Linux中驱动的结构有较大差异,总体而言,块设备驱动比字符设备驱动要复杂得多,在I/O操作上表现出极大的不同,缓冲、I/O调度、请求队列等都是与块设备驱动相关的概念。本章将详细讲解Linux块设备驱动的编程方法。13.1节讲解块设备I/O操作的特点,分析字符设备与块设备在I/O操作上的差异。13.2节从整体上描述Linux块设备驱动
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:645331
    • 提供者:华清远见
  1. Linux-driver-development6

    0下载:
  2. 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第6章、字符设备驱动。在Linux设备驱动中,字符设备驱动较为基础。本章主要讲解Linux字符设备驱动程序的结构及其主要组成部分的编程方法。6.1节讲解了Linux字符设备驱动的关键数据结构cdev及file_operations结构体的操作方法,并分析了Linux字符设备的整体结构,给出了简单的设计模板。6.2节讲解了本章及后续各章所基于的globalmem虚拟字符设备,第6~9章都将基于该虚拟设备实例进
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:447330
    • 提供者:华清远见
  1. Linux-driver-development12

    0下载:
  2. 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第12章、Linux字符设备驱动综合实例。本章将分析5个典型的字符设备驱动,在这些驱动中,将灵活地运用到前面各章所讲解的内容。12.1节讲解按键的设备驱动,加深读者对字符设备驱动架构、阻塞与非阻塞、中断、定时器等相关知识的理解。12.2节讲解触摸屏的设备驱动,触摸屏的设备驱动比按键的设备驱动稍微复杂一些,但是很类似。12.3节讲解TI的DSP提供给通用CPU的HPI(主机并行接口)的设备驱动,硬件结构为AR
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-26
    • 文件大小:629248
    • 提供者:华清远见
  1. sull

    0下载:
  2. 一个简单的linux字符驱动程序,说明了写一个字符驱动的基本框架-Characters in a simple linux driver, writing a character-driven shows the basic framework
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-13
    • 文件大小:2648
    • 提供者:龙迹
  1. Example147

    0下载:
  2. vc 发送中文消息字符 的程序源码,很不错的demo-Send a message vc Chinese character program source code, very good demo
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-05
    • 文件大小:25433
    • 提供者:
  1. base64

    0下载:
  2. Base64是一種使用64基的位置計數法。它使用2的最大次方來代表僅可列印的ASCII 字元。這使它可用來作為電子郵件的傳輸編碼。在Base64中的變數使用字元A-Z、a-z和0-9 ,這樣共有62個字元,用來作為開始的64個數字,最後兩個用來作為數字的符號在不同的系統中而不同。一些如uuencode的其他編碼方法,和之後binhex的版本使用不同的64字符集來代表6個二進制數字,但是它們不叫Base64。-Base64 is a 64-base position count. It uses
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-26
    • 文件大小:15595
    • 提供者:sysmng
  1. DecodeString

    0下载:
  2. vc根据指定字符分割字符串\DecodeString-vc split according to the specified character string \ DecodeString
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-06
    • 文件大小:29491
    • 提供者:
  1. code

    0下载:
  2. 对输入字符进行加密或解密处理。加密最终结果是morse码,解密则是把morse码解成可读字符-Character input processing to encrypt or decrypt
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-05-16
    • 文件大小:4442529
    • 提供者:懒人
  1. 1-Linux

    0下载:
  2. Linux字符设备驱动程序设计 -Linux character device driver design a character device driver design
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-07
    • 文件大小:264812
    • 提供者:zdx
  1. dictionary

    0下载:
  2. 字典查找的程序,密码破译,主要使用字符匹配及字典查找-Dictionary lookup program, code-breaking, the main character matches and use the dictionary to find
  3. 所属分类:Crack_Hack

    • 发布日期:2017-03-31
    • 文件大小:222238
    • 提供者:吕志强
  1. Delphi_EncaDec

    0下载:
  2. 简单的字符加密解密的函数及应用例程,通过异或加密方式-Simple character encryption and decryption function and application routines through XOR encryption
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-31
    • 文件大小:176743
    • 提供者:
« 1 2 ... 6 7 8 9 10 1112 13 14 15 16 ... 37 »
搜珍网 www.dssz.com