金牌会员
- 积分
- 1078
- 威望
- 594
- 贡献
- 260
- 兑换币
- 280
- 注册时间
- 2012-10-25
- 在线时间
- 112 小时
|
我试了好多次都不行。
#include "include.h"
#include "calculation.h"
/*************************
设置系统的全局变量
*************************/
extern u8 TIME0flag_5ms ;
extern u8 TIME0flag_10ms ;
extern u8 TIME0flag_15ms ;
extern u8 TIME0flag_20ms ;
extern u8 TIME1flag_20ms ;
extern u8 TimerFlag20ms;
unsigned char m;
u8 AtemP ;
u8 Pixel[128];
//二值化处理
void binarize()
{
unsigned int DIRECTION_ADTHRESHOLD=200;
{
if(Pixel[m]<DIRECTION_ADTHRESHOLD) //自己定义的阀值,AD后的中间值
{
Pixel[m]=0;//128个点的数组
}
else
{
Pixel[m]=1;
}
}
}
void main()
{
volatile u8 i;
u8 send_data_cnt = 0;
u8 *pixel_pt;
binarize();
DisableInterrupts; //禁止总中断
/*********************************************************
初始化程序
*********************************************************/
//自行添加代码
uart_init (UART0 , 9600); //初始化UART0,输出脚PTA15,输入脚PTA14,串口频率 9600
// adc_init(ADC1, AD6a) ;
gpio_init (PORTA , 17, GPO,HIGH);
gpio_init (PORTB , 17, GPO,LOW);
pit_init_ms(PIT0, 5); //初始化PIT0,定时时间为: 5ms
pit_init_ms(PIT1, 1); //初始化PIT1,定时时间为: 1000ms
CCD_init() ;
pixel_pt = Pixel;
for(i=0; i<128+10; i++) {
*pixel_pt= 0;
}
PTE5_OUT = 1 ;
EnableInterrupts; //开总中断
/******************************************
执行程序
******************************************/
while(1)
{
if(TIME1flag_20ms == 1)
{
TIME1flag_20ms = 0 ;
/* Sampling CCD data ccd数据采集*/
ImageCapture(Pixel);
/* Calculate Integration Time */
CalculateIntegrationTime();
/* Send data to CCDView every 100ms */
if(++send_data_cnt >= 5) {
send_data_cnt = 0;
SendImageData(Pixel);
}
}
}
}
|
|