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 破解文件,運行程序后,Product選擇msp430, 把ID中0x后的小寫字母改成大寫,再點Generate, 就OK了
標簽: EmbeddedWorkbench 3.42 IAR 430
上傳時間: 2014-01-05
上傳用戶:LouieWu
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進制的電力通信協議數據包,目前支持兩種 協議:“中華人民共和國多功能電能表通信規約(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開發環境下,燒寫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) (當然 作為齊次不等式 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] 本程序能比較兩個完全對稱不等式的大小關系。
上傳時間: 2013-12-15
上傳用戶:sclyutian
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 其中每一個分類,又都包含了一個或多個函式庫,可以說是功能相當豐富。
上傳時間: 2015-05-15
上傳用戶:fangfeng
高清電子書-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
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為此報文添加首部字段,并將其發出。
上傳時間: 2022-06-20
上傳用戶:
程序: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,
上傳時間: 2022-07-04
上傳用戶:slq1234567890