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

New-Rapshon

  • This code outputs various NMEA strings to a com port. The code was originally used to test naviati

    This code outputs various NMEA strings to a com port. The code was originally used to test naviation programmes. First select the required com port and the required NMEA message string. There is a default starting position but this can be changed to suit just by typing in a new position. Click on the Start button the current position displayed will change according to the speed and heading selected and the selected NMEA string will be output to the com port and will reflect the current position as displayed. There is a text box which is normally not visible. If you change this to visible the relevant NMEA string can be displayed.

    标签: code originally outputs naviati

    上传时间: 2013-11-30

    上传用户:熊少锋

  • Kullanı lan bazı matlab bilgileri Matlabda kodlar mfile lara yazı lı p kaydedile

    Kullanı lan bazı matlab bilgileri Matlabda kodlar mfile lara yazı lı p kaydedilebilir. Ü st menüden, file, new, mfile. Command windowa yazdı kları nı zı kaydedemezsiniz. Yazdı ğ ı nı z kodu ç alı ş tı rabilmeniz iç in ç alı ş tı ğ ı nı z current directory nin altı na kaydetmelisiniz. Current directory i dosyanı n bulunduğ u yere de gö türebilirsiniz

    标签: 305 bilgileri kaydedile Matlabda

    上传时间: 2014-01-06

    上传用户:miaochun888

  • Normally a list view is updated by a user directly by selecting a list view item and then editing or

    Normally a list view is updated by a user directly by selecting a list view item and then editing or deleting it. New items are usually added at the bottom of the list. This works fine since the user knows which items have been changed or deleted and where the new items will pop up. A drawback of it is that, if the list is sorted, then new items will not be displayed in a sorted way, instead they will be listed in the order of being created.

    标签: list view selecting Normally

    上传时间: 2017-07-02

    上传用户:Pzj

  • *** HyperString v6.0 *** (c)1996-2000 EFD Systems, All rights reserved

    *** HyperString v6.0 *** (c)1996-2000 EFD Systems, All rights reserved efd@mindspring.com *** THIS IS NOT PUBLIC DOMAIN SOFTWARE *** See below for license agreement, disclaimer, installation and use. Introduction --------------------------------------------------------- Welcome to HyperString! One of the most significant new features with Delphi32 is long dynamic strings. However, the built-in functions don t really exploit the full potential of these new strings. HyperString provides over 400 fast, efficient string management routines to help you realize the full power of this highly versatile new data type.

    标签: HyperString reserved Systems rights

    上传时间: 2017-07-04

    上传用户:mhp0114

  • MTK flash TOOL源程序代码 ========== FlashTool v3.1.05 (2007/05/15) ======= Bug fixes: 1. [DA] Fix

    MTK flash TOOL源程序代码 ========== FlashTool v3.1.05 (2007/05/15) ======= Bug fixes: 1. [DA] Fix that DA cannot be loaded on MT6225 for exceeding internal SRAM size. 2. [DA] Fix that NAND download/read-back issue on MT6225 because buffer is linked on TCM. New features: 1. [DA] Supports new NOR Flash device [SPANSION] S29WS128P [SPANSION] S29WS256P [TOSHIBA] TV00560002DDGB 2. [DA] Supports OTP driver for below NOR Flash device [SPANSION] S29WS128P [SPANSION] S29WS256P Enhancements: 1. [DA] Provide Customized FlashTest_AllInOne_DA.bin. 2. [DA] NFB can auto format after first download. 3. [DA] Improve DA download algorithm: next sector will be erased only when a sector is fully programmed. 4. [DA] Improve DA download algorithm: enable recovery mechanism when press STOP button. 5. [DA] Improve MT6223 Download Speed.

    标签: FlashTool flash fixes 05

    上传时间: 2014-01-04

    上传用户:xg262122

  • // 该入口文件由ThinkPHP自动生成 define( THINK_PATH , ../ThinkPHP ) //定义项目名称

    // 该入口文件由ThinkPHP自动生成 define( THINK_PATH , ../ThinkPHP ) //定义项目名称,如果不定义,默认为入口文件名称 define( APP_NAME , ajax ) define( APP_PATH , ./ajax ) //加载ThinkPHP框架公共入口文件 require(THINK_PATH. /ThinkPHP.php ) //实例化一个网站应用实例 $App = new App() //执行应用程序 $App->run()

    标签: ThinkPHP THINK_PATH define 自动生成

    上传时间: 2017-07-09

    上传用户:cmc_68289287

  • The NetBeans IDE has seen adoption snowballing over the past years, particularly with the introduc

    The NetBeans IDE has seen adoption snowballing over the past years, particularly with the introduction of a completely new, rewritten, slick Java editor. You’ll fnd this reference card helpful if you want to get as much out of the Java editor as its authors intended when creating it. It lists all the keyboard shortcuts in carefully thought out categories and it provides a thorough exposition of optimal handling of Java code in the editor, covering viewing, navigation, source handling, and refactoring. Get NetBeans IDE: http://www.netbeans.org/downloads

    标签: particularly snowballing the NetBeans

    上传时间: 2014-01-23

    上传用户:气温达上千万的

  • String int 字符串常量池 包装类型 函数参数 值传递引用传递 的 内存分配例子——源码 代码段: public static void fun_ref (Ref_test ref_

    String int 字符串常量池 包装类型 函数参数 值传递引用传递 的 内存分配例子——源码 代码段: public static void fun_ref (Ref_test ref_out){ Ref_test ref_in=new Ref_test() ref_in.s1="in" //ref_out.s1="out" ref_out=ref_in //漏洞!!ref_out 指向ref_in , //那么当函数退出后,ref_out就会自动指向原来的堆!!! System.out.println("fun_ref() ref_out.s1="+ref_out.s1) }

    标签: Ref_test fun_ref String public

    上传时间: 2013-12-27

    上传用户:ls530720646

  • java 线程 静态锁

    java 线程 静态锁,对象锁, synchronized 是锁方法还是锁对象?还是锁类?如何实现?? 部分代码如下, public static Object lock=new Object() //静态锁,锁类,不是锁对象了!!所以两个线程同时 运行两个 TestThread 的execute( ),也可以同步!!! public void execute(){ // synchronized(lock){ for(int i=0 i<20 i++){ try { Thread.sleep(30) } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace() } System.out.println(Thread.currentThread().getName()+Thread.currentThread ().getName()+" "+i) } } }

    标签: java 线程

    上传时间: 2017-07-15

    上传用户:lijianyu172

  • Aircrack-ng is an 802.11 WEP and WPA-PSK keys cracking program that can recover keys once enough dat

    Aircrack-ng is an 802.11 WEP and WPA-PSK keys cracking program that can recover keys once enough data packets have been captured. It implements the standard FMS attack along with some optimizations like KoreK attacks, as well as the all-new PTW attack, thus making the attack much faster compared to other WEP cracking tools. In fact, Aircrack-ng is a set of tools for auditing wireless networks.

    标签: keys Aircrack-ng cracking WPA-PSK

    上传时间: 2013-12-25

    上传用户:bruce