enews160_2

Size: px
Start display at page:

Download "enews160_2"

Transcription

1 / vol.160 CIC FastModels 103 e-learning ( ) IC / CIC Introduction to Conversational French - Syllabus Summer

2 / 流 2

3 87 流 MorSensor MorSensor MorSensor Demo MorSensor PC App MorSensor MorSensor MorSensor 3

4 FastModels Using FastModels as multi-core embedded software development target SOC ARM FastModels [1] ARM Cortex-A15 [2] Linux KVM [3] (Kernel-based Virtual Machine) Android host OS Linux guest OS DS-5 [4] Streamline [5] ARM FastModels DS-5 ( ) 4

5 ( ) ARM Versatile Express Cortex-A15x2 ARM CPU ARM FastModels Cortex-A15 Open Virtual Systems KVM(Kernel-based Virtual Machine) Linux [6][7] Android host Android qemu Linux DS-5 Streamline CPU ( ) 5

6 ARM FastModels FastModels( ) ARM ESL(Electric System Level) Programmer's View Model ARM IP Programmer's View Model (Instruction accurate) (Cycle accurate) Cycle accurate ESL 2 5 ARM Linux Android WinCE function accurate ARM Cache MMU LAPE Virutualization TrustZone VFP Cache Miss Lisa language [8] SystemC TLM 2.0 [9] EDA tool ARM prototype Cortex-A7 Cortex-A8 Cortex-A9 Cortex-A12 Cortex- A15 Cortex-A53 Cortex-A57 Cortex-R4 Cortex-R7 Cortex-M3 Cortex-M4 ARM926EJ-S ARM968E-S ARM1136JF-S ARM1176JZF-S AMBA Cache Controller(L2C-310) AMBA Direct Memory Access Controller(DMA330/PL080) Generic Interrupt Controller(GIC-390/GIC-400/PL-192) TrustZone Controller(BP141/BP147/SP890) CoreLink Dynamic Memory Controoler (DMC-340) CoreLink Cache Coherent Interconnect(CCI-400) Ethernet LCD Keyboard and Mouse Fast Models LCD IP 6

7 KVM on ARM ARM Cortex-A15 Linux kernel 3.9 ARM KVM (Kernel-based Virtual Machine) KVM Linux kernel hypervisor CPU ( ) hypervisor( Xen) KVM Linux Linux kernel hypervisor Open Virtual Systems [6][7] ARM KVM Linux Kernel 3.9 Android Linux Fast Models Cortex-A15 4 KVM Linux Android Cortex-A15 Linux Ubuntu LTS AMD64 Ubuntu ARM corss compiler uimage tools, CIC ARM FastModels DS-5 Android AEL Linux KVM Linux kernel source code root ( ) 1. Ubuntu 2. FastModels DS-5 3. FastModels Cortex-A15 4. Linux kernel source code Android image 5. DS-5 streamline driver daemon streamline 6. Android host Linux guest Linux guest. 7

8 1. Ubuntu Ubuntu LTS (gnome-terminal) sudo apt-get install build-essential bc ncurses-dev # sudo apt-get install gcc-arm-linux-gnueabi # ARM cross compiler sudo apt-get install u-boot-tools # uboot kernel uimage sudo apt-get install git wget curl # git wget curl sudo apt-get install tcsh # tcsh CIC mkdir ~/proj cd proj mkdir build target CIC # proj # #build #target #CIC CIC 2. FastModels DS-5 a. CIC ( DS-5 FastModels ~/proj/cic CIC/ DS5_d150018_linux_64.tgz #FastModels 8.2 FASTMODELS_d82_linux.tgz #DS b. ( ) cd ~/proj/cic # sudo mkdir /usr/cad/arm # sudo tar xfz DS5_d150018_linux_64.tgz -C /usr/cad/arm # DS-5 sudo tar xfz FASTMODELS_d82_linux.tgz -C /usr/cad/arm # FastModels 3. FastModels Cortex-A15 a. FastModels cd ~/proj cp -a /usr/cad/arm/fastmodels/cur/fastmodelsportfolio_8.2/examples. b. Cortex-A15 compiler FastModels gcc Ubuntu gcc 4.6 gcc -v # compiler cd ~/proj/examples/fvp_ve/build_cortex-a15x4 # Cortex-A15x4 sed -i 's/4.1/4.6/g' FVP_VE_Cortex-A15x4.sgproj # gcc c. Simulation Models tcsh # CIC.cshrc tcsh shell source /usr/cad/arm/cic/fastmodels.cshrc # Fastmodels sgcanvas FVP_VE_Cortex-A15x4.sgproj # ( ) 8

9 Fast Models Cortex-A15 4 FastModels ( ) --> Linux64-Release-GCC4.6 # gcc 4.6 amd64 Fast Models --> Settings -> Targets -> Integrated simulator (ISIM system) # 9

10 Fast Models --> Build # #Linux64-Release-GCC-4.6 # isim_system # library Linux64-Release-GCC-4.6/ cadi_system_linux64-release-gcc-4.6.so FVP_VE_Cortex_A15x4_Linux64-Release-GCC-4.6_Makefile.sg gen isim_system libarmctmodel.so libmaxcoreinitsimulationengine.so.2 libsdl-1.2.so > File -> Exits # FastModels terminal exit # tcsh mv Linux64-Release-GCC-4.6 ~/proj # 10

11 4. Linux kernel source code Android image a. Android cd ~/proj/build # build wget b. KVM Linux kernel cd ~/proj/build # build git clone git://github.com/virtualopensystems/linux-kvm-arm.git -b kvm-vexpress-3.9 curl # config cd linux-kvm-arm # kernel cp../config./config # CROSS_COMPILE=arm-linux-gnueabi- ARCH=arm make menuconfig # config enable ( ) [*] Enable loadable module support General Setup [*] Profiling Support Kernel Profiling Kernel hacking 11

12 [*] Tracers [*] Trace process context switches and events Kernel Features [*] Enable hardware performance counter support for perf events [*] Use local timer interrupts disable ds-5 gator driver Device Drivers [ ] Gator module for ARM's Streamline Performance Analyzer (NEW) Kernel kernel Gator Exit Exit console CROSS_COMPILE=arm-linux-gnueabi- ARCH=arm make # kernel zimage cp arch/arm/boot/dts/rtsm_ve-cortex_a15x4.dtb ~/proj/target/host-a15.dtb # Android host Linux kernel target cp arch/arm/boot/dts/vexpress-v2p-ca15-tc1.dtb ~/proj/target/guest-a15.dtb # Linux guest Linux kernel target c. bootwrapper cd ~/proj/build # build 12

13 git clone git://github.com/virtualopensystems/boot-wrapper.git # cd boot-wrapper # bootwrapper LOADADDR=0x CROSS_COMPILE=arm-linux-gnueabi- \ # uimage KERNEL_SRC=../linux-kvm-arm ARCH=arm make # bootwrapper cp uimage linux-system-semi.axf ~/proj/target # target d. Android image cd ~/proj/target # target mkdir android # android dd if=/dev/zero of=android.img bs=1mib count=2048 # 2GB ext3 img mkfs.ext3 android.img sudo mount -o loop android.img android # image sudo tar xpjvf ~/proj/build/jb_ve_4.1.1.tar.bz2 -C android # Android sudo umount android # image e. cd ~/proj/target # target cat << EOF > params # params motherboard.smsc_91c111.enabled=1 motherboard.hostbridge.usernetworking=1 motherboard.hostbridge.usernetports="1234=1234,8080=8080,5022=22" motherboard.mmc.p_mmc_file="android.img" cluster.cpu0.semihosting-cmd_line="--kernel uimage --dtb host-a15.dtb -- earlyprintk console=ttyama0,38400n8 mem=2048m ip=dhcp root=/dev/mmcblk0 rw init=/init" EOF cat << EOF > run_fastmodels.sh # script../linux64-release-gcc-4.6/isim_system -f params linux-system-semi.axf EOF chmod +x run_fastmodels.sh # script ls./ # target android guest-a15.dtb linux-system-semi.axf run_fastmodels.sh android.img host-a15.dtb params uimage f. ( ) cd ~/proj/target./run_fastmodels.sh # target # script 13

14 g. ctrl+c script Fast Models CLCD 5. DS-5 streamline driver daemon( Streamline streamline a. Android-NDK gator driver and daemon cd ~/proj/build # build wget # r9b x86 64bit tar xvfpj android-ndk-r9b-linux-x86_64.tar.bz2 # android-ndk-r9b mkdir -p android-ndk-r9b/jni # NDK jni b. gator driver cd ~/proj/build # build tar xvfpz /opt/ds-5/cur/arm/gator/driver-src/gator-driver.tar.gz # DS-5 driver make -C linux-kvm-arm/ M=$PWD/gator-driver ARCH=arm \ CROSS_COMPILE=arm-linux-gnueabi- modules # kernel driver 14

15 cp gator-driver/gator.ko ~/proj/target # gator.ko target c. gator daemon cd ~/proj/build # build tar xvfpz /opt/ds-5/cur/arm/gator/daemon-src/gator-daemon.tar.gz # DS-5 daemon cp -a gator-daemon/* android-ndk-r9b/jni # NDK jni NDK_PROJECT_PATH=android-ndk-r9b android-ndk-r9b/ndk-build # NDK jni cp android-ndk-r9b/libs/armeabi/gatord ~/proj/target # daemon target d. Android host gatord gator.ko cd ~/proj/target # target sudo mount -o loop android.img android # android image sudo cp gator.ko android/system/modules # gator.ko sudo chmod 644 android/system/modules/gator.ko # sudo cp gatord android/system/bin # gatord sudo chmod 755 android/system/bin/gatord # sudo umount android # e. cd ~/proj/target./run_fastmodels.sh # target # f. DS-5 streamline( ) i. gnome-terminal ii. DS-5 tcsh # CIC.cshrc tcsh shell source /usr/cad/arm/cic/ds5.cshrc # DS-5 ds5 # DS-5 -> DS-5 Select a workspace <- OK DS-5 workspace -> Windows -> Open Perspective -> other -> DS-5 Debug 15

16 DS-5 Debug Perspective -> Streamline Data -> > Start Capture -> OK -> Stop to stop the caputre Streamline f. DS-5 i. DS-5 -> File -> Exit DS-5 exit ii. script ctrl+c script Fast Models CLCD 6. Android host Linux guest a. Linux qemu cd ~/proj/build # build 16

17 wget # Linux cramfs wget # qemu ( KVM) b. Linux guest OS cd ~/proj/target # target mkdir initrd mnt # initrd mnt sudo mount -o loop -t cramfs../build/fs-alip-armel.cramfs mnt # cramfs mnt sudo cp -a mnt/* initrd # cramfs initrd cd initrd # initrd sudo ln -s sbin/init init # init sudo sh -c "find. cpio -o -H newc gzip >../initrd.cpio.gz" # initrd.cpio.gz cd ~/proj/target # target sudo umount mnt # cramfs image c. Android Host qemu cd ~/proj/target # target sudo mount -o loop android.img android # android image sudo cp uimage android # Linux kernel android sudo unzip ~proj/build/qemu.zip -d android # qemu android sudo chmod 755 android/qemu-system-arm # sudo cp initrd.cpio.gz android # initrd android sudo cp guest-a15.dtb android # guest Linux OS device tree cat > run_qemu.sh << "RUN_QEMU"./qemu-system-arm \ -vnc :0 \ -k en-us \ -enable-kvm \ -kernel uimage \ -dtb guest-a15.dtb \ -m 512 \ -M vexpress-a15 \ -cpu cortex-a15 \ -initrd initrd.cpio.gz \ -serial stdio \ -append "console=ttyama0 mem=512m" RUN_QEMU sudo cp run_qemu.sh android sudo chmod 755 android/run_qemu.sh # qemu script # script android # 17

18 sudo umount android # d../run_fastmodels.sh e. Linux guest Android host FVP terminal_0./run_qemu.sh # qemu guest Linux Linux root AEL: root f. guest Linux FVP terminal_0 ctrl+c qemu g. script ctrl+c script Fast Models CLCD ARM FastModels ARM FastModels prototype pre-silicon [1]ARM FastModels [2]ARM Cortex-A15 Processor [3]Kernel Based Virtual machine [4]ARM DS-5 Development Studio [5]ARM DS-5 Using ARM Streamline [6]KVM port on ARM Cortex-A15 Fast Models Virtual Open Systems [7]Android & Virtualization on Fast Models Virtual Open Systems [8]Lisa Language [9]SystemC TLM

19 103 年度 e-learning 立 練 參 103 了 見 CIC : e-learning 流 劉 huyjen@cic.narl.org.tw /10~3/30 5/5~5/25 8/4~8/24 10/6~10/26 4/7~4/20 6/2~6/15 9/1~9/14 11/03~11/16 19

20 103E001-A HSPICE 103E002-A Full-Custom IC Design Concept 103E003-A RF CMOS IC Design 103E004-A Verdi fundamental and Siloti full-chip-simulation training 103E005-A LakerADP+LakerL3 SDL flow training 103E006-A Advanced Design System - Fundamentals 103E007-A CMOS BioMEMS Sensing Technology 103E008-A Sensor Readout Circuit Technology 103E009-A RF 103E010-A Advanced Design System - Momentum 103E011-A Digital IC Testing Step-by-Step with Verigy E012-A Step Into Electronic System Level Design 103E013-A FPGA Design Fundamentals for Altera 103E014-A Logic Synthesis (Synopsys) 103E015-A Cell-Based IC Physical Design and Verification with IC Compiler 103E016-A Brief Introduction of Cell-based Design 103E017-A T18 103E018-A TSMC 0.35UM 20

21 IC 102 IC IC IC IC IC IC 103/03/14 IC /04/01~ 103/04/20 103/05/05~ 103/05/16 103/0517( ) / ( : ) 103/06/20 ~ 103/07/11 103/07/ * icdesign@cic.narl.org.tw IC 21

22 T18-102D ( ) T18-102D-A0002 O 1.391*1.336 T18-102D-A0007 O 5.8GHz 0.940*0.914 T18-102D-A0008 O 1.766*1.959 T18-102D-A0011 T18-102D-A0012 O O 15 CMOS UHF RFID 0.723* *0.962 T18-102D-A0013 O 0.888*0.888 T18-102D-A0014 O 1.061*0.928 T18-102D-A0015 O UWB 2.329*1.284 T18-102D-A0016 O 1.290*0.862 T18-102D-A0021 O 1.418*1.338 T18-102D-A0022 O 1.700*2.000 T18-102D-A0023 O 0.945*0.605 T18-102D-A0024 O 24 GHz 0.890*0.570 T18-102D-A0025 O 1.198*1.168 T18-102D-A0027 O CMOS-MEMS 1.406*0.660 T18-102D-A0029 O CMOS 1.200*1.200 T18-102D-A0031 O 1.423*1.433 T18-102D-A0032 O *2.188 T18-102D-A0034 O X-band 0.588*0.792 T18-102D-A0035 O 1.066*0.885 T18-102D-A0041 O K 0.931*

23 T18-102D-A0042m O CMOS MEMS 1.928*1.848 T18-102D-A0043a O ; O 1.500*1.500 T18-102D-A0046 O cmos 1.215*1.412 T18-102D-A0047 O 5-GHz 1.800*1.850 T18-102D-A0048m O 1.637*1.944 T18-102D-A0049 O 1.533*1.033 T18-102D-A0051 O 2.4-GHz 2x *2.099 T18-102D-A0054 O 2.155*1.845 T18-102D-A0055 O CMOS- MEMS 1.347*1.000 T18-102D-A0056 O 5.2GHz 1.200*0.550 T18-102D-A0060 O 1.732*1.468 T18-102D-A0061 O 0.18 µm 5GHz 0.655*0.730 T18-102D-A0062 O K-Band 0.687*0.905 T18-102D-A0064 O 24 GHz 0.780*0.642 T18-102D-A0065 O TSMC 0.18um CMOS 0.890*0.845 T18-102D-A0066 O 5.8GHz CMOS 2.878*0.902 T18-102D-A0067 O K 0.532*0.766 T18-102D-A0068 O 24 GHz 0.830*0.545 T18-102D-A0069 O 24 GHz 1.580*3.050 T18-102D-A0070 O 24 GHz 1.016*0.603 T18-102D-A0071 OO 5GHz 2.020*1.260 T18-102D-A0072 O K-Band *0.908 T18-102D-A0073 O ISM UNII 0.709*0.912 T18-102D-A0078 O 1.148*0.657 T18-102D-A0079 O *0.688 T18-102D-A0081 O CMOS 0.631*

24 T18-102D-A0083 O 1.521*0.970 T18-102D-A0084 O MOS *1.167 T18-102D-A0085 O 1.288*1.573 T18-102D-A0086 O 1.158*1.158 T18-102D-A0087 O ( 3) 0.624*0.843 T18-102D-A0088 O 1.200*1.200 T18-102D-A0089 O 0.600*0.755 T18-102D-A0090 O *0.951 T18-102D-A0091 O 24GHz 0.818*0.775 T18-102D-A0092 O 1.800*1.400 T18-102D-A0094 O LC 0.434*0.822 T18-102D-A0095 O MOS *0.883 T18-102D-A0096 O EEG ECG 1.510*1.510 T18-102D-N0001 O 0.3 V 24- GHz 0.449*0.634 T18-102D-N0002a O 1.634*1.624 T18-102D-P0001 O K-band 1.126*0.870 T18-102D-P0002 T18-102D-P0004 T18-102D-P0005 O O O DC-to- THz 1.874*1.222 RDFTbased * *0.958 T18-102D-P0006 O 0.949*1.101 T18-102D-P0007 O 0.570*0.710 T18-102D-P0008 O 0.570*0.723 T18-102D-P0010 O K- Band 1.007*1.229 T18-102D-P0011 O 1.146*1.040 T18-102D-P0012 O 24GHz 1.514*0.692 T18-102D-P0013 O 0.964*

25 T18-102D-P0014 O 2.4/5.2GHz 2.148*1.706 T18-102D-P0016 O K-band 0.916*1.423 T18-102D-P0017 O K-band 1.208*0.664 T18-102D-P0020 O ISM OOK 1.132*1.126 T18-102D-P0021 O 24GHz 0.905*1.038 T18-102D-P0023 O 77-GHz CMOS *1.500 T18-102D-P0024 O 24GHz 0.919*0.880 T18-102D-P0025 O 1.210*0.900 T18-102D-I0001 O ; O 0.759*0.688 T18-102D-I0003 O 1.389*1.458 T18-102D-I0004 O 1.003*0.848 T18-102D-I0005 T18-102D-I0007 O O 0.18um CMOS 1V 3-6V TFT-LCD 0.783* *1.444 T18-102D-E0002 O K-band 0.744*0.565 T18-102D-E0005 O LTE 0.930*1.075 T18-102D-E0006 O 0.563*0.563 T18-102D-E0009 O 0.500*0.679 T18-102D-E0010a O 0.940*0.931 T18-102D-E0011 O CMOS 0.615*0.645 T18-102D-E0012 O CMOS 0.615*0.645 T18-102D-E0013 O 0.615*0.645 T18-102D-E0015 O 0.779*0.756 T18-102D-E0016 O 1.018*1.018 T18-102D-E0017 O 0.888*0.888 T18-102D-E0018 O 1.200*1.200 T18-102D-E0021 O ; O 0.18-µm 0.249*

26 T18-102D-E0022 O MOBILE 0.722*0.600 T18-102D-E0023 O 1.200*1.200 T18-102D-E0024 O 24GHz 0.485*0.700 T18-102D-E0027 O 24GHz 1.142*1.190 T18-102D-E0028 O 24Hz 1.050*1.190 T18-102D-E0029a O EMC 8051 MCU 1.108*1.101 T18-102D-E0030 O 100~500MHz 1.200*1.200 T18-102D-E0031a O ; O 32 Booth 0.763*0.753 T18-102D-E0032 O GHz 0.779*0.948 T18-102D-E0033 O SATAⅢ 0.550*0.650 T18-102D-E0035 O 22GHz 0.535*0.574 T18-102D-E0038a O 0.991*0.985 T18-102D-E0039 O 1.020*0.857 T18-102D-E0040 O CMOS 0.610*0.645 T18-102D-E0041 O 5.8GHz CMOS 0.18-um 1.080*0.985 T18-102D-E0042 O SATAⅢ 6GHz 0.875*0.615 T18-102D-E0043 O CMOS 0.700*0.890 T18-102D-E0044 O 22~26 GHz 1.178*1.125 T18-102D-E0045 O 0.694*0.646 T18-102D-E0046 O 0.671*0.552 T18-102D-E0048 O 24GHz 0.960*0.675 T18-102D-E0049 O 24GHz *0.999 T18-102D-E0051 OO 5.2GHz nmos *0.600 T18-102D-E0052 O 0.570*0.720 T18-102D-E0053 O LTE 1.200*1.200 T18-102D-E0055 O 24GHz 1.037*

27 T18-102D-E0056 O X 0.935*0.840 T18-102D-E0058 O 1.2GHz 1.021*1.060 T18-102D-E0063 O 1.198*1.198 T18-102D-E0064 O *0.905 T18-102D-E0067 O 5.2GHz 1.200*0.600 T18-102D-E0069 O 1.200*1.200 T18-102D-E0070 O ; O 2.4GHz *0.250 T18-102D-E0071 O L 1.150*1.150 T18-102D-E0072 O 24GHz CMOS 1.155*1.200 T18-102D-E0073 O 0.888*0.888 T18-102D-E0074 O 1.018*1.018 T18-102D-E0075 O 0.734*0.674 T18-102D-E0076 O 10GHz 0.670*1.162 T18-102D-E0078 O 0.691*0.706 T18-102D-E0079 O 臨 臨 邏 0.673*0.628 T18-102D-E0080 O 24GHz 0.613*0.691 T18-102D-E0082 O 10Ghz LC 0.848*0.777 T18-102D-E0084 O 1.097*1.079 T18-102D-E0085 O 5GHz 1.125*0.991 T18-102D-E0086 O 10-bit 50 MS/s 0.841*0.724 T18-102D-E0087 O 晧 10 GHz 0.940*1.023 T18-102D-E0088 O 1.181*1.200 T18-102D-E0089 O 1.180*0.634 T18-102D-E0090 O X 1.085*0.700 T18-102D-E0091 O 1.200*1.199 T18-102D-E0092 O ( 2) 0.911*

28 T18-102D-E0093 O X 1.060*0.800 T18-102D-E0095 O 0.438*0.903 T18-102D-E0096 O 0.1GHz~3.5GHz 0.429*0.906 T18-102D-E0097 O 10GHz 0.935*0.840 T18-102D-E0098 O 0.430*0.430 T18-102D-E0099 O K-band LC-tank 0.450*0.625 T18-102D-E0100 O 0.539*0.540 T18-102D-E0102 O 0.462*0.462 T18-102D-E0103 O 0.282*0.282 T18-102D-E0104 O VCO ( 5) 1.190*0.999 T18-102D-E0105 O BCM CCM 1.154*1.185 T18-102D-E0107 O 1.111*0.898 T18-102D-E0109 O Class-B/Class- C 0.842*1.188 T18-102D-E0110 O 0.683*0.976 T18-102D-E0112 O 0.861*0.956 T18-102D-E0113 O 0.972*0.666 T18-102D-E0114 O ; O NAND 1.018*1.018 T18-102D-E0115 O & 1.200*0.891 T18-102D-E0116 O 0.552*0.499 T18-102D-E0117 O 0.552*0.499 T18-102D-E0118 O MOS 1.067*0.769 T18-102D-E0119 O 1.033*

29 Wafer Mapping (IC ) 29

30 D35-102C IC ( )/ ( ) D35-102C-A0001 CMOS / Z / 4.008*3.993 D35-102C-A0004 CMOS 2.221*1.202 D35-102C-A *2.083 D35-102C-A *1.918 D35-102C-A *1.997 D35-102C-A *1.554 D35-102C-A *4.088 D35-102C-A0024 CMOS 1.348*1.055 D35-102C-A *2.794 D35-102C-A *2.760 D35-102C-A0029_+m, 3.683*2.132 D35-102C-A *0.987 D35-102C-A0031_m CMOS-MEMS 0.396*0.421 D35-102C-A *2.373 D35-102C-A *1.682 D35-102C-A *2.106 D35-102C-A *2.475 D35-102C-A0039_+m 2.544*2.843 D35-102C-A *0.736 D35-102C-A0041 C M O S - MEMS 1.155*1.743 D35-102C-A *0.510 D35-102C-A0045 CMOMEMS D- NA 2.166*

31 D35-102C-P0001 PFM 2.313*1.863 D35-102C-P *1.647 D35-102C-I0001 TFTLCD IC 1.440*1.440 D35-102C-I0002 CMOS-MEMS 2.000*2.000 D35-102C-E0001 (Energy Efficiency of Intelligent Electro-optic Building Design) 1.471*1.286 D35-102C-E0002_+m, ( )(null) 1.436*1.383 D35-102C-E0003 VLSI (INTRODUCTION TO VLSI DESIGN) 1.351*1.351 D35-102C-E0004 VLSI (INTRODUCTION TO VLSI DESIGN) 1.462*1.462 D35-102C-E0005 ;, VLSI (INTRODUCTION TO VLSI DESIGN) 1.465*1.244 D35-102C-E0007 (null) 1.498*0.872 D35-102C-E0008 (null) 1.488*1.309 D35-102C-E0009 (VLSI Design) 1.402*1.402 D35-102C-E0010 (null) 1.497*1.074 D35-102C-E0011 VLSI (null) 1.500*1.500 D35-102C-E0012 VLSI (INTRODUCTION TO VLSI DESIGN) 1.462*1.462 D35-102C-E0013 I(null) 0.821*0.781 D35-102C-E0014 I(null) 1.498*1.443 D35-102C-E0015 VLSI (INTRODUCTION TO VLSI DESIGN) 1.500*1.500 D35-102C-E0017 (I)(null) 0.316*0.412 D35-102C-E0018 (LOW-POWER SYSTEM DESIGN) 1.462*1.351 D35-102C-E0019 D35-102C-E0020 D35-102C-E0021,,,,,, (null) 1.501*1.501 (null) 1.501*1.501 VLSI (VLSI Design Practice) 1.500*1.500 D35-102C-E0022 VLSI (null) 1.500*1.500 D35-102C-E0023,, VLSI (null) 1.500*

32 D35-102C-E0024,, VLSI (null) 1.500*1.500 D35-102C-E0025 VLSI (null) 1.500*1.500 D35-102C-E0026 (null) 1.375*1.375 D35-102C-E0027 IC (null) 1.506*1.503 D35-102C-E0030 VLSI (null) 1.500*1.500 D35-102C-E0031_bio (null) 1.489*1.358 D35-102C-E0032, VLSI (Introduction to VLSI Design) 1.101*0.884 D35-102C-E0033 VLSI (null) 1.392*1.392 D35-102C-E0034_m, ( )(null) 1.494*1.496 D35-102C-E0035, (null) 1.364*1.500 D35-102C-E0036, (null) 1.182*1.172 D35-102C-E0037 (null) 0.933*0.936 D35-102C-E0038 (null) 1.200*1.200 D35-102C-E0039 (null) 0.629*0.580 D35-102C-E0040 (Solid-state Sensors and Applications) 1.452*1.452 D35-102C-E0041 (null) 1.314*1.307 D35-102C-E0042 (null) 1.235*1.245 D35-102C-E0043_bio (null) 1.082*1.380 D35-102C-E0044 ( )(null) 0.701*0.583 D35-102C-E0047 ( )(null) 1.243*1.199 D35-102C-E0049 (null) 0.697*0.591 D35-102C-E0050 (null) 0.983*0.581 D35-102C-E0051 (null) 1.154*1.200 D35-102C-E0055 (VLSI devices) 1.452*1.452 D35-102C-E0056 CMOS (CMOS Analog Circuit Design) 1.407*

33 Wafer Mapping (IC ) 33

34 D35-103A IC ( )/ ( ) D35-103A-A *2.233 D35-103A-A *1.516 D35-103A-A0005 LED 0.874*0.872 D35-103A-A *2.500 D35-103A-A0007 LED 1.381*1.411 D35-103A-A *1.099 D35-103A-A mA 0.934*0.534 D35-103A-A *2.040 D35-103A-A0012 CMUT 1.221*1.348 D35-103A-A *2.395 D35-103A-A0015 CMOS- MEMS MEMS 1.425*1.315 D35-103A-A0017+m, 2.566*2.843 D35-103A-A *2.124 D35-103A-A0021 CMOS-MEMS Pierce 0.966*0.624 D35-103A-A MHz 1.451*1.055 D35-103A-A *1.205 D35-103A-A *1.479 D35-103A-A0027 Z 1.750*1.750 D35-103A-P *1.949 D35-103A-P *1.944 D35-103A-I0001 CMOS 0.979*1.999 D35-103A-I *

35 D35-103A-I0003 CMOS-MEMS 2.499*2.100 D35-103A-E0003 D35-103A-E0004 D35-103A-E0005 (Power Control Integrated Circuit Design ) (Power Control Integrated Circuit Design) (Power Control Integrated Circuit Design) 1.492* * *1.499 D35-103A-E0006 ( )(null) 1.283*1.283 D35-103A-E0007 (Analog Integrated Circuit Design) 1.055*0.967 D35-103A-E0008 (Analog Integrated Circuit Design ) 0.812*0.766 D35-103A-E0009 ( )(null) 1.351*1.129 D35-103A-E0010 (Thesis) 1.496*1.309 D35-103A-E0013, D35-103A-E0014,, IC (IC DESIGN FOR COMMUNICATION INTERFACES) 1.351*1.018 IC (null) 0.907*1.018 D35-103A-E0015m, (null) 0.797*1.214 D35-103A-E0016 ( )(null) 1.319*1.318 D35-103A-E0017, (null) 1.500*1.500 D35-103A-E0018, ( )(null) 1.500*1.500 D35-103A-E0019 (null) 1.414*1.307 D35-103A-E0020 (null) 1.314*1.307 D35-103A-E0021 VLSI (null) 1.402*

36 Wafer Mapping (IC ) 36

37 SiGe18-102C IC ( )/ ( ) SiGe18-102C-A0004 ( 3) 0.402*0.517 SiGe18-102C-A GHz/5.8GHz 1.001*0.908 SiGe18-102C-A0006 A 5.2GHz 0.540*0.492 SiGe18-102C-A0007 LTE 2.4GHz 0.850*0.750 SiGe18-102C-P *0.541 SiGe18-102C-E *0.852 SiGe18-102C-E *0.917 SiGe18-102C-E *1.063 SiGe18-102C-E *1.065 SiGe18-102C-E0006 (Millimeter Wave Frequency-Source Integrated Circuits) 0.669*1.087 SiGe18-102C-E *0.951 SiGe18-102C-E *1.071 Wafer Mapping (IC ) 37

38 SiGe18-103A IC ( )/ ( ) SiGe18-103A-A *0.558 SiGe18-103A-A0004 SiGe18-103A-A um SiGe BiCMOS 32x um SiGe BiCMOS 5 GHz / 60 GHz 0.970* *1.829 SiGe18-103A-A GHz 1.387*0.716 SiGe18-103A-A *0.762 SiGe18-103A-A *0.763 SiGe18-103A-A *0.595 SiGe18-103A-A0011 C PMOS 0.944*1.250 SiGe18-103A-A *0.712 SiGe18-103A-A0013 HBT C 0.760*0.790 SiGe18-103A-A *0.959 SiGe18-103A-A0016 SiGe BiCMOS 1.294*0.774 SiGe18-103A-A0017 C 0.685*0.804 SiGe18-103A-A *0.934 SiGe18-103A-P0001 / 0.570*0.715 SiGe18-103A-P *0.741 SiGe18-103A-P *0.710 SiGe18-103A-P *0.481 SiGe18-103A-P0007 Ku 1.160*0.715 SiGe18-103A-P0009 Ka 0.920*0.635 SiGe18-103A-E *

39 Wafer Mapping (IC ) 39

40 T25HVG2-102C IC ( )/ ( ) A0001 A0002 A0003 A0004 A0006 A0009 A0010 A0011 A0013 A0015 A0016 A0019 P0004 P0005 I0002 E0001 E0002 E0003 E0004 E0005 E0008 E0009 E * * * * * *0.914, LED 1.900* mA 1.641* * * * *1.050, Twin Bus 1.223* * *1.900 ( )(Special Topics in VLSI Design (I)) 0.900* * *1.150 (Master Thesis) 0.900*1.150 ( )(Case study(1)) 1.150*0.900 ( )(Case study(1)) 1.150*0.900 ( )(Case study(1)) 1.150*0.900 ( )(Case study(1)) 1.150*

41 E0011 E0012 E0013 E0014 E0015 E0017 E0018 E0019 E0020 ( )(Case study (1)) 1.150*0.900 ( )(Case study (1)) 1.150*0.900 ( )(Case study (1)) 1.150*0.900 ( )(Case study (1)) 1.150* *0.900 (Reliability engineering of integrated circuits) 1.150*0.900 (master thesis) 0.900*1.150 (Power Integrated Circuit Design) 0.900*1.150 (Power Integrated Circuit Design) 0.900*1.150 Wafer Mapping (IC ) 41

42 T25HVG2-103A IC ( )/ ( ) T25HVG2-103A- A0001 T25HVG2-103A- A0002 T25HVG2-103A- A0003 T25HVG2-103A- A0004 T25HVG2-103A- A0005 T25HVG2-103A- A0006 T25HVG2-103A- A0014 T25HVG2-103A- A0015 T25HVG2-103A- E0002 T25HVG2-103A- E0003 T25HVG2-103A- E0004 T25HVG2-103A- E0005 T25HVG2-103A- E0008 T25HVG2-103A- E0009 T25HVG2-103A- E0010 T25HVG2-103A- E0011 T25HVG2-103A- E0012 T25HVG2-103A- E0014 T25HVG2-103A- E0015 T25HVG2-103A- E0018 T25HVG2-103A- E * * * * *0.832 LED 1.900* V 5 V / 1.900*1.400 SAW 0.435* *0.900, ( )(Project Lab) 1.043*0.687 ( )(Special Topics (2)) 1.150*0.900 ( )(Special Topics (2)) 1.150*0.900 ( )(Special Topics (2)) 1.150*0.900 ( )(Special Topics (2)) 1.150*0.900 ( )(Special topics (2)) 1.150*0.900 ( )(Special topics (2)) 1.150*0.900 ( )(Special topics (2)) 1.150*0.900 ( )(SPECIAL TOPICS (2)) 1.150*0.900 ( )(SPECIAL TOPICS (2)) 1.150*0.900 ( )(SPECIAL TOPICS (2)) 1.150*0.900 ( )(Practical Project (II)) 1.150*

43 Wafer Mapping (IC ) 43

44 TN90GUTM-103A ( )/ ( ) A0001 A0002 A0003 A0004 A0005 A0008 A0009 A0011 A0012 A0014 A0018 A0028 A0029 A0033 A0036 A0037 A0038 A0040 A0041 A0042 A0043 A0046 A * GHz CMOS 0.867*0.732 W- Band CMOS 0.867* Gb/s 0.751* V 0.668* * VDD 0.657*0.988 K 0.684*0.853 FIR 1.000*0.980 W -Band 0.811* * V 1.000* GHz 0.689* ad 0.923* GHz CMOS 1.108*0.605 CMOS 0.503*0.681 V-Band CMOS 0.618*0.806 Marchand Balun 60GHz 0.763* *0.924 PCSNIM 2.4GHz 1.076*1.380 Doherty CMOS 1.010*1.477 W-band 0.795* *

45 A0048 A0051 A0052 A0053 A0054 A0057 A0058 A0059 A0061 I0001 U 0.521* * GHz * * * * *0.716 V-band 0.991* GHz / 1.215* *0.705 I *1.000 I0005, *1.603 I GHz CMOS 0.539*0.523 I0011 I0012 I0013 N0001 N0002 P0001,, 60 GHz 0.940* * *0.467, 0.655*0.615, 0.890* *4 MIMO sorted QR 1.315*1.296 P *1.269 P0003, P0005 V 4~9GHz UWB 1.105* *0.706 P *1.260 P *1.327 P *

46 P Gb/ s 0.460*0.410 P Gb/s 0.620*0.560 P0012 P0013 K 1.538* *1.866 P GHz CMOS 0.665*0.715 P GHz CMOS 0.595*0.672 P *0.980 P0019, 24 GHz 1.780*1.840 P GHz C 0.730*0.870 P0022 P * *0.978 P0025 V-band 0.501*0.659 P0028 P0030,,,, 4.000* *0.973 P GHz CMOS 1.052*0.535 P0032 V-band 0.793*0.839 P *1.991 P0036 P0037,,,,, P0038, P GHz CMOS 60-GHz CMOS 60-GHz CMOS Yagi 1.28MS/s 0.536* * * *0.868 P0045 E 0.588*0.849 P /60-GHz 1.199*

47 Wafer Mapping (IC ) 47

enews174_2

enews174_2 103 CMOS Seal-Ring 104 e-learning 104 104 / http://www.cic.org.tw/login/login.jsp CIC Introduction to Conversational French - Syllabus Summer 2004 1 4 21 CMOS MorSensor MorFPGA DUO 2 MorSensor 3 103 (

More information

Abstract arm linux tool-chain root NET-Start! 2

Abstract arm linux tool-chain root NET-Start! 2 Lab III - Embedding Linux 1 Abstract arm linux tool-chain root NET-Start! 2 Part 1.4 Step1. tool-chain 4 Step2. PATH 4 Part 2 kernel 5 Step1. 5 Step2... 6 Step3...8 Part 3 root. 8 Step1. 8 Step2. 8 Part

More information

附件1:

附件1: 2013 年 增 列 硕 士 专 业 学 位 授 权 点 申 请 表 硕 士 专 业 学 位 类 别 ( 工 程 领 域 ): 工 程 ( 集 成 电 路 工 程 ) 申 报 单 位 名 称 : 南 开 大 学 国 务 院 学 位 委 员 会 办 公 室 制 表 2013 年 12 月 18 日 填 一 申 请 增 列 硕 士 专 业 学 位 授 权 点 论 证 报 告 集 成 电 路 产 业 是

More information

enews162

enews162 102 210 GHz CMOS 103 e-learning ( ) 103 / http://www.cic.org.tw/cic_v13/login/login.jsp CIC Introduction to Conversational French - Syllabus Summer 2004 1 102 SoC ( CIC ) 102 4 30 Full-custom 32 Full-custom

More information

NANO COMMUNICATION 23 No.3 90 CMOS 94/188 GHz CMOS 94/188 GHz A 94/188 GHz Dual-Band VCO with Gm- Boosted Push-Push Pair in 90nm CMOS 90 CMOS 94

NANO COMMUNICATION 23 No.3 90 CMOS 94/188 GHz CMOS 94/188 GHz A 94/188 GHz Dual-Band VCO with Gm- Boosted Push-Push Pair in 90nm CMOS 90 CMOS 94 NANO COMMUNICATION 23 No.3 90 CMOS 94/188 GHz 23 90 CMOS 94/188 GHz A 94/188 GHz Dual-Band VCO with Gm- Boosted Push-Push Pair in 90nm CMOS 90 CMOS 94/188GHz LC class-b 0.70 0.75 mm 2 pad 1 V 19.6 ma (ƒ

More information

enews161

enews161 (NAIST) 103e-Learning() CIC 0.35um Multi-option MEMS CIC T25HVG2 UMC 2014 /http://www.cic.org.tw/cic_v13/login/login.jsp CIC Introduction to Conversational French - Syllabus Summer 2004 1 (NAIST) (NAIST)

More information

Embargoed until May 4, 2004 EXPRESS 40 NI HQ 3000 1000 5000 ~ 500 10% / 500 85% NI LabVIEW 7 Express Express EXPRESS : #1 GPS Navigation PC/WWW/Email CD+RW Mobile Phone PDA DVD+RW Satellite Car Alarm/Radio

More information

自由軟體社群發展經驗與 Linux認證介紹

自由軟體社群發展經驗與  Linux認證介紹 -- (http://linux.vbird.org) 2011/08/12 1 -- -- 不 理 便 了 來 連 ( ) ( ) 論 ~ ~ 2 復 理 3 4 復 數 量 復 離 來 ~ @_@ 5 - 年 Linux windows virtualbox 不 理 Linux Xen 立 4 4GB 了 30 xen 來 sudo xm 來 Linux I/O 例 yum 6 - 年 Windows

More information

强 度 调 制 器 相 位 延 迟 器 表 面 声 光 偏 转 器 磁 光 隔 离 器 偏 振 控 制 器 等 器 件 的 原 理 及 应 用 讲 述 介 质 波 导 波 导 色 散 光 纤 模 式 等 概 念 结 合 基 础 介 绍 学 科 前 沿 知 识 30130333 精 密 仪 器 设 计

强 度 调 制 器 相 位 延 迟 器 表 面 声 光 偏 转 器 磁 光 隔 离 器 偏 振 控 制 器 等 器 件 的 原 理 及 应 用 讲 述 介 质 波 导 波 导 色 散 光 纤 模 式 等 概 念 结 合 基 础 介 绍 学 科 前 沿 知 识 30130333 精 密 仪 器 设 计 精 密 仪 器 系 00130022 光 盘 存 储 及 应 用 技 术 2 学 分 32 学 时 CD ROM and Its Applications 本 课 程 主 要 讨 论 光 学 数 字 数 据 存 储 技 术 基 本 原 理, 光 盘 读 写 擦 系 统 的 种 类 特 点, 工 作 机 理, 信 号 读 出 时 钟 恢 复 均 衡 信 号 评 价, 光 盘 数 据 格 式 与 数 据

More information

ICD ICD ICD ICD ICD

ICD ICD ICD ICD ICD MPLAB ICD2 MPLAB ICD2 PIC MPLAB-IDE V6.0 ICD2 usb PC RS232 MPLAB IDE PC PC 2.0 5.5V LED EEDATA MPLAB ICD2 Microchip MPLAB-IDE v6.0 Windows 95/98 Windows NT Windows 2000 www.elc-mcu.com 1 ICD2...4 1.1 ICD2...4

More information

02 看 見 躍 動 的 創 新 力 量 04 矽 數 十 年 金 矽 創 意 十 年 有 成 16 築 夢 之 際 18 20 22 24 26 28 30 32 34 36 38 你 所 不 知 道 的 金 矽 獎 40 樂 在 其 中

02 看 見 躍 動 的 創 新 力 量 04 矽 數 十 年 金 矽 創 意 十 年 有 成 16 築 夢 之 際 18 20 22 24 26 28 30 32 34 36 38 你 所 不 知 道 的 金 矽 獎 40 樂 在 其 中 02 看 見 躍 動 的 創 新 力 量 04 矽 數 十 年 金 矽 創 意 十 年 有 成 16 築 夢 之 際 18 20 22 24 26 28 30 32 34 36 38 你 所 不 知 道 的 金 矽 獎 40 樂 在 其 中 我 們 相 信, 科 技 創 新 是 影 響 台 灣 競 爭 力 的 主 軸, 而 培 育 國 內 高 科 技 人 才, 正 是 金 矽 獎 創 辦 的 理 念

More information

201406002+大学计算机基础B.doc

201406002+大学计算机基础B.doc 目 录. 大 学 计 算 机 基 础 B( 非 独 立 设 课 ).... 计 算 机 操 作 基 础 ( 独 立 设 课 )...3 3. 程 序 设 计 基 础 ( 非 独 立 设 课 )...5 4. 面 向 对 象 程 序 设 计 ( 非 独 立 设 课 )...8 5. 数 据 库 原 理 ( 非 独 立 设 课 )...0 6. 算 法 设 计 与 分 析 ( 非 独 立 设 课 )...

More information

混訊設計流程_04.PDF

混訊設計流程_04.PDF CIC Referenced Flow for Mixed-signal IC Design Version 1.0 (Date) (Description) (Version) V. 1.0 2010/11/ Abstract CIC IC (Mixed-signal Design Flow) IC (Front End) (Back End) Function Timing Power DRC

More information

XXX专业本科人才培养方案

XXX专业本科人才培养方案 计 算 机 科 学 与 技 术 专 业 本 科 人 才 培 养 方 案 (Computer Science and Technology 080901) 一 培 养 目 标 本 专 业 培 养 德 智 体 美 全 面 发 展, 具 有 良 好 的 科 学 与 人 文 素 养, 熟 悉 经 济 管 理 法 律 等 相 关 基 础 知 识, 系 统 地 掌 握 计 算 机 硬 件 软 件 方 面 的 基

More information

简 介 本 白 皮 书 高 度 概 述 了 支 持 移 动 互 联 网 设 备 (Mobile Internet Device) 的 Intel C++ Software Development Tool Suite for Linux* OS, 目 标 读 者 主 要 是 技 术 决 策 制 订

简 介 本 白 皮 书 高 度 概 述 了 支 持 移 动 互 联 网 设 备 (Mobile Internet Device) 的 Intel C++ Software Development Tool Suite for Linux* OS, 目 标 读 者 主 要 是 技 术 决 策 制 订 白 皮 书 Robert Müller-Albrecht 开 发 人 员 产 品 部 门 支 持 移 动 互 联 网 设 备 的 Intel C++ Software Development Tool Suite for Linux* OS 文 档 编 号 :319332-001US 简 介 本 白 皮 书 高 度 概 述 了 支 持 移 动 互 联 网 设 备 (Mobile Internet Device)

More information

CH01.indd

CH01.indd 3D ios Android Windows 10 App Apple icloud Google Wi-Fi 4G 1 ( 3D ) 2 3 4 5 CPU / / 2 6 App UNIX OS X Windows Linux (ios Android Windows 8/8.1/10 BlackBerry OS) 7 ( ZigBee UWB) (IEEE 802.11/a/b/g/n/ad/ac

More information

快 速 入 门 (Linux) 概 述 文 档 目 的 本 文 档 介 绍 了 如 何 快 速 创 建 Linux 系 统 实 例 远 程 连 接 实 例 部 署 环 境 等 旨 在 引 导 您 一 站 式 完 成 实 例 的 创 建 登 录 和 快 速 环 境 部 署 云 服 务 器 ECS 实

快 速 入 门 (Linux) 概 述 文 档 目 的 本 文 档 介 绍 了 如 何 快 速 创 建 Linux 系 统 实 例 远 程 连 接 实 例 部 署 环 境 等 旨 在 引 导 您 一 站 式 完 成 实 例 的 创 建 登 录 和 快 速 环 境 部 署 云 服 务 器 ECS 实 云 服 务 器 ECS 快 速 入 门 (Linux) 快 速 入 门 (Linux) 概 述 文 档 目 的 本 文 档 介 绍 了 如 何 快 速 创 建 Linux 系 统 实 例 远 程 连 接 实 例 部 署 环 境 等 旨 在 引 导 您 一 站 式 完 成 实 例 的 创 建 登 录 和 快 速 环 境 部 署 云 服 务 器 ECS 实 例, 有 时 候 也 被 称 为 阿 里 云

More information

专业主干课程与主要专业课程教学大纲(2009年、2011年).doc

专业主干课程与主要专业课程教学大纲(2009年、2011年).doc ... 1... 4... 9... 12... 16... 20... 23... 26... 30... 33... 36 Electric Circuits 00440021 64 0 0 4 1 2 Y- 3 4 ZYT H 5 Analog Electronic Technique 00440041 54 14 0 3.5 1. 2. 1. 2. 3. RC 4. 5. 1. 20 2.

More information

A Preliminary Implementation of Linux Kernel Virus and Process Hiding

A Preliminary Implementation of Linux Kernel Virus and Process Hiding 邵 俊 儒 翁 健 吉 妍 年 月 日 学 号 学 号 学 号 摘 要 结 合 课 堂 知 识 我 们 设 计 了 一 个 内 核 病 毒 该 病 毒 同 时 具 有 木 马 的 自 动 性 的 隐 蔽 性 和 蠕 虫 的 感 染 能 力 该 病 毒 获 得 权 限 后 会 自 动 将 自 身 加 入 内 核 模 块 中 劫 持 的 系 统 调 用 并 通 过 简 单 的 方 法 实 现 自 身 的

More information

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

More information

本文由筱驀釹贡献

本文由筱驀釹贡献 本 文 由 筱 驀 釹 贡 献 ppt 文 档 可 能 在 WAP 端 浏 览 体 验 不 佳 建 议 您 优 先 选 择 TXT, 或 下 载 源 文 件 到 本 机 查 看 Linux 操 作 系 统 Linux 操 作 系 统 第 一 部 分 介 绍 与 安 装 Linux 的 由 来 : Linux 的 由 来 : 的 由 来 Linus Torvalds 1.Linux 的 版 本 1.Linux

More information

MICROCHIP EVM Board : APP APP001 PICmicro Microchip APP001 40pin PDIP PICmicro Design Tips Character LCM Temperature Sensor Application I/O Pi

MICROCHIP EVM Board : APP APP001 PICmicro Microchip APP001 40pin PDIP PICmicro Design Tips Character LCM Temperature Sensor Application I/O Pi MICROCHIP EVM Board : APP001 1-1. APP001 PICmicro Microchip APP001 40pin PDIP PICmicro Design Tips Character LCM Temperature Sensor Application I/O Pin 16 I/O Extension Interface 1-2. APP001 Block_A Block_B

More information

I 元器件上市公司经济状况分析及年度展望

I  元器件上市公司经济状况分析及年度展望 2002 1 2002 5 WWW.CEI.GOV.CN 2001-2005 2005 3000 2010 7500 : : : 21 1 FAX 010 68558370 2 FAX 010 68558370 I.. 2...2...3...7...8 2002...9 II..11...11...12...17...21...23 III.26...26...27...27...27 1 2001...3

More information

Microsoft Word - 100118002.htm

Microsoft Word - 100118002.htm 100 年 度 11800 電 腦 軟 體 應 用 乙 級 技 術 士 技 能 檢 定 學 科 測 試 試 題 本 試 卷 有 選 擇 題 80 題, 每 題 1.25 分, 皆 為 單 選 選 擇 題, 測 試 時 間 為 100 分 鐘, 請 在 答 案 卡 上 作 答, 答 錯 不 倒 扣 ; 未 作 答 者, 不 予 計 分 准 考 證 號 碼 : 姓 名 : 選 擇 題 : 1. (3)

More information

untitled

untitled 年度 路 IVI 劉 隆 年 597 598 IVI 錄... 601 行... 601... 601 1.... 601 2. 路... 602 3.... 603... 604 1.IPv4 to IPv6... 604 2.IPv6 to IPv4... 605 -... 606 ( )IVI Server... 606 ( )IVI Server... 610 ( )IVI DNS Server...

More information

Ch03_嵌入式作業系統建置_01

Ch03_嵌入式作業系統建置_01 Chapter 3 CPU Motorola DragonBall ( Palm PDA) MIPS ( CPU) Hitachi SH (Sega DreamCast CPU) ARM StrongARM CPU CPU RISC (reduced instruction set computer ) CISC (complex instruction set computer ) DSP(digital

More information

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 Cadence SPB 15.2 VOICE 2005-05-07 Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 1 1.1 Cadence SPB 15.2 2 Microsoft 1.1.1 Windows 2000 1.1.2 Windows XP Pro Windows

More information

P4i45GL_GV-R50-CN.p65

P4i45GL_GV-R50-CN.p65 1 Main Advanced Security Power Boot Exit System Date System Time Floppy Drives IDE Devices BIOS Version Processor Type Processor Speed Cache Size Microcode Update Total Memory DDR1 DDR2 Dec 18 2003 Thu

More information

目 录

目 录 1 Quick51...1 1.1 SmartSOPC Quick51...1 1.2 Quick51...1 1.3 Quick51...2 2 Keil C51 Quick51...4 2.1 Keil C51...4 2.2 Keil C51...4 2.3 1 Keil C51...4 2.4 Flash Magic...9 2.5 ISP...9 2.6...10 2.7 Keil C51...12

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL c00hkl00@nchc.gov.tw, steven@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Dec, 2002 1 Outline 1. 2. DRBL 3. 4. Service DHCP, TFTP, NFS,

More information

68369 (ppp quickstart guide)

68369 (ppp quickstart guide) Printed in USA 04/02 P/N 68369 rev. B PresencePLUS Pro PC PresencePLUS Pro PresencePLUS Pro CD Pass/Fails page 2 1 1. C-PPCAM 2. PPC.. PPCAMPPCTL 3. DB9D.. STPX.. STP.. 01 Trigger Ready Power 02 03 TRIGGER

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL steven@nchc.gov.tw, c00hkl00@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Jan, 2003 1 2003/1/28 ( ) 09:00-10:30 10:40-12:00 Linux 13:00-14:30

More information

北 京 大 学

北 京 大 学 北 京 大 学 硕 士 研 究 生 培 养 方 案 ( 信 息 工 程 学 院 报 表 修 订 版 本 ) 一 级 学 科 名 称 专 业 名 称 电 子 科 学 与 技 术 微 电 子 学 与 固 体 电 子 学 专 业 代 码 080903 北 京 大 学 研 究 生 院 制 表 填 表 日 期 :2012 年 06 月 16 日 一 学 科 ( 专 业 ) 主 要 研 究 方 向 序 研 究

More information

untitled

untitled niosii H:\DB2005\project\niosDK\Example\NiosSmall QuartusII4.2 File -> New Project Wizard Diectory,Name,Top-Level Entity Add Files EDA Tools Setting Finish, OK H:\DB2005\project\niosDK\Example\NiosSmall

More information

2008 IT 亞東證券投資顧問蕭雅慧於 2007/11/19 上午 09:38:03 下載. 拓墣產研版權所有, 未 2007/11/15

2008 IT 亞東證券投資顧問蕭雅慧於 2007/11/19 上午 09:38:03 下載. 拓墣產研版權所有, 未 2007/11/15 2008IT /15 Agenda 2008 & 2008 2008 & US$B PC/系統潮 網路潮/節能潮 3C潮 企業市場消費者 成熟市場消費者 成熟+新興市場消費者 代 時 代 C 時 P C n P NNoon 1,000 PPCC時 時代 代 G-phone 後PC時代 後PC時代 HDTV IPTV Web NB $500B 100 $100B 10 2003 Source 拓墣產業研究所

More information

A 2,720 25% 1.00 [ ] [ ] [ ] [ ] 10,880 25% [2009] [ ] [ ] 1 1 1

A 2,720 25% 1.00 [ ] [ ] [ ] [ ] 10,880 25% [2009] [ ] [ ] 1 1 1 Nationz Technologies Inc. 3 301 302 4018 35 28 A02 A 2,720 25% 1.00 [ ] [ ] [ ] [ ] 10,880 25% [2009]1174 272 [ ] [ ] 1 1 1 1 1 2 8,160 2,720 10,880 25% [2009]1174 272 2009 2009 12 31 103,568,759.08 26

More information

audiogram3 Owners Manual

audiogram3 Owners Manual USB AUDIO INTERFACE ZH 2 AUDIOGRAM 3 ( ) * Yamaha USB Yamaha USB ( ) ( ) USB Yamaha (5)-10 1/2 AUDIOGRAM 3 3 MIC / INST (XLR ) (IEC60268 ): 1 2 (+) 3 (-) 2 1 3 Yamaha USB Yamaha Yamaha Steinberg Media

More information

<4D6963726F736F667420576F7264202D20C7B6C8EBCABD6C696E7578BBF9B4A1CAB5D1E92E646F63>

<4D6963726F736F667420576F7264202D20C7B6C8EBCABD6C696E7578BBF9B4A1CAB5D1E92E646F63> 嵌 入 式 linux 基 础 实 验 1 内 核 配 置 及 编 译 1. 进 入 内 核 所 在 目 录 /opt/ruiva/xscale/linux-2.6.26 #cd /opt/ruiva/xscale/linux-2.6.26 2. 键 入 make menuconfig, 根 据 需 要 适 当 配 置 内 核 #make menuconfig 这 里 先 使 用 默 认 的 配 置,

More information

投影片 1

投影片 1 類 Linux (, VBird) 2008/03/28 Linux 1 Linux man page / 流 例 2008/03/28 Linux 2 Linux 2008/03/28 Linux 3 Linux CPU RAM 路 2008/03/28 Linux 4 Linux Linux 2008/03/28 Linux 5 Linux (sector) 理 量 512bytes (cylinder)

More information

untitled

untitled V3049A-EXD IP-SAN/NAS Infinova Infinova Infinova Infinova www.infinova.com.cn Infinova Infinova Infinova 1 2 1 2 V3049A-EXD-R16 V3049A-EXD-R24 ... 1 1.1... 1 1.2... 1 1.3... 1... 2 2.1... 2 2.2... 3...

More information

华恒家庭网关方案

华恒家庭网关方案 LINUX V1.5 1 2 1 2 LINUX WINDOWS PC VC LINUX WINDOWS LINUX 90% GUI LINUX C 3 REDHAT 9 LINUX PC TFTP/NFS http://www.hhcn.com/chinese/embedlinux-res.html minicom NFS mount C HHARM9-EDU 1 LINUX HHARM9-EDU

More information

<4D6963726F736F667420576F7264202D20BFC6D1A7BCBCCAF5B3C9B9FBC4EAB1A8D0DEB8C4B0E62E646F63>

<4D6963726F736F667420576F7264202D20BFC6D1A7BCBCCAF5B3C9B9FBC4EAB1A8D0DEB8C4B0E62E646F63> 北 京 邮 电 大 学 科 学 技 术 成 果 年 报 2011 年 度 北 京 邮 电 大 学 科 技 处 前 言 2011 年 度, 北 京 邮 电 大 学 科 学 技 术 成 果 年 报 刊 登 通 过 结 题 的 项 目 共 459 项 2011 年 度, 我 校 有 13 项 科 技 成 果 获 奖, 其 中, 获 国 家 级 奖 1 项, 获 省 部 级 奖 6 项, 市 级 奖 1

More information

Microsoft Word - PS2_linux_guide_cn.doc

Microsoft Word - PS2_linux_guide_cn.doc Linux For $ONY PlayStatioin2 Unofficall General Guide Language: Simplified Chinese First Write By Beter Hans v0.1 Mail: hansb@citiz.net Version: 0.1 本 人 是 菜 鸟 + 小 白 欢 迎 指 正 错 误 之 处, 如 果 您 有 其 他 使 用 心 得

More information

一 Grass 是 什 么 1 简 介 GRASS (Geographic Resources Analysis Support System, 地 理 资 源 分 析 支 持 系 统 ) 是 最 负 盛 名 的 开 源 地 理 信 息 系 统 (GIS) 以 下 是 它 的 一 些 特 点 : 1

一 Grass 是 什 么 1 简 介 GRASS (Geographic Resources Analysis Support System, 地 理 资 源 分 析 支 持 系 统 ) 是 最 负 盛 名 的 开 源 地 理 信 息 系 统 (GIS) 以 下 是 它 的 一 些 特 点 : 1 GRASS 中 文 教 程 作 者 : 广 东 省 东 莞 市 长 安 中 学 文 合 平 E_mail: wenheping@gmail.com 2007 年 9 月 1 一 Grass 是 什 么 1 简 介 GRASS (Geographic Resources Analysis Support System, 地 理 资 源 分 析 支 持 系 统 ) 是 最 负 盛 名 的 开 源 地 理

More information

untitled

untitled V3041A-J/V3042A-J IP-SAN/NAS Infinova Infinova Infinova Infinova www.infinova.com.cn Infinova Infinova Infinova 1 2 1 2 V3041A-16R-J V3041A-24R-J V3042A-16R-J V3042A-24R-J V3049-EXD-R16 V3049-EXD-R24 ...

More information

USB解决方案.ppt

USB解决方案.ppt USB USB? RS232 USB USB HID U modem ADSL cable modem IrDA Silabs USB CP210x USB UART USB RS-232 USB MCU 15 USB 12 FLASH MCU 3 USB MCU USB MCU C8051F32x 10 ADC 1.5%, Vref CPU 25MIPS 8051 16KB Flash -AMUX

More information

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Ác Åé å Serial ATA ( Silicon Image SiI3114) S A T A (1) SATA (2)

More information

untitled

untitled 參 例 邏 說 邏 () 1. VB 2005 Express 說 2. 1 3. 2 4 4. 3 理念 說 識 量 李 龍老 立 1. 理 料 2. 理 料 3. 數 料 4. 流 邏 念 5. 良 6. 讀 行 行 7. 行 例 來 邏 1. 說 2. 說 理 類 3. 良 4. 流 邏 念 5. 說 邏 理 力 令 1. 2. 3. 4. 5. 1 參 料 念 1. ( Visual Basic

More information

52C-14266-5

52C-14266-5 逻 辑 分 析 仪 基 础 知 识 入 门 手 册 www.tektronix.com.cn/logic_analyzers 15 入 门 手 册 目 录 引 言 3-4 起 源 3 数 字 示 波 器 3 逻 辑 分 析 仪 4 逻 辑 分 析 仪 操 作 5-13 连 接 被 测 系 统 5 探 头 5 设 置 逻 辑 分 析 仪 7 设 置 时 钟 模 式 7 设 置 触 发 7 采 集 状

More information

<A67EB3F82E706466>

<A67EB3F82E706466> 6286 233507 RichTek Technology Corp. httpmops.tse.com.tw (03)5526789 (03)5526789 dj_ma@richtek.com chris_yuan@richtek. 20 5 (03)5526789 (03)5526611 97 6 (02)23253800 http //www.masterlink.com.tw 156 12

More information

AL-MX200 Series

AL-MX200 Series PostScript Level3 Compatible NPD4760-00 TC Seiko Epson Corporation Seiko Epson Corporation ( ) Seiko Epson Corporation Seiko Epson Corporation Epson Seiko Epson Corporation Apple Bonjour ColorSync Macintosh

More information

Dell EMC Data Domain DDOS 5.5 Data Domain Data Domain Data Domain : Data Domain Boost (DDBoost) Dell EMC DDBoost Data Domain DDBoost Source De-Dup Bac

Dell EMC Data Domain DDOS 5.5 Data Domain Data Domain Data Domain : Data Domain Boost (DDBoost) Dell EMC DDBoost Data Domain DDBoost Source De-Dup Bac Dell EMC Dell EMC IT Dell EMC IT Dell EMC https://www. dellemc.com/ Dell EMC Data Domain DDOS 5.5 Data Domain Data Domain Data Domain : Data Domain Boost (DDBoost) Dell EMC DDBoost Data Domain DDBoost

More information

1 CPU

1 CPU 2000 Tel 82316285 82317634 Mail liuxd@buaa.edu.cn 1 CPU 2 CPU 7 72 A B 85 15 3 1/2 M301 2~17 : 3/4 1/2 323 IBM PC 1. 2. 3. 1. 2. 3. 1.1 Hardware Software 1.2 M3 M2 M1 1.2 M3 M1 M2 M2 M1 M1 M1 1.2 M3 M1

More information

untitled

untitled \ \ \ DOP11B 06/2011 16929837 / ZH SEW-EURODRIVE Driving the world 1 5 1.1 5 1.2 5 1.3 6 1.4 6 1.5 6 1.6 6 1.7 6 2 7 2.1 7 2.2 7 2.3 8 2.4 8 2.5 8 2.6 9 2.7 / 11 2.8 11 2.9 11 2.10 11 2.11 12 3 (DOP11B-10

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force Steven Shiau steven@nchc.gov.tw National Center for High-Performance Computing Sep 10, 2002 1 Outline 1. 2. 3. Service DHCP, TFTP, NFS, NIS 4. 5. 2 DRBL (diskless remote boot

More information

PTS7_Manual.PDF

PTS7_Manual.PDF User Manual Soliton Technologies CO., LTD www.soliton.com.tw - PCI V2.2. - PCI 32-bit / 33MHz * 2 - Zero Skew CLK Signal Generator. - (each Slot). -. - PCI. - Hot-Swap - DOS, Windows 98/2000/XP, Linux

More information

重庆市电子信息产业三年振兴规划

重庆市电子信息产业三年振兴规划 重 庆 市 电 子 信 息 产 业 三 年 振 兴 规 划 电 子 信 息 产 业 是 国 民 经 济 的 战 略 性 基 础 性 先 导 性 产 业, 也 是 重 庆 市 迅 速 崛 起 的 新 兴 支 柱 产 业, 对 于 拉 动 经 济 增 长 调 整 产 业 结 构 转 变 发 展 方 式 具 有 十 分 重 要 的 作 用 为 进 一 步 明 确 重 庆 市 电 子 信 息 产 业 主 要

More information

Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Windows XP

Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Windows XP Serial ATA ( Sil3132)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 10 (5) S A T A... 12 Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

Linux Ubuntu Part Linux Ubuntu Linux UNIX...19 Linux...19 Linux Linux...21 Linux GNU FSF Open So urce.

Linux Ubuntu Part Linux Ubuntu Linux UNIX...19 Linux...19 Linux Linux...21 Linux GNU FSF Open So urce. Linux Ubuntu 10.04 Part 1 17 1 Linux Ubuntu... 18 1-1 Linux... 19 UNIX...19 Linux...19 Linux...20...20 Linux...21 Linux...21 1-2 GNU FSF Open So urce...22 GNU...22 GPL...23...24 1-3 GNU/Linux V.S. Linux...25

More information

Microsoft Word - linux命令及建议.doc

Microsoft Word - linux命令及建议.doc Linux 操 作 系 统 命 令 集 1 基 本 命 令 查 看 系 统 信 息 : uname -a 修 改 密 码 : passwd 退 出 : logout(exit) 获 取 帮 助 : man commands 2 文 件 和 目 录 命 令 显 示 当 前 工 作 目 录 : pwd 改 变 所 在 目 录 : cd cd - 切 换 到 上 一 次 使 用 的 目 录 cd 切 换

More information

ebook62-1

ebook62-1 1 Red Hat Linux R e d Hat Linux L i n u x X Wi n d o w Red Hat L i n u x 1.1 Red Hat Linux Red Hat 16 M 120 M 3. 5 Intel 386 C D - R O M C D - R O M We b / 1.1.1 L i n u x L i n u 4 Primary Partition Extended

More information

enews172_1

enews172_1 / http://www.cic.org.tw/login/login.jsp CIC Package Design with Allegro APD 104 IC 104 T50UHV Introduction to Conversational French - Syllabus Summer 2004 1 14 2 12 CMOS MorSensorMorFPGA DUO MorSensor

More information

1 Visual Studio.NET Linux C++ JBuilder 4 RJ45 RS3 Modem 6 MAC IP TCP Socket UDP FTP ; Windows 000 Serve : 8 Windows 000 Serve DNS DHCP Web FTP E

1 Visual Studio.NET Linux C++ JBuilder 4 RJ45 RS3 Modem 6 MAC IP TCP Socket UDP FTP ; Windows 000 Serve : 8 Windows 000 Serve DNS DHCP Web FTP E Experiment of Computer Networks 1 / 1 / 003.6 Youlu Zheng Shakil Akhtar Networks for Computer Scientists and Engineer 004.5 Visual Studio.NET Linux C++ JBuilder RS3 Modem IP TCP Socket FTP ; Windows 000

More information

Microsoft PowerPoint - Aqua-Sim.pptx

Microsoft PowerPoint - Aqua-Sim.pptx Peng Xie, Zhong Zhou, Zheng Peng, Hai Yan, Tiansi Hu, Jun-Hong Cui, Zhijie Shi, Yunsi Fei, Shengli Zhou Underwater Sensor Network Lab 1 Outline Motivations System Overview Aqua-Sim Components Experimental

More information

(02)2809-4742 (02)2809-4742 27 28 (02)2809-4742 85 3 (02)3343-3300 156 12 (02

(02)2809-4742 (02)2809-4742 27 28 (02)2809-4742 85 3 (02)3343-3300  156 12 (02 3475 http://mops.tse.com.tw http://www.ic-fortune.com (02)2809-4742 denis.lee@ic-fortune.com (02)2809-4742 nanhui.lee@ic-fortune.com 27 28 (02)2809-4742 85 3 (02)3343-3300 http://www.fhs.com.tw 156 12

More information

1 IT IT IT IT Virtual Machine, VM VM VM VM Operating Systems, OS IT

1 IT IT IT IT Virtual Machine, VM VM VM VM Operating Systems, OS IT 1 IT IT IT IT Virtual Machine, VM VM VM VM Operating Systems, OS IT Chapter 1 了解虛擬化技術種類 硬體 / 平台 / 伺服器虛擬化 VM VM VM CPU Hypervisor VMM Virtual Machine Manager VM Host OS VM VM Guest OS Host OS CPU VM Hyper-V

More information

目 錄 壹 實 務 專 題 製 作 競 賽 ( 複 賽 ) 實 施 計 畫 1 貳 實 務 專 題 製 作 競 賽 ( 複 賽 ) 參 選 作 品 一 覽 表 13 參 評 審 委 員 名 單 23 肆 活 動 照 片 25 伍 實 務 專 題 製 作 競 賽 ( 複 賽 ) 優 良 作 品 名 錄

目 錄 壹 實 務 專 題 製 作 競 賽 ( 複 賽 ) 實 施 計 畫 1 貳 實 務 專 題 製 作 競 賽 ( 複 賽 ) 參 選 作 品 一 覽 表 13 參 評 審 委 員 名 單 23 肆 活 動 照 片 25 伍 實 務 專 題 製 作 競 賽 ( 複 賽 ) 優 良 作 品 名 錄 教 育 部 職 業 學 校 電 機 與 電 子 群 科 中 心 學 校 101 年 度 全 國 高 職 電 機 與 電 子 群 科 專 題 製 作 競 賽 優 良 作 品 集 複 賽 優 勝 作 品 ( 複 賽 優 勝 含 佳 作 共 63 件 ) 指 導 單 位 : 教 育 部 中 部 辦 公 室 執 行 單 位 : 國 立 臺 中 高 級 工 業 職 業 學 校 中 華 民 國 101 年 12

More information

第 15 章 程 式 編 写 語 言 15.1 程 式 編 写 語 言 的 角 色 程 式 編 寫 語 言 是 程 式 編 寫 員 與 電 腦 溝 通 的 界 面 語 法 是 一 組 規 則 讓 程 式 編 寫 員 將 字 詞 集 合 起 來 電 腦 是 處 理 位 元 和 字 節 的 機 器, 與

第 15 章 程 式 編 写 語 言 15.1 程 式 編 写 語 言 的 角 色 程 式 編 寫 語 言 是 程 式 編 寫 員 與 電 腦 溝 通 的 界 面 語 法 是 一 組 規 則 讓 程 式 編 寫 員 將 字 詞 集 合 起 來 電 腦 是 處 理 位 元 和 字 節 的 機 器, 與 程 式 編 写 語 言 在 完 成 這 章 後, 你 將 能 夠 了 解 程 式 編 写 語 言 的 功 能 了 解 高 階 語 言 和 低 階 語 言 之 間 的 分 別 知 道 翻 譯 程 式 的 意 義 和 能 夠 把 翻 譯 程 式 分 類 為 : 匯 編 程 式 編 譯 程 式 和 解 譯 程 式 認 識 不 同 翻 譯 程 式 的 優 點 和 缺 點 程 式 是 指 揮 電 腦 的 指

More information

Linux 操作系统课程社区创作

Linux 操作系统课程社区创作 学 号 14284060xx 等 第 苏 州 大 学 实 验 报 告 Linux 操 作 系 统 课 程 社 区 创 作 院 ( 系 ) 名 称 : 电 子 信 息 学 院 专 业 名 称 : 14 通 信 工 程 ( 嵌 入 式 培 养 ) 学 生 姓 名 : 某 某 某 课 程 名 称 : Linux 操 作 系 统 2015-2016 学 年 第 一 学 期 1 摘 要 这 是 摘 要 主 要

More information

<4D6963726F736F667420576F7264202D20C9CFBAA3BFC6BCBCB4F3D1A7D0C5CFA2D1A7D4BA32303136C4EAC7EFBCBEC8EBD1A7B2A9CABFD7CAB8F1BFBCCAD4CAB5CAA9CFB8D4F22D30343036C8B7B6A8B8E5>

<4D6963726F736F667420576F7264202D20C9CFBAA3BFC6BCBCB4F3D1A7D0C5CFA2D1A7D4BA32303136C4EAC7EFBCBEC8EBD1A7B2A9CABFD7CAB8F1BFBCCAD4CAB5CAA9CFB8D4F22D30343036C8B7B6A8B8E5> 上 海 科 技 大 学 信 息 科 学 与 技 术 学 院 年 度 博 士 资 格 考 试 实 施 细 则 一 总 则 本 细 则 由 上 海 科 技 大 学 信 息 科 学 与 技 术 学 院 ( 以 下 简 称 信 息 学 院 ) 教 学 指 导 委 员 会 讨 论 制 定, 适 用 于 信 息 学 院 2014 级 硕 士 研 究 生 的 年 度 博 士 资 格 考 试 信 息 学 院 2014

More information

時脈樹設計原則

時脈樹設計原則 時 脈 樹 設 計 原 則 在 高 效 能 應 用 中, 例 如 通 訊 無 線 基 礎 設 施 伺 服 器 廣 播 視 訊 以 及 測 試 和 測 量 裝 置, 當 系 統 整 合 更 多 功 能 並 需 要 提 高 效 能 水 準 時, 硬 體 設 計 就 變 得 日 益 複 雜, 這 種 趨 勢 進 一 步 影 響 到 為 系 統 提 供 參 考 時 序 的 電 路 板 設 計 階 段 (board-level)

More information

投影片 1

投影片 1 2 理 1 2-1 CPU 2-2 CPU 理 2-3 CPU 類 2 什 CPU CPU Central Processing Unit ( 理 ), 理 (Processor), CPU 料 ( 例 ) 邏 ( 例 ),, 若 了 CPU, 3 什 CPU CPU 了, 行, 利 CPU 力 來 行 4 什 CPU 5 2-2-1 CPU CPU 了 (CU, Control Unit) / 邏

More information

投影片 1

投影片 1 類 Linux 理 (, VBird) 2008/03/31 Linux 理 1 Linux 理 Linux (ILA) Linux 理 (ILB) Linux Linux (ILA) Linux 理 (ILB) Linux 路 (ILC) 2008/03/31 Linux 理 2 Linux 理 Linux 理 理 更 kernel boot loader LILO, grub 理 shell script

More information

Microsoft PowerPoint - CH03中文

Microsoft PowerPoint - CH03中文 Chapter 3 1 N P 掺 ( 掺 ) MOS 2 3 掺 Si Ge (SiGe), (SiC) (GaAs), (InP) 4 5 P 掺 掺 N 掺 6 , E c, E g, E v 7 E g = 1.1 ev E g = 8 ev 2.7 cm 4.7 cm ~ 10 10 cm > 10 20 cm 8 Shared electrons Si Si Si Si Si Si Si

More information

55.9 54.8 53 ) ( ) ( ) ( ) 1. ( ) (1) ( ) End-to- End ( ) ( ) ( ) ( PayPass Paywave Jspeedy) (FISC II) (2) / NFC (Near Field Communication) ( ) NFC TS

55.9 54.8 53 ) ( ) ( ) ( ) 1. ( ) (1) ( ) End-to- End ( ) ( ) ( ) ( PayPass Paywave Jspeedy) (FISC II) (2) / NFC (Near Field Communication) ( ) NFC TS / / ( ) 1 VISA 25.8 ( 2013 24%) ( 64.5 1 ( OTI (On Track Innovations)) 8 / No.79 / 2014.07 55.9 54.8 53 ) ( ) ( ) ( ) 1. ( ) (1) ( ) End-to- End ( ) ( ) ( ) ( PayPass Paywave Jspeedy) (FISC II) (2) / NFC

More information

Microsoft Word - 正文.doc

Microsoft Word - 正文.doc 1 2 1 2 3 4 5 6 7 8 9 10 3 1 150 2 150 1 1 1.1 1.1.1 1.2 1.2.1 1.2.2 1.2.3 1.3 1.3.1 1.3.2 1.4 1.4.1 CPU 1.4.2 I/O 1.4.3 I/O 1.5 1.5.1 CISC RISC 1.5.2 1.5.3 1.6 1.6.1 1.6.2 N 1.6.3 2 2.1 2.1.1 2.1.2 2.1.3

More information

全 国 高 等 职 业 教 育 规 划 教 材 21 世 纪 高 职 高 专 规 划 教 材 系 列 高 等 职 业 教 育 计 算 机 专 业 规 划 教 材 选 题 征 集 通 知 一 选 题 范 围 ( 不 仅 限 于 此 ) 选 题 方 向 选 题 名 计 算 机 基 础 计 算 机 应 用

全 国 高 等 职 业 教 育 规 划 教 材 21 世 纪 高 职 高 专 规 划 教 材 系 列 高 等 职 业 教 育 计 算 机 专 业 规 划 教 材 选 题 征 集 通 知 一 选 题 范 围 ( 不 仅 限 于 此 ) 选 题 方 向 选 题 名 计 算 机 基 础 计 算 机 应 用 刘 瑞 新 金 牌 作 者 经 典 作 品 教 授, 计 算 机 专 业 资 深 学 科 带 头 人, 多 部 著 作 获 得 全 国 优 秀 畅 销 书 奖 他 所 编 写 的 教 材 内 容 均 来 自 教 学 实 践, 是 对 编 写 讲 义 教 学 修 改 教 学 讲 义 再 次 教 学 整 个 过 程 的 精 确 提 炼, 因 此 对 促 进 教 师 教 学 学 生 学 习 发 挥 了 重

More information

lect03.ppt

lect03.ppt Linux 操 作 系 统 Linux 基 础 主 要 内 容 q 使 用 Linux q Linux 的 两 种 登 录 方 式 q 字 符 操 作 环 境 和 X Windows 系 统 q Linux 图 形 界 面 基 本 操 作 q Linux 命 令 的 使 用 方 式 q Linux 一 些 常 用 命 令 1 2 一 些 基 本 术 语 u 命 令 (Command) 给 计 算 机

More information

solutions guide

solutions guide solutions guide Tridium 01 Table of Contents Tridium... 1 Frameworks... 4 Niagara AX Framework... 5 Sedona Framework... 6.... 7 NPM... 8 Sedona Chip... 9 AX Supervisor... 10 AX SoftJACE...11...12. JACE

More information

Microsoft Word - MTK平台生产软件使用说明.doc

Microsoft Word - MTK平台生产软件使用说明.doc MTK 1. 1.1 SMT BSN 1.2 1 IMEI 2. 2 2.1 MTK Flash Flash NAND FlashMP3 1 SMT SOFT Flash 2 SOFT MKT USB-RS232 921600 8 2.2 COPY 2.3 USB PCUSB USB 8 USB USB USB-RS232 (USB ) RS232 PCRS232 8 4V2A 2.4 DA File

More information

存储视频监控封面(210×270mm)-0725

存储视频监控封面(210×270mm)-0725 HUAWEI STORAGE 2014 年 08 月 总 第 6 期 视 频 监 控 专 刊 华 为 存 储 Marketing 部 华 为 存 储 视 频 监 控 专 刊 洞 察 图 像 智 慧 华 为 存 储 让 平 安 城 市 更 平 安 以 智 融 存 智 通 平 安 从 VSD 技 术 看 平 安 城 市 的 未 来 存 储 及 应 用 发 展 视 频 监 控 技 术 的 IT 化 趋 势

More information

ARM Cortex-M3 (STM32F) STMicroelectronics ( ST) STM32F103 Core: ARM 32-bit Cortex -M3 CPU 72 MHz, 90 DMIPS with 1.25 DMIPS/MHz Single-cycle multiplica

ARM Cortex-M3 (STM32F) STMicroelectronics ( ST) STM32F103 Core: ARM 32-bit Cortex -M3 CPU 72 MHz, 90 DMIPS with 1.25 DMIPS/MHz Single-cycle multiplica CP Chip Power ARM Cortex-M3 (STM32F) ARM Cortex-M3 (STM32F) STMicroelectronics ( ST) STM32F103 Core: ARM 32-bit Cortex -M3 CPU 72 MHz, 90 DMIPS with 1.25 DMIPS/MHz Single-cycle multiplication and hardware

More information

. Outline 编译 Linux 在 QEMU 模拟器上运行制作带 grub 启动的磁盘映像...1 编译 Linux 在 QEMU 模拟器上运行...2 制作带 grub 启动的磁盘映像

. Outline 编译 Linux 在 QEMU 模拟器上运行制作带 grub 启动的磁盘映像...1 编译 Linux 在 QEMU 模拟器上运行...2 制作带 grub 启动的磁盘映像 .... 计算机应用教研室 @ 计算机学院嵌入式系统实验室 @ 苏州研究院中国科学技术大学 Fall 2010 . Outline 编译 Linux 在 QEMU 模拟器上运行制作带 grub 启动的磁盘映像...1 编译 Linux 在 QEMU 模拟器上运行...2 制作带 grub 启动的磁盘映像 . 编译 Linux 在 QEMU 模拟器上运行 qemu+linux-2.6.26.1. 准备模拟器.2.

More information

ARM JTAG实时仿真器安装使用指南

ARM JTAG实时仿真器安装使用指南 ARM JTAG Version 1.31 2003. 11. 12 ARM JTAG ARM JTAG.3 ARM 2.1.4 2.2.4 ARM JTAG 3.1 18 3.2 18 3.2.1 Multi-ICE Server.18 3.2.2 ADS..21 ARM JTAG 4.1 Multi-ICE Server 33 4.1.1 Multi-ICE Server..... 33 4.1.2

More information

Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Microsoft Win

Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Microsoft Win Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A... 11 (6) Microsoft Windows 2000... 14 Ác Åé å Serial ATA ( Nvidia nforce430)

More information

T1028_Manual_KO_V3 0.pdf

T1028_Manual_KO_V3 0.pdf 2009 : 2009/09 PC Microsoft, MS-DOS, Windows, Windows Sound System Microsoft Corporation Intel, Atom Intel Corporation Sound Blaster, Sound Blaster ProCreative Technology I AC AC AC AC AC - 115 V/60 Hz

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

KL DSC DEMO 使用说明

KL DSC DEMO 使用说明 :0755-82556825 83239613 : (0755)83239613 : http://www.kingbirdnet.com EMAIL Good989@163.com 1 1 KB3000 DTU... 3 1.1... 3 1.2... 3 1.3... 3 1.4... 3 2... 4 2.1 GSM/GPRS... 4 2.2... 4 2.3... 5 2.4... 6 2.5...

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

D4

D4 4 020 Application Trend and Fabrication Introduction of 3D Integrated Circuits Through Silicon Vias Technology Abstract The three-dimensional integrated circuits through silicon vias (3D IC TSV) technology

More information

一个开放源码的嵌入式仿真环境 ― SkyEye

一个开放源码的嵌入式仿真环境 ― SkyEye SkyEye SkyEye http://hpclab.cs.tsinghua.edu.cn/~skyeye/ I hear and I forget, I see and I remember, I do and I understand. SkyEye SkyEye SkyEye SkyEye SkyEye 1. SkyEye PC pervasive computing PC I O PDA

More information

Windows 2000 Server for T100

Windows 2000 Server for T100 2 1 Windows 95/98 Windows 2000 3.5 Windows NT Server 4.0 2 Windows DOS 3.5 T200 2002 RAID RAID RAID 5.1 Windows 2000 Server T200 2002 Windows 2000 Server Windows 2000 Server Windows 2000 Server 3.5 for

More information

untitled

untitled 年 錄...1... 1 2008 年... 1 IC... 2...4... 4 利... 5... 8...10... 11 IC... 11 NAND Flash DRAM... 11 IC SoCSiP MEMS... 12 略 例...13 Elpida Memory, Inc... 13 Synopsys Taiwan Limited... 13...15 六...18 年來 IC 精

More information

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074>

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074> 软 件 架 构 师 研 修 讲 座 胡 协 刚 软 件 架 构 师 UML/RUP 专 家 szjinco@public.szptt.net.cn 中 国 软 件 架 构 师 网 东 软 培 训 中 心 小 故 事 : 七 人 分 粥 当 前 软 件 团 队 的 开 发 现 状 和 面 临 的 问 题 软 件 项 目 的 特 点 解 决 之 道 : 从 瀑 布 模 型 到 迭 代 模 型 解 决 项

More information

Openmoko

Openmoko Text Openmoko Linux 2008 2008-10-22, 15:30 ~ 16:45 Jollen Chen Openmoko Inc. www.openmoko.com Openmoko Openmoko LGPL/GPL v2 Linux Openmoko 2 Android - An Open Handset Alliance Project

More information

河北省工业和信息化厅文件

河北省工业和信息化厅文件 河 北 省 电 子 信 息 产 业 十 三 五 发 展 规 划 (2016 2020 年 ) - 1 - 目 录 一 现 状 与 问 题... - 1 - ( 一 ) 发 展 现 状...- 1 - ( 二 ) 主 要 问 题...- 3 - 二 面 临 形 势... - 4 - ( 一 ) 电 子 信 息 产 业 仍 是 全 球 竞 争 的 焦 点... - 4 - ( 二 ) 国 家 重 大 战

More information

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

More information