Small RTOS\ARM\small_rtosV1.20.x for LPC2104
資源簡介:Small RTOS\ARM\Small_rtosV1.20.x for LPC2104
上傳時間: 2016-08-11
上傳用戶:cmc_68289287
資源簡介:Mac OS X for Java Geeks delivers a complete and detailed look at the Mac OS X platform, geared specifically at Java developers. Programmers using the 10.2 (Jaguar) release of Mac OS X, and the new JDK 1.4, have unprecedented new functionali...
上傳時間: 2017-04-08
上傳用戶:小碼農lz
資源簡介:uc/OS Porting file for LPC2104
上傳時間: 2014-12-06
上傳用戶:aysyzxzm
資源簡介:eForth is a Small portable Forth design for a wide range of microprocessors. This is the first implementation for 8086. As machine dependency is consolidated into 31 code words, moving eForth to other CPU s will be much less of a chore com...
上傳時間: 2014-01-25
上傳用戶:從此走出陰霾
資源簡介:Small RTOSv1.12.x 下dp-51例子, 包括完整的原程序和說明
上傳時間: 2014-01-03
上傳用戶:zhaiyanzhong
資源簡介:Small rtos在PHILIP ARM LPC2104上實現的一些例程。
上傳時間: 2014-11-22
上傳用戶:dianxin61
資源簡介:LCD2004 是一種 20 x 04的LCD液晶顯示模塊,該文件既有對它的詳細描述,還有程序可供參考
上傳時間: 2016-03-02
上傳用戶:haohaoxuexi
資源簡介:db.* (pronounced dee-be star) is an advanced, high performance, Small footprint embedded database for open source operating systems.
上傳時間: 2015-07-16
上傳用戶:linlin
資源簡介:附件為:LCD12864顯示漢字和數字的程序與電路 /* ?自定義延時子函數 */ void delayms(uchar z) { ? int x,y; ? for(x=z;x>0;x--) ???? for(y=110;y>0;y--); } /* ???? 判斷LCD忙信號狀態 */ void buys() { ? int dat; ? RW=1;...
上傳時間: 2013-11-08
上傳用戶:aeiouetla
資源簡介:Hard-decision decoding scheme Codeword length (n) : 31 symbols. Message length (k) : 19 symbols. Error correction capability (t) : 6 symbols One symbol represents 5 bit. Uses GF(2^5) with primitive polynomial p(x) = X^5 X^2 + 1 ...
上傳時間: 2014-07-08
上傳用戶:曹云鵬
資源簡介://初始化 initscr() //獲得屏幕尺寸 getmaxyx(stdscr, h, w) //畫背景 for(i=0 i<h i++) for(j=0 j<w j++){ mvaddch(i, j, ACS_CKBOARD) } refresh() //建立窗口 pad = newpad(80, 128) for(i=0 i<80 ...
上傳時間: 2014-08-30
上傳用戶:龍飛艇
資源簡介:#include "STC90.h" #include < intrins.h > #define uchar unsigned char #define uint unsigned int #define led_port P1 sbit IR_RE = P3^2; sbit led_r = P1^3; sbit led_g = P1^4; sbit led_b = P1^5; sbit led_wd = P1^7; sbit K1 =P3^0 ; ...
上傳時間: 2016-07-02
上傳用戶:184890962
資源簡介:#include "iostream" using namespace std; class Matrix { private: double** A; //矩陣A double *b; //向量b public: int size; Matrix(int ); ~Matrix(); friend double* Dooli(Matrix& ); void Input(); ...
上傳時間: 2018-05-20
上傳用戶:Aa123456789
資源簡介:include<reg52.h> #define uint unsigned int #define uchar unsigned char uint temp,aa,wang,qian,bai,shi,ge; sbit dula=P2^6; sbit wela=P2^7; uchar code table[]={ 0x3f,0x06,0x5b,0x4f, 0x66,0x6d,0x7d,0x07, 0x7f,0x6f,0x...
上傳時間: 2021-12-18
上傳用戶:2590813506
資源簡介:C51原理及相關基礎入門知識 第一章:C51 流程控制語句一、分類條件語句、循環語句和開關語句。下面將對這些語句作詳細介紹。(1) 條件語句條件語句的一般形式為:if(表達式)語句 1;else語句 2;上述結構表示: 如果表達式的值為非0(TURE)即真, 則執行語句1, 執...
上傳時間: 2013-10-24
上傳用戶:Sophie
資源簡介:The files in this directory comprise ANSI-C language reference implementations of the CCITT (International Telegraph and Telephone Consultative Committee) G.711, G.721 and G.723 voice compressions. They have been tested on Sun SPARCstati...
上傳時間: 2014-01-22
上傳用戶:Breathe0125
資源簡介:最新的軟件開發工具VS2015的代碼提示插件,本人從VC6.0追到現在,這款提示插件確實不錯,很專業。
上傳時間: 2015-09-23
上傳用戶:chengfengyu
資源簡介:/*#include<reg52.h> #define uint unsigned int #define uchar unsigned char #define uchar unsigned char sbit K1=P3^4; sbit K2=P3^5; sbit ledr=P1^0; sbit ledg=P1^1; sbit ledb=P1^2; bit LEDDirection=0;//LED控制方向0:漸亮1:漸滅 char ?pwm=0; c...
上傳時間: 2016-07-02
上傳用戶:184890962
資源簡介:基礎程序設計 01 閃爍的LED? /* ?名稱閃爍的LED? ?說明LED按設定的時間間隔閃爍 */? #include<reg51.h>? #define uchar unsigned char? #define uint unsigned int? sbit LED=P1^0;? //延時? void DelayMS(uint x) ?{? ?uchar i;? ?whil...
上傳時間: 2016-09-19
上傳用戶:xinhoujue
資源簡介:基礎程序設計 01 閃爍的LED? /* ?名稱閃爍的LED? ?說明LED按設定的時間間隔閃爍? */? #include<reg51.h>? #define uchar unsigned char? #define uint unsigned int? sbit LED=P1^0;? //延時? void DelayMS(uint x)?{? ?uchar i;? ?while...
上傳時間: 2016-09-19
上傳用戶:xinhoujue
資源簡介:1.軟件安裝步驟 ? a)運行光盤中客戶軟件\CCS5000 CCS2.20\CCS2.2\SETUP.EXE,進入引導界面; ? b)選擇Install下的Code Composer Studio進入安裝界面; c)按照默認的方式安裝,裝在C:\ti下。 d)安裝軟件補丁:運行光盤客戶軟件\c5000ccs2.20\CC...
上傳時間: 2017-01-03
上傳用戶:jmw8637
資源簡介:function y=lagr(x0,y0,x) %x0,y0為節點 %x是插值點 n=length(x0); m=length(x); for i=1:m z=x(i); s=0.0; for k=1:n p=1.0; for j=1:n if j~=k p=p*(z-x0(j))/(x0(k)-x0(j)); end end s=p*y0(k)+s; end y(i)=s; end
上傳時間: 2020-06-09
上傳用戶:shiyc2020
資源簡介:#include <stdio.h> #include <stdlib.h> #define SMAX 100 typedef struct SPNode { int i,j,v; }SPNode; struct sparmatrix { int rows,cols,terms; SPNode data [SMAX]; }; sparmatrix CreateSparmatrix() { sparmatrix A; printf("\n\t\t請輸入稀疏...
上傳時間: 2020-06-11
上傳用戶:ccccy
資源簡介:Delphi zip/unzip component. Delphi Zip/Unzip Package, v1.20 For Delphi 2 and 3, and C++ Builder v1.xx
上傳時間: 2013-12-20
上傳用戶:牛津鞋
資源簡介:KeyPro加密狗模擬器 v4.20 for DOS
上傳時間: 2013-12-12
上傳用戶:lacsx
資源簡介:iap test for arm LPC2104
上傳時間: 2013-12-25
上傳用戶:wpwpwlxwlx
資源簡介:Small c for z80 從PART1到4
上傳時間: 2015-04-19
上傳用戶:kytqcool
資源簡介:This a simple bootloader for AT91SAM7{S,X}{64,128,256} processors. It permits you to download new code to the device over USB. This bootrom is installed at address 0x00000000 in the ARM, which means that it is the first piece of code to ...
上傳時間: 2015-11-30
上傳用戶:shus521
資源簡介:A bemused fork for X remote control aplications or bash control, using bluetooth o tcp and a client symbian at mobile system.
上傳時間: 2015-12-13
上傳用戶:ve3344
資源簡介:dynamic CMM for Small the team. english .
上傳時間: 2015-12-31
上傳用戶:yyq123456789