-
Active_halt_rtc
ST单片机(STM8L152C6)RTC时钟/待机模式/以及唤醒功能(ST MCU (STM8L152C6) RTC clock/standby mode/wake-up function)
- 2020-10-28 14:00:00下载
- 积分:1
-
zuoyoupaomadeng
单片机程序led这是个很初级的程序,适合菜鸟学习,加油啊同志们(Microcontroller program is a very junior led the program for rookie learning, ah Come on comrades)
- 2010-12-14 17:55:48下载
- 积分:1
-
2008-SVALexamples
用于面波的频散分析和反演的程序。很好用的面波频散曲线提取个反演的程序。(For surface wave dispersion analysis and inversion procedures. Good use of the surface wave dispersion curve inversion procedures were extracted.)
- 2011-06-14 19:04:44下载
- 积分:1
-
MATLAB-CODE
MATLAB的一些经典算法,大家看看有没有用!(MATLAB' s some classic algorithms, we see no use!)
- 2011-05-20 14:19:05下载
- 积分:1
-
NumIdenByANN
用以数字(图象)识别的源代码。内附可执行文件。包括了训练、识别2个过程(figures for the (images) identification of the source code. Containing executable files. Includes training, two identification process)
- 2006-11-20 15:19:52下载
- 积分:1
-
MProojectPlanO
MODTRAN MATLAB 结结合使用且能移植到Visual C
(The MODTRAN MATLAB Junction combined with use and can be ported to Visual C)
- 2012-09-15 14:49:54下载
- 积分:1
-
计算器源码
/****************************************************************************** Meta object code from reading C++ file "mainwindow.h"**** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.0)**** WARNING! All changes made in this file will be lost!*****************************************************************************/#include "../../calculator/mainwindow.h"#include #include #if !defined(Q_MOC_OUTPUT_REVISION)#error "The header file "mainwindow.h" doesn"t include ."#elif Q_MOC_OUTPUT_REVISION != 67#error "This file was generated using the moc from 5.9.0. It"#error "cannot be used with the include files from this version of Qt."#error "(The moc has changed too much.)"#endifQT_BEGIN_MOC_NAMESPACEQT_WARNING_PUSHQT_WARNING_DISABLE
- 2022-03-16 18:11:53下载
- 积分:1
-
linux下mplayer播放器源代码
MPlayer能播放几乎所有流行的音频 和视频格式,相对其它播放器来说,资源占用非常少,不需要任何系统解码器就可以播放各种媒体格式(ZOL特供MPlayer播放器免费下载)。MPlayer是在Linux平台上的最强大的电影播放器的Windows版本。
- 2022-03-17 03:15:03下载
- 积分:1
-
MOM_for_Antenna
小型矩量法解决天线散射问题,在matlab环境下运行。(Small antenna scattering method of moments to solve the problem, run the matlab environment.)
- 2014-02-08 15:04:32下载
- 积分:1
-
430单片机贪吃蛇
采用msp430f169单片机驱动LCD12864完成的贪吃蛇游戏,共有四个独立按键,分别控制四个不同的方向。应经调试成功。单片机型号为美国TI公司的MSP430f169型。程序各部分均有头文件形式构成,对于初学者便于理解。#include "msp430x16x.h"
#include //包含随机数
//液晶引脚定义
#define E_1 P5OUT|=BIT7
#define E_0 P5OUT&=~BIT7
#define RW_1 P5OUT|=BIT6
#define RW_0 P5OUT&=~BIT6
#define RS_1 P5OUT|=BIT5
#define RS_0 P5OUT&=~BIT5
#define PSB_CLR P5OUT &= ~BIT0 //PSB置低,串口方式
#define PSB_SET P5OUT |= BIT0 //PSB置高,并口方式
#define RST_CLR P5OUT &= ~BIT1 //RST置低
#define RST_SET P5OUT |= BIT1 //RST置高
#define uchar unsigned char
#define uint unsigned int
//按键引脚定义
#define key_state_0 0
#define key_state_1 1
#define key_state_2 2
unsigned char key_state[4]={0,0};
uchar zi[]={0xd3,0xce,0xcf,0xb7,0xbd,0xe1,0xca,0xf8};//游戏结束
uchar fen[]={0xb5,0xc3,0xb7,0xd6};//得分
- 2023-07-30 19:55:02下载
- 积分:1