Carrier Board for Gumstix Verdex Pro. Has 2 - 30A motor drivers for robotic loco motion PIC micro handles motion control. USB host signals. USB console connector AC97 audio CODEC Exapnsion headers for PIC micro.
标签: for Carrier Gumstix drivers
上传时间: 2014-05-29
上传用户:Yukiseop
What you always wanted to know about networking but were afraid to ask! * How networks and the Internet work * How to build coherent, cost-effective network infrastructures * How to design networks for maximum reliability and availability * What you need to know about data center and application networking * How to secure networks against today?s threats and attacks * How to take advantage of the latest mobility technologies * How virtualizing networks can help businesses leverage their network investments even further * How to combine messaging, calendaring, telephony, audio, video, and web conferencing into a unified communications architecture
标签: networking networks always afraid
上传时间: 2013-12-25
上传用户:fandeshun
注册机分为三部分,分别为PartA,PartB,PartC 此注册机支持的软件如下:(2010年4月30日最新版) PartA: IAR Embedded Workbench For MSC-51 v7.51A IAR Embedded Workbench For Atmel AVR v5.50 IAR Embedded Workbench For Atmel AVR32 v3.30 IAR Embedded Workbench For ARM v5.50 IAR Embedded Workbench For Renesas M16C and R8C v3.40 IAR Embedded Workbench For NEC 78K v4.62 IAR Embedded Workbench For MSP430 v5.10 IAR Embedded Workbench For Samsung SAM8 v3.10A IAR Embedded Workbench For Renesas H8 v2.20A IAR Embedded Workbench For Dallas Semiconductor/Maxim MAXQ v2.10A (新版本请使用PartB) IAR Embedded Workbench For CR16C v2.11A (新版本请使用PartB) IAR Embedded Workbench For NEC V850 v3.30A (新版本请使用PartB) IAR Embedded Workbench For Renesas M32C v3.20A (新版本请使用PartB) PartB: IAR Embedded Workbench For Dallas Semiconductor/Maxim MAXQ v2.20 IAR Embedded Workbench For NEC V850 v3.71 IAR Embedded Workbench For Renesas M32C v3.21A IAR Embedded Workbench For CR16C v2.20 IAR Embedded Workbench For Renesas R32C v1.31 IAR Embedded Workbench For Microchip PIC18 v3.10A IAR Embedded Workbench For Microchip dsPIC v1.40A IAR Embedded Workbench For Renesas RX v1.12 PartC: IAR Embedded Workbench For ColdFire v1.22 IAR Embedded Workbench For HCS12 v3.20 IAR Embedded Workbench For HCS08 v1.10 IAR Embedded Workbench For STM8 v1.10 IAR Embedded Workbench For Renesas SuperH v2.10 截止2010年04月30日,IAR官网上23款软件,只剩“Embedded Workbench for MK5 v1.25A”无法完成注册 另外说明下,此注册机针对的是IAR官网上下载的EV版(评估板),至于从其他渠道获得的CD版或者FULL版的软件,没有测试。
标签: IAR
上传时间: 2015-04-24
上传用户:mengshilin
第一节、samba是干什么的?它有什么用? Samba(SMB是其缩写) 是一个网络服务器,它是Linux作为本地服务器最重要的一个服务,用于Linux和Windows共享文件之用;Samba可以用于Windows和 Linux之间的共享文件,也一样用于Linux和Linux之间的共享文件;不过对于Linux和Linux之间共享文件有更好的网络文件系统 NFS,NFS也是需要架设服务器的; 2、安装及服务操作命令 安装samba程序非常简单,使用rpm -q samba查看当前系统是否已经安装了samba软件。 如果没有那就进入光盘,rpm -ivh *samba*.rpm即可。 仔细说下安装的包: samba-common-3.0.28-0.el5.8 //samba服务器和客户端中的最基本文件 samba-3.0.28-0.el5.8 //samba服务器核心软件包 system-config-samba-1.2.39-1.el5 //samba图形配置界面 samba-client-3.0.28-0.el5.8 //samba客户端软件 启动、暂停和停止服务: /etc/init.d/smb start /etc/init.d/smb stop /etc/init.d/smb restart 或 service smb start service smb stop service smb restart 第二节、由最简单的一个例子说起,匿名用户可读可写的实现 第一步: 更改smb.conf 我们来实现一个最简单的功能,让所有用户可以读写一个Samba 服务器共享的一个文件夹;我们要改动一下smb.conf ;首先您要备份一下smb.conf文件; [root@localhost ~]# cd /etc/samba [root@localhost samba]# cp smb.conf smb.conf.bak [root@localhost samba]# vi smb.conf 或geidt smb.conf & 然后我们把下面这段写入smb.conf中: [global] workgroup = WORKGROUP netbios name = Liukai server string = Liukai's Samba Server security = share [test] path = /opt/test writeable = yes browseable = yes guest ok = yes 注解: [global]这段是全局配置,是必段写的。其中有如下的几行; workgroup 就是Windows中显示的工作组;在这里我设置的是WORKGROUP (用大写); netbios name 就是在Windows中显示出来的计算机名; server string 就是Samba服务器说明,可以自己来定义;这个不是什么重要的; security 这是验证和登录方式,这里我们用了share ;验证方式有好多种,这是其中一种;另外一种常用的是user的验证方式;如果用share呢,就是不用设置用户和密码了; [test] 这个在Windows中显示出来是共享的目录; path = 可以设置要共享的目录放在哪里; writeable 是否可写,这里我设置为可写; browseable 是否可以浏览,可以;可以浏览意味着,我们在工作组下能看到共享文件夹。如果您不想显示出来,那就设置为 browseable=no,guest ok 匿名用户以guest身份是登录; 第二步:建立相应目录并授权 [root@localhost ~]# mkdir -p /opt/test [root@localhost ~]# id nobody uid=99(nobody) gid=99(nobody) groups=99(nobody) [root@localhost ~]# chown -R nobody:nobody /opt/test 注释:关于授权nobody,我们先用id命令查看了nobody用户的信息,发现他的用户组也是nobody,我们要以这个为准。有些系统nobody用户组并非是nobody ; 第三步:启动服务器 第四步:访问Samba 服务器的共享; 1、在Linux 中您可以用下面的命令来访问; [root@localhost ~]# smbclient -L //liukai或 smbclient //192.168.0.94/test Password: 注:直接按回车 2、在Windows中,您可以用下面的办法来访问; \\liukai 或 \\192.168.0.94 3、说明:如果用了netbiosname,就可以用“\\主机名”来访问,如果没用netbiosname,就不能用主机名访问。 第三节、简单的密码验证服务器 修改smb.conf文件: security = user guest account = liukai encrypt passwords = yes smb passwd file = /etc/samba/smbpasswd 然后,建立一个新用户 useradd liukai passwd liukai 成功后,cat /etc/passwd | mksmbpasswd.sh > /etc/samba/smbpasswd smbpasswd -a liukai 这就成功地添加了一个smb用户。 重启服务,使用这个用户进行登录即可。
上传时间: 2015-05-13
上传用户:yangkang1192
马兰士原理图CD输入部分,后面还有一级放大,按照原厂电路图画的,P2部分有修改 ,正常信号和供电分开
标签: 马兰士s72
上传时间: 2015-05-22
上传用户:物语夜色
光盘工具UltraISO软碟通是一款光盘映像ISO文件编辑制作工具,它可以图形化地从光盘、硬盘制作和编辑ISO文件。 ultraiso是一款功能强大而又方便实用的光盘映像文件制作/编辑/格式转换工具,它可以直接编辑光盘映像和从映像中直接提取文件,也可以从CD-ROM制作光盘映像或者将硬盘上的文件制作成ISO文件。同时,你也可以处理ISO文件的启动信息,从而制作可引导光盘。本U盘量产网特别版软件具有如下特点: 本软件是UltraISOV9.5.3.2901简体中文版安装版,注意,是真正的简体中文版,而非多国语言版精简而来,安装后注册即可,注意,是注册的,而非采用破解机破解而来,所有功能均可用,使用上无任何限制,量产网试用了这么多版本,还是安装版的最完美,单文件版会出现不能关联ISO或者关联后打开ISO显示软件本身还要再选择你的ISO文件的问题; 安装后第一次打开请注册: 用户名:王涛 注册码:7C81-1689-4046-626F UltraISO PE功能特点: 1、从CD-ROM制作光盘的映像文件。 2、将硬盘、光盘、网络磁盘文件制作成ISO文件。 3、从ISO文件中提取文件或文件夹。 4、编辑各种ISO文件(如Nero Burning ROM、Easy CD Creator、Clone CD 制作的光盘映像文件)。 5、制作可启动ISO文件。 UltraISO V9.5.3.2901(2012-09-01): 1、新增写入硬盘映像特性,可以从软盘/硬盘映像(.IMA)、可启动ISO映像(.ISO)和本地硬盘上的文件制作可启动USB闪存盘 (基于MS-DOS, winpe 和ISOLINUX/syslinux 的系统) 2、可以新建自定义大小的硬盘映像(最大16GB)和软盘映像(最大2GB) 3、支持DOS(MSDOS/PCDOS/FREEDOS), Windows NT 和 syslinux 引导扇区 4、可以自由修改软盘/硬盘映像大小 (F9) 5、支持从驱动器检测光盘介质容量 6、可以优化大于1GB的文件 7、显示ISO映像中文件夹大小
标签: 光盘工具
上传时间: 2016-03-20
上传用户:未信lx
Description The STM3210E-EVAL evaluation board is a complete development platform for STMicroelectronic's ARM Cortex-M3 core-based STM32F103ZET6 or STM32F103ZGT6 microcontroller. The range of hardware features on the board help you to evaluate all peripherals (LCD, SPI Flash, USART, IrDA, USB, audio, CAN bus, smartcard, MicroSD Card, NOR Flash, NAND Flash, SRAM, temperature sensor, audio DAC and motor control) and develop your own applications.
标签: stm3210e_eval
上传时间: 2016-03-27
上传用户:guozhenhui1st
The TAS3204 is a highly-integrated audio system-on-chip (SOC) consisting of a fully-programmable, 48-bit digital audio processor, a 3:1 stereo analog input MUX, four ADCs, four DACs, and other analog functionality. The TAS3204 is programmable with the graphical PurePath Studio™ suite of DSP code development software. PurePath Studio is a highly intuitive, drag-and-drop environment that minimizes software development effort while allowing the end user to utilize the power and flexibility of the TAS3204’s digital audio processing core. TAS3204 processing capability includes speaker equalization and crossover, volume/bass/treble control, signal mixing/MUXing/splitting, delay compensation, dynamic range compression, and many other basic audio functions. Audio functions such as matrix decoding, stereo widening, surround sound virtualization and psychoacoustic bass boost are also available with either third-party or TI royalty-free algorithms. The TAS3204 contains a custom-designed, fully-programmable 135-MHz, 48-bit digital audio processor. A 76-bit accumulator ensures that the high precision necessary for quality digital audio is maintained during arithmetic operations. Four differential 102 dB DNR ADCs and four differential 105 dB DNR DACs ensure that high quality audio is maintained through the whole signal chain as well as increasing robustness against noise sources such as TDMA interference. The TAS3204 is composed of eight functional blocks: Clocking System Digital Audio Interface Analog Audio Interface Power supply Clocks, digital PLL I2C control interface 8051 MCUcontroller Audio DSP – digital audio processing 特性 Digital Audio Processor Fully Programmable With the Graphical, Drag-and-Drop PurePath Studio™ Software Development Environment 135-MHz Operation 48-Bit Data Path With 76-Bit Accumulator Hardware Single-Cycle Multiplier (28 × 48)
上传时间: 2016-05-06
上传用户:fagong
简单命令使用grep等的使用 [zorro@isch ~]$ history 1 ifconfig 2 su 3 exit 4 ls 5 cd Desktop/ 6 ls 7 tar zxcf VMwareTools-8.4.5-324285.tar.gz 8 tar zxvf VMwareTools-8.4.5-324285.tar.gz 9 cd vmware-tools-distrib/ 10 ls 11 ./vmware-install.pl 12 su 13 ls 14 cd .. 15 ls 16 rm VMwareTools-8.4.5-324285.tar.gz 17 rm -r vmware-tools-distrib 18 ls 19 make 20 ls 21 cd redis/ 22 quit 23 ls 24 ca redis/ 25 cd redis/ 26 cd redis-2.8.17 27 make 28 cd redis-2.8.17 29 ls 30 cd redis-2.8.17 31 cd str 32 cd src 33 ls 34 ./redis-cli 35 ls 36 cd redis-2.8.17 tar.gz 37 make 38 cd src 39 ./redis-server .. /redis.conf 40 ./redis-cli 41 ./redis-server ../redis.conf 42 vi test1.sh 43 ./test1.sh 44 vi test.sh 45 ./test.sh 46 ls 47 chmod 777 test.sh 48 ./test.sh 49 vi express 50 $ grep –n ‘the’ express 51 clear 52 grep -n 'the' express 53 vi express 54 grep -n 'the' express 55 grep -vn 'the'express 56 grep -vn 'the' express 57 grep -in 'the' express 58 vi test2.c 59 grep -l 'the' *.c 60 grep -n 't[ae]st' express 61 grep -n 'oo' express 62 grep -n '[^g]oo' express 63 grep -n '[a^z]oo' express 64 grep -n '[0^9]' express 65 grep -n '^the' express 66 vi express 67 sed -e 'd' express 68 sed -e '1d' express 69 sed -e '1~7d' express 70 sed -e '$d' express 71 sed -e '1,/^$/d' express 72 ls 73 cd 74 pwd 75 history [zorro@isch ~]$
标签: 简单命令使用
上传时间: 2016-05-24
上传用户:12345678gan
完整的关于以太网CSMA/CD中退避算法的MATAB仿真程序
上传时间: 2016-09-24
上传用户:zouyy