搜索资源列表
msp430_serial_programming_skills
- msp430串口编程与调试技巧,介绍如何设置串口速率,如何初始化串口参数-msp430 serial programming and debugging skills on how to set the serial rate, how to initialize the serial port parameters and so on and so on
nokia1100lcd
- a project that initialize and show some pictures and texts to the nokia 1100 lcd screen
Example_281xEvPwm
- 该程序用来生成pwm波形,是一个工程项目,头文件和初始化都有。-The program used to generate pwm waveform, is a project header files and initialize all.
TMS320LF2812C
- 2812初始化模块C代码及完整结构头文件。sci/spi等-2812 to initialize the module structure of C code and the complete headers. sci/spi, etc.
hd66789rev2
- This program is Initialize for LCD Driver IC. It s HD66789
EvPwm02
- 2812 PWM程序:初始化EVA,使得PWM1和PWM2输出互补的周期为1KHz的PWM波,占空比初始化为10 ,死区时间为4.27us-2812 PWM procedures: Initialize EVA makes PWM1 and PWM2 output complementary cycle 1KHz PWM wave, 10 duty cycle initialization, deadtime 4.27us
vega
- 详细的记载了学习vega时候笔记,如特殊效果初始化,火焰特效,大地形数据库的管理-Detailed records of learning when vega notes, such as special effects initialize flame effects, terrain database management
iic
- 专业级飞思卡尔s12单片机,iic初始化及输入采集程序,初学者勿点-The professional level Freescale s12 microcontroller, iic the initialize and input acquisition program, beginners do not point
matrice-linear
- Initialize the variables Calculates products and standards Determination of matrices B, C and D After execute this command we find that p is the max of the third and column position q Resolution of the system of equation Resolution of
MSP430__URRT
- msp430f149串口初始化与收发程序-Initialize msp430f149 serial and transceiver procedures
Tiva-C-Series-PinMux-Utility
- 针对TI的ARM LM4F系列MCU的管脚复用功能的软件工具。通过这个工具,我们将能很容易的了解芯片的管脚复用情况和优先次序选择。-TI’s Tiva C Series PinMux Utility provides a quick and easyto- use tool for confi guring the GPIOs on Tiva C Series microcontrollers. Whether you are an experienced fi rmware eng
handlingArray
- 实现数组常见操作,包括: (使用输入值初始化数组) (使用随机数初始化数组) (打印数组) (对所有元素求和) (找出最大元素) (找出最大元素的最小下标值) (随意打乱) (移动元素) -Implementing common operations of array, including: (Use input values to initialize the array) (using a random number to
small
- 这个程序用来判断输入的帐号和密码和已经初始化的帐号和密码是否符合要求-This program was used to determine the input account and password and initialize the account and password is in line with the requirements
crc32
- This code, along with its makefile, illustrates how to create a DLL, how to initialize its data, and how to share the same data among all processes using the same DLL. The file CRCDEMO.ASM contains a very simple program which illustrates how to call
CHEPAISHIBIE-SDK
- 软件介绍,编程引导,模块,设置图片格式,初始化车牌识别库,设置识别车牌类型和参数-Software, programming guide, modules, set the image format, initialize license plate recognition library, set to identify the license plate type and parameters
mif_generation
- generation of the file .mif (memory inititialising file) to initialize the ram
zhan
- 编写一个程序实现顺序队列的各种基本运算,并在此基础上设计一个主程序完成如下功能: 1. 初始化队列q。 2. 判断队列q是否为空。 3. 依次进队元素a,b,c。 4. 出队一个元素,输出该元素。 5. 输出队列q的元素个数。 6. 依次进队列元素d,e,f。 7. 输出队列q的元素个数。 8. 输出出队序列。 9. 释放队列。-Write a program to achieve a variety of basic operations of the order queue, and bas
SDA
- SDA debug tool for initialize and satrt use of SDA operation
Constractuor
- * 同一个包中不能声明同名的类 * 构造器(构造方法) * 定义:创建和初始化对象的方法(初始化属性) * 1.构造方法必须在类中声明 * 2.构造方法的方法名与类名一致,包含大小写 * 3.构造方法没有返回值 * 4.使用new运算调用构造方法创建对象 * 5.Java根据不同参数的构造方法识别不同的构造方法 * * 构造方法与方法比较 * 1.语法 * 构造方法:方法名与类名一致,没有返回值,使用new运算调用构造方法
ExtendsDemo
- * 继承关系 * 1.子类继承父类的属性和方法,父类的属性和方法被所有子类共享 * 2.子类多种多样,子类是多态的 * 业务案例:四格方块(Tetromino)有七种(I,J,L,S,Z,T,O) * 实现方式: * 利用继承关系实现,其中四格方块是父类,七种方块是 * 子类,在父类定义四格数组的属性,子类就自动继承了 * 四格属性。 * 定义四格方块类(Tetronimo),属性:4格子,方法:下落 * 子类型继承4格