亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

Macros

  • The tar file contains the following files: ptfsf.c: heart of the perfect TFSF code ptfsf.h: he

    The tar file contains the following files: ptfsf.c: heart of the perfect TFSF code ptfsf.h: header file for same ptfsf-demo.c: FDTD code which demonstrates use of perfect TFSF code. Essentially this program used to generate results shown in the paper ptfsf-file-maker.c: code to generate an incident-field file using the "perfect" incident fields ptfsf-demo-file.c: FDTD code which uses the perfect incident fields stored in a file fdtdgen.h: defines Macros used in much of my code Makefile: simple make-file to compile programs Also include are some simple script files to run the programs with reasonable values. The code assumes a two-dimensional computational domain with TMz polarization (i.e., non-zero field Ez, Hx, and Hy). The program is currently written so that the incident field always strikes the lower-left corner of the total-field region first. (If you want a different corner, that should be a fairly simple tweak to the code, but for now you ll have to make that tweak yourself.)

    標簽: ptfsf following the contains

    上傳時間: 2013-11-28

    上傳用戶:風之驕子

  • DWT變換源代碼

    DWT變換源代碼,As a special exception, you may use this file as part of a free software library without restriction. Specifically, if other files instantiate templates or use Macros or inline functions from this file, or you compile this file and link it with other files to produce an executable, this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License.

    標簽: DWT 變換 源代碼

    上傳時間: 2014-12-05

    上傳用戶:ynsnjs

  • 我收藏的c語言900個例題

    我收藏的c語言900個例題,裡頭有控制dos-bios,memory,Macros,math....的一些範例,原碼可能很簡單但是很實用,希望大家喜歡

    標簽: 900

    上傳時間: 2015-09-08

    上傳用戶:小碼農lz

  • This design package includes reference materials for creating a USB - PS/2 combination mouse that a

    This design package includes reference materials for creating a USB - PS/2 combination mouse that auto-detects the interface and configures itself to operate on the appropriate bus. Documentation docs - Designing a low cost CY7C63723 combination mouse.pdf - application note for this design - schematic.pdf - mouse schematic Firmware Source Files src - chip.c - include file that defines CY7C63723 constants - combi.c - main source file - combi.hex - Intel hex file for programming a CY7C63723 microcontroller - combi.lst - output listing from c-compiler for use with the CYDB debugger - Macros.h - defines Macros used in combi.c - ps2defs.h - defines PS/2 interface constants - usb_desc.h - defines the USB descriptors - usbdefs.h - defines USB interface constants

    標簽: combination materials reference creating

    上傳時間: 2015-10-19

    上傳用戶:784533221

  • Advanced_modelling_in_finance_using_Excel_and_VBA(pdf) The book adopts a step-by-step approach to un

    Advanced_modelling_in_finance_using_Excel_and_VBA(pdf) The book adopts a step-by-step approach to understanding the more sophisticated aspects of Excel Macros and VBA programming, showing how these programming techniques can be used to model and manipulate financial data, as applied to equities, bonds and options. The book is essential for financial practitioners who need to develop their financial modelling skill sets as there is an increase in the need to analyse and develop ever more complex what if scenarios.

    標簽: Advanced_modelling_in_finance_usi ng_Excel_and_VBA step-by-step approach

    上傳時間: 2013-12-14

    上傳用戶:txfyddz

  • File: fw.c Contents: Firmware frameworks task dispatcher and device request parser File: FX2.h Co

    File: fw.c Contents: Firmware frameworks task dispatcher and device request parser File: FX2.h Contents: EZ-USB FX2 constants, Macros, datatypes, globals, and library function prototypes. File: FX2regs.h Contents: EZ-USB FX2 register declarations and bit mask definitions. File: periph.c Contents: Hooks required to implement USB peripheral function. File: dscr.a51 Contents: This file contains descriptor data tables. File: dscr.a51 Contents: This file contains descriptor data tables. File: dscr.a51 Contents: This file contains descriptor data tables.

    標簽: File frameworks dispatcher Contents

    上傳時間: 2014-01-18

    上傳用戶:bakdesec

  • IDE開發環境

    IDE開發環境,可以掛載SDCC The BASIC IDE is a new, RAD (Rapid Application Development) IDE (Integrated Development Environment) for the RapidQ programming language. The IDE currently has rich project options, a form designer (similar to Delphi s), and code editor. The BASIC IDE is being coded in Borland® Delphi® . We are currently using Delphi 6, but you should be able to use Delphi 3 or later (Delphi 7 included). Some of the BASIC IDEs features include: Form Designer with support for all of RapidQ s components Flexible Code Editor Project Management Written in OO (Object Oriented) Delphi. Some future items that we are working on are: Code Tip Code Completion CVS Integration Code Editor Macros Point-and-Click access to subroutines, functions, and variables

    標簽: IDE 開發環境

    上傳時間: 2016-07-05

    上傳用戶:dapangxie

  • AVR單片機轉速表

    /****************************************************************                  外部晶振8M                  PA0~3:四位數碼管的位選                  PB0~7:數碼管的8位段選                  外部中斷0用于計數                  定時器0溢出中斷的定時為1ms                  說明 :檢測到水流較小時,繼電器延時1秒關閉  ******************************************************************/                #include<iom16v.h>   #include<Macros.h>   #define uchar unsigned char   #define uint unsigned int       char led_7[10]={0x3F,0x06,0x5B,0x4F,0x66,0x6D,0x7D,0x07,0x7F,0x6F};  //數碼管段選        char position[4]={0xfe,0xfd,0xfb,0xf7};//數碼管位選        uint sumnum=0;  //用于記錄1000ms內進入中斷的次數        uint time=0;   //記錄進入比較定時器0的次數        uint num=0;     //記錄1ms內進入中斷的次數        uint count=0;   //進入外部中斷0的次數        uchar flag;        uint sumnum1;   //記錄100ms內的數目       /***************************函數聲明***************************/        void delay();        void display(uint m );        void init();        void init_0();        void init_2();    void _delay_us(uint l)   {        unsigned int i;        for(i=0;i<l;i++)        {        asm("nop");        }   }           /**************************主函數***********************************/       void main()   {        init();        init_0();        init_2();        while(sumnum<5)        {           PORTD=0XBF;           segdisplay(sumnum1);        }       while(1)       {           segdisplay(sumnum1);       }           }        /*************************掃描數碼管時的延時函數*********************/        void delay()    {         uchar i,j;         for(i=6;i>0;i--)         for(j=225;j>0;j--);    }        /************************數碼管顯示函數*****************************/       void segdisplay( int temp)        {         int seg[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};         int temp1,temp2,temp3,temp4;         temp1=temp/1000;         temp2=(temp/100)%10;         temp3=(temp/10)%10;         temp4=temp%10;         DDRB=0xff;         DDRA|=0x0f;           PORTA=~BIT(3);           PORTB=seg[temp1];           _delay_us(100);           PORTA=~BIT(2);           PORTB=seg[temp2];           _delay_us(100);           PORTA=~BIT(1);           PORTB=seg[temp3];           _delay_us(100);           PORTA=~BIT(0);           PORTB=seg[temp4];           _delay_us(100);       }        /***********************管腳初始化函數*********************/        void init()    {                      DDRD|=0X40;   //PD4 設置為輸出             PORTD=0XBF;                DDRA=0XFF;             DDRB=0XFF;             PORTA=0XFF;             PORTB=0XFF;    }        /***********************外部中斷0初始化*********************/        void init_0()    {         MCUCR=0X02;   //INT0為下降沿觸發         GICR=0X40;   //使能INT0中斷         SREG=0X80;  //使能總中斷    }        /**********************定時器2初始化***********************/        void init_2()    {         TCCR0=0x03;   // 內部時鐘,64 分頻(8M/64=125KHz)          TCNT0=0x83;   //裝初值           TIMSK=0x01;   // 允許 T/C0溢出中斷中斷      }          /***********************外部中斷0子函數********************/        #pragma interrupt_handler int0_isr:2        void int0_isr(void)        {             count++;        }        /*********************定時計數器0溢出中斷子函數*****************/       #pragma interrupt_handler int0_over:10        void int0_over(void)       {           TCNT0=0x83;   //重裝初值            if((time%100) == 0)               sumnum1 = num;           if(time == 1000)           {               sumnum=num;               if(sumnum<10)               {                                      if((flag==1)&&(sumnum<10))                   {                       PORTD=0XFF;                       flag=0;                   }                                      flag++;               }               else                       PORTD=0XBF;               num=0;               time=0;           }           num+=count;           count=0;           ++time;        } 

    標簽: C語言

    上傳時間: 2016-03-09

    上傳用戶:彥 yan

  • 舵機電機PID控制算法

    #include <hidef.h>      /* common defines and Macros */ #include "derivative.h"      /* derivative-specific definitions */ #include <mc9s12xs128.h> //定義PID參數 #define VV_KPVALUE 3       //比例 #define VV_KIVALUE 40     //積分 #define VV_KDVALUE 3     //微分 #define VV_MAX 10000       //返回的最大值,是pwm的周期值 #define VV_MIN 0 #define VV_DEADLINE 0X08   //速度PID,設置死區范圍 typedef struct PID       //定義數法核心數據 { signed int vi_Ref;      //速度PID,速度設定值 signed int vi_FeedBack;  //速度PID,速度反饋值

    標簽: PID 舵機 電機 控制算法

    上傳時間: 2016-04-27

    上傳用戶:547453159

主站蜘蛛池模板: 青冈县| 如东县| 吴忠市| 汝城县| 泸定县| 淮阳县| 浑源县| 泌阳县| 修武县| 康定县| 南江县| 易门县| 玛纳斯县| 海原县| 丹江口市| 望城县| 鄂尔多斯市| 汪清县| 广南县| 正宁县| 神木县| 庆安县| 嵊泗县| 平南县| 德昌县| 区。| 平陆县| 洪泽县| 扎兰屯市| 太谷县| 丰台区| 江永县| 西青区| 柳州市| 临西县| 洪湖市| 泰顺县| 太原市| 卢氏县| 将乐县| 泸溪县|