-
CCS_pkk
CCS的配置说明,rtdx verification.
IT DSP和matlab联调(CCS description of the configuration, rtdx verification. IT DSP and matlab FBI)
- 2009-04-12 19:41:48下载
- 积分:1
-
modeling_a_city
该文档描述了如何使用sketchup制作3D模型,并上传到google的3D仓库。(This document describes how to create 3D models using sketchup and uploaded to google' s 3D warehouse.)
- 2011-06-02 02:05:40下载
- 积分:1
-
51-SD
51模拟SPI读写SD卡(包括Fat和Fat32文件系统)源代码(51 simulated SPI writable SD card (including Fat and hotfix file system) source code)
- 2007-05-05 20:57:09下载
- 积分:1
-
liyapunov
计算最大李雅普诺夫图,来分析微分方程的分岔情况(To calculate the largest Lyapunov Figure to bifurcation analysis of differential equations)
- 2013-02-27 13:24:31下载
- 积分:1
-
曲线多次项拟合函数
C语语音编写离散点的多次项拟合源程序,经过验证正确(Multi source fitting source program for discrete points in C speech is verified correctly.)
- 2018-11-03 21:44:06下载
- 积分:1
-
心里评测系统
说明: 一个课设项目,使用dev,利用c语言完成一个控制台的心里评测系统(A course project, using dev, using C language to complete a console psychological evaluation system)
- 2020-02-28 18:10:36下载
- 积分:1
-
单片机密码锁
单片机密码锁,可使用蜂鸣器报警,可LCD1602显示,可开锁
- 2022-03-09 21:04:40下载
- 积分:1
-
Code
动态链接库程序的编写。静态库与动态库的区别,以及调用程序在链接静态库和动态库时的区别。如何利用工具查看动态链接库输出的函数,Depends工具的使用,C++编译器名字改编技术对动态链接库输出函数的影响,extern "C"的用法,利用模块定义文件来解决C++名字改编的问题。用typedef定义指向函数的指针类型,如何获得动态连接库里的函数的指针。(DLL program code. Static libraries and dynamic repository of differentiation, and calling program in the link static libraries and dynamic library difference. How to use tools to check DLL output function, Depends tools using, C++ compiler adapted technology to name DLL output functions, the influence of extern "C" usage, using C++ module definition file to solve problem. Name adapted With typedef definition pointer to a function pointer type, how to get dynamic connection pool of a function pointer.)
- 2010-12-13 11:27:45下载
- 积分:1
-
飞行器系统
基于stm32f10x的飞行控制系统,使用2.4G的NRF2401与飞行器系统和遥控系统进行通讯,使用串级PID算法,增强系统的稳定性和鲁棒性,超声波传感器定高,
- 2022-06-22 00:16:38下载
- 积分:1
-
51单片机俄罗斯方块源代码
# include
# include
# define N 4
# define time 500
# define uchar unsigned char
sbit keyenable=P3^6;
sbit up=P3^2;
sbit down=P3^4;
sbit right=P3^3;
sbit left=P3^1;
uchar code table[N+8]={0,0,0,0,1,2,4,8,16,32,64,128};
char x[4];
char y[4];
char m[8][8]={0};
uchar p[8];
int n=0;
/**************
延时函数
***************/
void delay(char MS)
{
char us,usn;
while(MS!=0)
{
usn = 0;
while(usn!=0)
{
us=0xff;
while (us!=0){us--;};
usn--;
}
MS--;
}
}
/***************
判断是否碰撞函数
**************/
bit coll(void)
{
bit k=0;
int i;
for(i=0;i
- 2023-01-11 14:50:04下载
- 积分:1