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

0X

  • 8大特色: 1.自动枚举串口

    8大特色: 1.自动枚举串口,这样避免了有些机器串口多,或者串号号>4的情况。 2.保存文件格式为txt和CSV,可选,方便做数据分析。 3.保存文件在执行文件程序路径下的SaveData文件夹里 4.增加多字节联合显示 5.2字节时,十六进制会加"0X"头,非十六进制时,以十进制显示,末尾自动加一空格,以区分。 6.4字节时,只能以十六进制显示(因十进制以超出范围,也没有必要显示那么大一个数)。 7.增加实时显示数据曲线功能。 8.界面更人性化,方便适用。

    标签: 自动 串口

    上传时间: 2016-11-19

    上传用户:dragonhaixm

  • IAR EmbeddedWorkbench For MSP430 3.42A 破解文件,运行程序后

    IAR EmbeddedWorkbench For MSP430 3.42A 破解文件,运行程序后,Product选择msp430, 把ID中0X后的小写字母改成大写,再点Generate, 就OK了

    标签: EmbeddedWorkbench 3.42 IAR 430

    上传时间: 2014-01-05

    上传用户:LouieWu

  • SENTINEL 的加密狗lic生成工具方法如下 1.copy a870.sentinel to windowssystem32 folder. 2.run Emulator Utility

    SENTINEL 的加密狗lic生成工具方法如下 1.copy a870.sentinel to windows\system32 folder. 2.run Emulator Utility and then press install button and close the utility. 3.run wechoid.exe, selector must be 1e or 1c 4.then run LicGen and use selector and code from wechoid.exe w/o 0X, it will make a license for that pc

    标签: windowssystem SENTINEL Emulator sentinel

    上传时间: 2017-02-10

    上传用户:498732662

  • 这个小工具可以生成16进制的电力通信协议数据包

    这个小工具可以生成16进制的电力通信协议数据包,目前支持两种 协议:“中华人民共和国多功能电能表通信规约(DL/T 645—1997)” 和”山东电力集团公司用电现场服务与管理系统通讯规约”。能自 动复制生成的数据,默认为生成的数据添加0X前缀,这样就可以把 数据包方便地粘贴到代码或各种16进制调试工具里面,如“串口调 试助手”。也可以用来在调试分析时和调试状态的数据包进行对比, 以检验数据包的合法性。 本程序用 qt4.2.3 opensource + mingw 写成,最后用 molebox打包 source目录下是源代码 协议包生成工具.exe 为打包后的可执行文件, 运行时不需要额外的动态连接库 source\packet\release\packet.exe运行时需要三个dll: mingwm10.dll QtGui4.dll QtCore4.dll

    标签: 进制 电力通信 协议 数据包

    上传时间: 2017-04-19

    上传用户:lps11188

  • 2009.02.13 (Chiron.ylq) ------------------------------ 该工程用于Analog Devices VisualDSP++ V5.0开发环境

    2009.02.13 (Chiron.ylq) ------------------------------ 该工程用于Analog Devices VisualDSP++ V5.0开发环境下,烧写Silicon Storage Technology公司SST39VF512/010/020/040系列Flash的Program Load Driver。 1. 文件结构 SST39VFXXX.dlb SST39VF512/010/020/040 Flash操作驱动 BF533_SST_Flash_Driver.c VisualDSP++ v5.0 flash load driver Uart.c 串口驱动,用于打印调试信息 2. 程序信息 ① NUM_SECTORS (BF533_SST_Flash_Driver.c) 参数在使用前必须正确定义宏SST_FLASH_TYPE (SST39VFXXX.h)以确保正确使用。 ② DEBUG (BF533_SST_Flash_Driver.c) 用于开启debug功能,当定义DEBUG为1后,可以利用全局字符数组char cDebug[100],打印调试信息,信息从串口(115200,N,8,1)打出。 #if DEBUG == 1 sprintf(cDebug, "ulStart = d, lCount = d, lStride = d, pnData = 0X x.\r\n", ulStart, lCount, lStride, pnData) UART_TX(cDebug, strlen(cDebug)) return NO_ERR #endif

    标签: VisualDSP Devices Chiron Analog

    上传时间: 2013-12-22

    上传用户:lixinxiang

  • 很多不等式在展开以后形成如下的对称形式 sigma(s1^a1*s2^a2*...*sn^an)>=sigma(s1^b1*s2^b2*...*sn^bn) (当然 作为齐次不等式

    很多不等式在展开以后形成如下的对称形式 sigma(s1^a1*s2^a2*...*sn^an)>=sigma(s1^b1*s2^b2*...*sn^bn) (当然 作为齐次不等式 a1+a2+....an=b1+b2+...bn 变量s1,s2,...sn非负) 其中sigma表示对称和(也就是说 一共n!项) 例如 sigma(x^3)=x^3y^0z^0+x^3z^0y^0+y^3x^0z^0+y^3z^0X^0+z^3x^0y^0+z^3y^0X^0=2*(x^3+y^3+z^3) sigma(x^3y^2z^1)=x^3y^2z^1+x^3z^2y^1+y^3x^2z^1+y^3z^2x^1+z^3x^2y^1+z^3y^2x^1 (三元sigma 一共是6项) 有时候 我们把sigma(s1^a1*s2^a2*...*sn*an)写作 [a1,a2,...an] 例如 著名的均值不等式可以写成 [n,0,0...0]>=[1,1,1...1] 又比如x^2+y^2+z^2>=xy+yz+zx 写成[2,0]>=[1,1] 本程序能比较两个完全对称不等式的大小关系。

    标签: sigma sn an gt

    上传时间: 2013-12-15

    上传用户:sclyutian

  • Boost C++ Libraries 1.35.0

    Boost C++ Libraries Free peer-reviewed portable C++ source libraries Boost C++ Libraries 基本上是一個免費的 C++ 的跨平台函式庫集合,基本上應該可以把它視為 C++ STL 的功能再延伸;他最大的特色在於他是一個經過「同行評審」(peer review,可參考維基百科)、開放原始碼的函式庫,而且有許多 Boost 的函式庫是由 C++ 標準委員會的人開發的,同時部分函式庫的功能也已經成為 C++ TR1 (Technical Report 1,參考維基百科)、TR2、或是 C++ 0X 的標準了。 它的官方網站是:http://www.boost.org/,包含了 104 個不同的 library;由於他提供的函式庫非常地多,的內容也非常地多元,根據官方的分類,大致上可以分為下面這二十類: 字串和文字處理(String and text processing) 容器(Containers) Iterators 演算法(Algorithms) Function objects and higher-order programming 泛型(Generic Programming) Template Metaprogramming Preprocessor Metaprogramming Concurrent Programming 數學與數字(Math and numerics) 正確性與測試(Correctness and testing) 資料結構(Data structures) 影像處理(Image processing) 輸入、輸出(Input/Output) Inter-language support 記憶體(Memory) 語法分析(Parsing) 程式介面(Programming Interfaces) 其他雜項 Broken compiler workarounds 其中每一個分類,又都包含了一個或多個函式庫,可以說是功能相當豐富。

    标签: Boost C++ Libraries

    上传时间: 2015-05-15

    上传用户:fangfeng

  • 高清电子书-C++ Primer Plus 第6版英文版 1438页

    高清电子书-C++ Primer Plus, 第6版英文版 1438页Learning C++ is an adventure of discovery, particularly because the language accommodates several programming paradigms, including object-oriented programming, generic programming, and the traditional procedural programming.The fifth edition of this book described the language as set forth in the ISO C++ standards, informally known as C++99 and C++03, or, sometimes as C++99/03. (The 2003 version was largely a technical correction to the 1999 standard and didn’t add any new features.) Since then, C++ continues to evolve.As this book is written, the international C++ Standards Committee has just approved a new version of the standard.This standard had the informal name of C++0X while in development, and now it will be known as C++11. Most contemporary compilers support C++99/03 quite well, and most of the examples in this book comply with that standard. But many features of the new standard already have appeared in some implementations, and this edition of C++ Primer Plus explores these new features. C++ Primer Plus discusses the basic C language and presents C++ features, making this book self-contained. It presents C++ fundamentals and illustrates them with short, to-the-point programs that are easy to copy and experiment with.You learn about input/output (I/O), how to make programs perform repetitive tasks and make choices, the many ways to handle data, and how to use functions.You learn about the many features C++ has added to C, including the followi

    标签: C++

    上传时间: 2022-02-19

    上传用户:trh505

  • wireshark抓包分析TCP和UDP

    1,使用wireshark获取完整的UDP报文打开wireshark,设置监听网卡后,使用google chrome浏览器访问我腾讯微博的i http://p.t.qq.com/welcomeback.php?lv=1#!/ist/qqfriends/5/?pgv_ref-im.perinfo.pe rinfo.icon?ptlang-2052&pgv-ref-im.perinfo.perinfo.icon,抓得的UDP报文如图1所示。分析以上的报文内容,UDP作为一种面向无连接服务的运输协议,其报文格式相当简单。第一行中,Source port:64318是源端口号。第二行中,Destination port:53是目的端口号。第三行中,Length:34表示UDP报文段的长度为34字节。第四行中,Checksum之后的数表示检验和。这里0X表示计算机中16进制数的开始符,其后的4f0e表示16进制表示的检验和,把它们换成二进制表示为:0100 1111 0000 1110.从wireshark的抓包数据看出,我抓到的UDP协议多数被应用层的DNS协议应用。当一台主机中的DNS应用程序想要进行一次查询时,它构成了一个DNS查询报文并将其交给UDP,UDP无须执行任何实体握手过程,主机端的UDP为此报文添加首部字段,并将其发出。

    标签: wireshark tcp udp

    上传时间: 2022-06-20

    上传用户:

  • Proteus仿真LCD12864显示动画—飞翔的鸽子

    程序:LCD12664液晶显示原理unsigned int/W/图形编码,也可以把图形代码存为头文件。该程序经过调试。PROTEUS原理图见截图unsigned char code table1[][64]={/*-调入了一幅图像:D:\Desktop\新建文件夹(2)l.bmp--*//*-宽度x高度=128×64一*材0X00,0×00,0×00,0×00,0×00,0×00,0X80,0X80,0XD0,0XE0,0XE0,0XC0,0XF0,0XF8,OXF C,0XF8,0XF8,0XB8,0X3C,0X78,0XFO,0XFA,0XFC,0XFC,0XCC,Ox1E,0X3C,OxF8,0XF0,0XE0,0X DO,0×00,0X80,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0X00,0X00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0X00,0×00,0×00,0×00,0×00,0×00,0X00,0×00,0×00,0×00,0X00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0X00,0X00,0X00,0×00,0X00,0×00,0×00,0×00,0×00,0×00,0×00,0×00,0X00,0×00,0×00,0X00,0×00,0×00,

    标签: proteus lcd12864 显示动画

    上传时间: 2022-07-04

    上传用户:slq1234567890