虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Dual-Port

  • Embedded Linux Primer: A Practical, Real-World Approach presents a step-by-step walkthrough of port

    Embedded Linux Primer: A Practical, Real-World Approach presents a step-by-step walkthrough of porting Linux to custom boards and introduces real-time configuration via CONFIG_RT--one of today s most exciting developments in embedded Linux. You ll find especially detailed coverage of using development tools to analyze and debug embedded systems--including the art of kernel debugging.

    标签: step-by-step walkthrough Real-World Practical

    上传时间: 2014-01-19

    上传用户:wys0120

  • The Microsoft(R) Guide for Assembly Language and C Programmers By Ray Duncan PROGRAMMING FOR MS-DO

    The Microsoft(R) Guide for Assembly Language and C Programmers By Ray Duncan PROGRAMMING FOR MS-DOS Genealogy of MS-DOS MS-DOS in Operation Structure of MS-DOS Application Programs MS-DOS Programming Tools Keyboard and Mouse Input Video Display Printer and Serial Port File Management Volumes and Directories Disk Internals Memory Management The EXEC Function Interrupt Handlers Installable Device Drivers Filters Compatibility and Portability MS-DOS FUNCTIONS REFERENCE IBM ROM BIOS AND MOUSE FUNCTIONS REFERENCE LOTUS/INTEL/MICROSOFT EMS FUNCTIONS REFERENCE

    标签: Programmers PROGRAMMING Microsoft Assembly

    上传时间: 2017-05-05

    上传用户:xuanjie

  • oracle中常用函数说明. SQL中的单记录函数 1.ASCII 返回与指定的字符对应的十进制数 SQL> select ascii( A ) A,ascii( a ) a,

    oracle中常用函数说明. SQL中的单记录函数 1.ASCII 返回与指定的字符对应的十进制数 SQL> select ascii( A ) A,ascii( a ) a,ascii( 0 ) zero,ascii( ) space from dual A A ZERO SPACE --------- --------- --------- --------- 65 97 48 32 2.CHR 给出整数,返回对应的字符 SQL> select chr(54740) zhao,chr(65) chr65 from dual ZH C -- - 赵 A 3.CONCAT 连接两个字符串 SQL> select concat( 010- , 88888888 )|| 转23 高乾竞电话 from dual 高乾竞电话 ---------------- 010-88888888转23

    标签: ascii SQL oracle select

    上传时间: 2014-11-23

    上传用户:zhangyigenius

  • Tiny Planet is small device connected to a GSM cell phone. When the mobile receives a predefined SMS

    Tiny Planet is small device connected to a GSM cell phone. When the mobile receives a predefined SMS (text message), like "Activate burglar alarm" or "Start backup pump", the circuit automatically recognizes it as a command, and switches the output port accordingly. Besides switching the port on or off, the user can pulse it for a short period (e.g. 鈥淩eboot remote server鈥?.

    标签: predefined connected receives Planet

    上传时间: 2017-05-17

    上传用户:fanboynet

  • 基于单片机的10根线束线缆检测器的源程序 #pragma sfr #pragma DI #pragma EI #pragma NOP //#pragma interrupt INTTM010

    基于单片机的10根线束线缆检测器的源程序 #pragma sfr #pragma DI #pragma EI #pragma NOP //#pragma interrupt INTTM010 isr_INTTM000 #pragma interrupt INTTM80 isr_INTTM80 //#pragma interrupt INTTMH1 isr_INTTMH1 #pragma section @@CNST OPT AT 80H const char OPTION=0x94 typedef unsigned char uchar typedef unsigned int uint //==PORT DEFINE== #define SEND1_P P4.1 #define SEND2_P P4.2 #define SEND3_P P4.3 #define SEND4_P P4.4 #define SEND5_P P4.5 #define SEND6_P P4.6 #define SEND7_P P4.7 #define SEND8_P P13.0 #define SEND9_P P2.3 #define SEND10_P P2.2

    标签: pragma interrupt INTTM 010

    上传时间: 2017-05-25

    上传用户:sunjet

  • nec 78F0413的例子程序,里面有LCD

    nec 78F0413的例子程序,里面有LCD,RTL和PORT的操作,学NEC的朋友可以使用

    标签: 78F0413 nec LCD 程序

    上传时间: 2017-05-30

    上传用户:Altman

  • 使用键盘上的上、下、左、右四个按键

    使用键盘上的上、下、左、右四个按键,可以分别控制led1,2,3,4,每个LED 对应的Port 请参考“实验平台介绍”说明文档。要求按下 上面提到的四个按键中间的一个按键后,该按键对应的led 被点亮,持续1 秒钟以后led 熄 灭。

    标签: 键盘 按键

    上传时间: 2013-12-02

    上传用户:stvnash

  • 使用键盘上的上、下、左、右四个按键

    使用键盘上的上、下、左、右四个按键,可以分别控制led1,2,3,4, 每个LED 对应的Port 请参考“实验平台介绍”说明文档。要求按下 上面提到的四个按键中间的一个按键后,该按键对应的led 被点亮,持续1 秒钟以后led 熄 灭。

    标签: 键盘 按键

    上传时间: 2014-11-08

    上传用户:hustfanenze

  • This small utility helps to generate seven segment display codes for different I/O connections. For

    This small utility helps to generate seven segment display codes for different I/O connections. For example, AVR/PIC Port A.0 -> D Segment Port A.1 -> B Segment .... Also it can generate Common Cathode or Common Anode table codes.. I Coded it long time ago. I Hope help someone. Thank you

    标签: connections different generate display

    上传时间: 2014-01-17

    上传用户:开怀常笑

  • A user-space device driver can do many of the things that kernel drivers can t, such as perform a lo

    A user-space device driver can do many of the things that kernel drivers can t, such as perform a long-running computation, block while waiting for an event, or read files from the file system. Unlike kernel drivers, a user-space device driver can use other device drivers--that is, access the network, talk to a serial port, get interactive input from the user, pop up GUI windows, or read from disks. User-space drivers implemented using FUSD can be much easier to debug it is impossible for them to crash the machine, are easily traceable using tools such as gdb, and can be killed and restarted without rebooting even if they become corrupted. FUSD drivers don t have to be in C--Perl, Python, or any other language that knows how to read from and write to a file descriptor can work with FUSD. User-space drivers can be swapped out, whereas kernel drivers lock physical memory.

    标签: user-space can drivers perform

    上传时间: 2014-01-01

    上传用户:saharawalker