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

INclude

INclude是一个计算机专业术语,一指C/C++中包含头文件命令,用于将指定头文件嵌入源文件中。二指INclude指令,在JSP中包含一个静态的文件,同时解析这个文件中的JSP语句。三指PHP语句。
  • 温度控制的PID算法的C语言程序.

    #nclude<reg51.h>#INclude<intrins.h>#销nclude<math.h>#INclude<string.h>struct PID{unsigned int SetPoint;//设定目标 Desired Value unsigned int Proportion;//比例常数Proportional Const unsigned int integral;//积分常数Integral Const unsigned int Derivative://微分常数Derivative Const unsigned int LastError;//Emorl-1]unsigned int PrevError;//Errorl-2]unsigned int SumError;//Sums of Errors struct PID spid;//PID Control Structure unsigned int rout;//PID Response(Output)unsigned int rin://PID Feedback(Input)sbit data1=P100;sbit clk=P141;sbit plus=P240;sbit subs=P241:sbit stop=P22;sbit output=P34;sbit DQ=P33;unsigned char flag,flag_1=0;unsigned char high_time,low_time,.count=0,/占空比调节参数unsigned char set_temper=35;unsigned char temper;unsigned chari:unsigned charj=0;unsigned ints;

    标签: 温度控制 pid算法 C语言

    上传时间: 2022-07-02

    上传用户:xsr1983

  • STM8库编程的方法总结

    经过几天的摸索我终于掌握用STM8库的方法,但我还认为不用库也很好,1.首先要装好ST8的开发环境,一个是ST Visual Develop一个是COSMIC stm8C语言编译器.第三把STM8的库下下来2.建立一个新的环境和一个工程,当然工程和环境可同名3.这一点是关键,把STM8库下的*FWLib/project\STVDCosmic STM8_interrupt_vetor.c考到你的新工程目录下4.打开库中的example目录下的一个例子,把除了STM8_interrupt_vetor.c的所有东东考到你的工程下边5,然后把要涉及的文件包进去,这里注意当编译时提示,没有函数时,大家把函数名考一下,到库CHM文件索引下,然后把C文件包含到INclude6.这时编译大功告成了

    标签: stm8

    上传时间: 2022-07-06

    上传用户:moh2000

  • 4G移动通信技术权威指南:LTE与LTE-Advanced.4G LTE.LTE

    PrefaceDuring the past years, there has been a quickly rising interest in radio access technologies for providingmobile as well as nomadic and fixed services for voice, video, and data. The difference indesign, implementation, and use between telecom and datacom technologies is also becoming moreblurred. One example is cellular technologies from the telecom world being used for broadband dataand wireless LAN from the datacom world being used for voice-over IP.Today, the most widespread radio access technology for mobile communication is digital cellular,with the number of users passing 5 billion by 2010, which is more than half of the world’s population.It has emerged from early deployments of an expensive voice service for a few car-borne users,to today’s widespread use of mobile-communication devices that provide a range of mobile servicesand often INclude camera, MP3 player, and PDA functions. With this widespread use and increasinginterest in mobile communication, a continuing evolution ahead is foreseen.This book describes LTE, developed in 3GPP (Third Generation Partnership Project) and providingtrue 4G broadband mobile access, starting from the first version in release 8 and through the continuingevolution to release 10, the latest version of LTE. Release 10, also known as LTE-Advanced,is of particular interest as it is the major technology approved by the ITU as fulfilling the IMTAdvancedrequirements. The description in this book is based on LTE release 10 and thus provides acomplete description of the LTE-Advanced radio access from the bottom up.Chapter 1 gives the background to LTE and its evolution, looking also at the different standardsbodies and organizations involved in the process of defining 4G. It also gives a discussion of the reasonsand driving forces behind the evolution.Chapters 2–6 provide a deeper insight into some of the technologies that are part of LTE and itsevolution. Because of its generic nature, these chapters can be used as a background not only for LTEas described in this book, but also for readers who want to understand the technology behind othersystems, such as WCDMA/HSPA, WiMAX, and CDMA2000.Chapters 7–17 constitute the main part of the book. As a start, an introductory technical overviewof LTE is given, where the most important technology components are introduced based onthe generic technologies described in previous chapters. The following chapters provide a detaileddescription of the protocol structure, the downlink and uplink transmission schemes, and the associatedmechanisms for scheduling, retransmission and interference handling. Broadcast operation andrelaying are also described. This is followed by a discussion of the spectrum flexibility and the associated

    标签: 4g 移动通信

    上传时间: 2022-07-08

    上传用户:lostxc

  • 单片机电子密码锁设计,内含工程文件、源码文件及电路图

    基于单片机的密码锁设计,内含工程文件和源码文件以及电路图#INclude "config.h" void main(){    LCD_Initial();                       //lcd初始化    init_sys();                          //硬件系统初始化    setpsw();                            //密码设置    while(1)    {              time=3;                            //限定尝试3次        while(1)                              {            inputpsw();                         //输入密码            checkpsw();                         //密码验证            checksuper();                       //验证是否是超级密码                                   if(error_flag==0)   {right();break;}            else if(time>1)     error();        //允许2次尝试错误            else                {lock();break;} //3次错误,系统锁定        }     }}  

    标签: 单片机 电子密码锁

    上传时间: 2022-07-17

    上传用户:默默

  • 51单片机键盘模拟音量数码管显示源码

    本程序所用的原理图下载: 点这里 ,单片机芯片使用的stc89c52;找到相应部分即可.这是一整个单片机开发板的电路图其他的忽略.hex文件及其工程文件以下是通过测试的源代码:/**功能:使用矩阵按键使得按键按下时数码管上显示各自对应的数字(0 ~ F);*日期:2018-05-03-17:51;*特别说明:本程序代码已经通过调试,仅供学习使用;**//***********AT89C52-RC 单片机51hei 实验板***********//*****************51hei-开发板*********************/#INclude typedef unsigned int uint;typedef unsigned char uchar;

    标签: 51单片机

    上传时间: 2022-07-23

    上传用户:kid1423

  • dsPIC33FJ32MC204 单片机使用入门

    介绍针对dsPIC33FJ32MC204或同系列单片机使用入门。1、开发环境选择开发环境:MPLAB IDEV8.80编译软件:MPLABC30,其中v3.25版本C语言编译器 pic30-gcc.exe,见下图。尝试过使用最新开发环境MPLABXIDEV1.95配合数种编译器均无法对程序编译通过。2、程序代码PROJECT工程建立通过菜单中Project->Project Wizard 按步骤建立。建立完成后添加源文件c、头文件h、链接文件gld,见下图。其中源文件FIRST.c文件如下:#INclude"p33FJ32MC204.h"int main(){while(1);

    标签: dspic33fj32mc204 入门

    上传时间: 2022-07-24

    上传用户:hao123

  • 微孔雾化片单片机自动调整中心频率原理图和软件

    /**************** 扫频函数*************FileName:Frepuecy_Sweep.cProjectName:FunctionDesc:CreateDate:Version:Author:ModifyHistory:Remark:5ms 执行一次***************** 包含头文件**********************/#INclude "Stdint_Sonix.h"#INclude "SysInit.h"#INclude "Frequency_Sweep.h"#INclude "adc.h"/***************** 定义全局变量*******************//***************** 声明全局变量*******************/extern bit B_Moistrue;extern u8 r_adc1,r_adc2,r_adc3;bit B_SF_OK;//是否已经扫过频标志/******************* 定义常量*********************/#define PWM1_DUTY_MIN 3u#define PWM1_DUTY_MAX 253u#define PWM1_CURRENT_MIN 10u//#define M1_Stop_500ms_Set_Value 100u

    标签: 单片机 频率 原理图

    上传时间: 2022-07-24

    上传用户:yui0900826

  • AM2355n datasheet

    3-phase Sensor-less Fan Motor DriverAM2355NThe AM2355N is a 3-phase sensor-less DC fan motor driver IC. It senses the BEMF (BackElectro-Motive Force) of the motor in rotation and provides corresponding commutation current tothe motor. Rotation speed can be controlled by PWM input signal. The drivers INclude LockDetection, Thermal Shutdown, and Over-current Protection. Forward and Reverse control.www.junmintech.com

    标签: am2355n

    上传时间: 2022-07-26

    上传用户:yb9018

  • CC1101接收程序及相关电路图

    #INclude"main.h"#INclude"cc1101.h"#INclude"lcd1602.h"void main(void){inti;UCHAR leng=0;//待接收字节长度UCHAR TXBuf[8]={0};//8字节,如果需要更长的数据包,请正确设置UCHAR RXBuf[8]={0};l/接收缓存区InitLcd1602();WriteAddressLcd1602(1,0);WriteCharForLCD1602("The CC1101 Test!");WriteAddressLcd1602(2,0);WriteCharForLCD1602("Design by XuJiel");Delaynms(6000);ClearLcd16020;Cpulnit();POWER_UP_RESET_CC1100(0;halRfWriteRfSetings();halSpiWriteBurstReg(CCxxx0_PATABLE,PaTabel,8);TxBuf[0]=1;

    标签: cc1101 程序 电路图

    上传时间: 2022-08-10

    上传用户:ttalli

  • CANOPEN源代码

    代码目录结构:debiandocdriversexamplesINcludeobjdictgensrctest.hg_archival.txt.hgignore.hgtags.travis.ymlappveyor.ymlAUTHORSbitbucket-pipelines.ymlCanFestival-3.vc9.slnCanFestival-3.vc9.vcprojCanFestival-3.vc10.slnCanFestival-3.vc10.vcxprojCanFestival-3.vc10.vcxproj.filtersCanFestival-3.vc15.slnCanFestival-3.vc15.vcxprojconfigureCONTRIBUTORSCOPYINGLICENCEMakefile.inREADME.md

    标签: canopen 源代码 canfestival

    上传时间: 2022-08-10

    上传用户:tigerwxf1