本帖最后由 dq002_zj 于 2013-12-29 20:37 编辑
做了一个简单的程序! Delay函数放在Main程序里PE3和PE4就不亮了!求指点!
程序如下!
#include<iom128v.h>
#include<macros.h>
#include<stdio.h>
#include<math.h>
#include<string.h>
#include<eeprom.h>
#define uchar unsigned char
#define uint unsigned int
//Delay
void Delay(uint Timers)
{
uint i;
while(Timers)
{
Timers--;
for(i=0;i<1000;i++);
}
}
//主程序
void main(void)
{
uchar temp;
Delay(100);
DDRE|=BIT(PE3); //SS
DDRE|=BIT(PE4); //SS
PORTE&=~BIT(PE3);
PORTE&=~BIT(PE4);
while(1)
{
NOP();
}
}
|