-
UserControl
实现用户自定义分页及数据的导入与导出,可实现文件名自定义。(Achieve user-defined paging and data import and export, custom file name can be realized.)
- 2010-05-26 09:47:01下载
- 积分:1
-
GG_POS
组合导航定位程序,用C写的源码,研究这方面的朋友们可以下来学习。(portfolio navigation procedures, written with C source code, look at this area of friends can learn from.)
- 2007-03-15 17:36:02下载
- 积分:1
-
BOW图像分类
基于BOW的图像分类,包含了训练集和测试集合,在控制台下运行
- 2022-01-25 20:45:44下载
- 积分:1
-
fai_v31
小波包分析提取振动信号中的特征频率,计算互信息非常有用的一组程序,进行逐步线性回归。( Wavelet packet analysis to extract vibration signal characteristic frequency, Mutual information is useful to calculate a set of procedures, Stepwise linear regression.)
- 2017-05-10 23:13:56下载
- 积分:1
-
蓝牙密码锁
基于stm32f103单片机制作的蓝牙密码锁(Bluetooth Password Lock Based on STM32F103 MCU)
- 2021-04-18 13:18:57下载
- 积分:1
-
发送电子邮件的程序
发送电子邮件的程序-email procedures
- 2022-01-25 17:31:08下载
- 积分:1
-
16c954
在DSP上运行的一段C程序源代码,包括对串口芯片16c954进行初始化及读、写操作函数(Running in the DSP section of C source code, including the serial 16C954 chip to initialize and read, write operation function)
- 2008-05-12 22:34:38下载
- 积分:1
-
Pchap55i
基于遗传算法的pid整定的maatlab的源代码 可直接使用。
(Based on genetic algorithm pid the tuning maatlab the source code can be used directly.)
- 2012-09-30 19:21:45下载
- 积分:1
-
ss2005.11.29
主要用于打开8位、24位BMP图像,并对其进行相应的处理,如:颜色分量提取,检测等(key to open the eight, 24 BMP images, and its corresponding treatment, such as : color component extraction, testing)
- 2007-05-16 10:40:59下载
- 积分:1
-
光流,超声波
可以给做电赛的朋友
#include "includes.h"
/*********************************
使用外部中断和systik定时器来做超声波部分
警告:超声波使用systick时,其他设备不允许使用systick
***********************************/
unsigned char ultrasonic_systick = 0;//等于0时,超声波没有使用SYSTICK
unsigned char ultrasonic_ok = 0;
unsigned int ultrasonic_Data;
float ultrasonic_Hight;
//此部分初始化外部中断以及各部分用到的引脚
void ultrasonic_Init(void)
{
//使用TIM4_CH1,TIM4_CH2用于超声波引脚
//TIM4_CH1(PB6) -> echo
//TIM4_CH2(PB7) -> trig
GPIO_InitTypeDef GPIO_InitStructure;
EXTI_InitTypeDef EXTI_InitStructure;
// NVIC_InitTypeDef NVIC_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB ,ENABLE);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_7;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
GPIO_Init(GPIOB,&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_6;
GP
- 2022-01-25 15:03:30下载
- 积分:1