EDK problem

U

umerdarazawan

Guest
hi all
i am new with EDK, i am working with microblaze and have to run on my ow
board XC3S1000-fg456 -4
i write a simple code to blink 2 leds
code here:

#include "xparameters.h"
#include "xgpio.h"
main()
{
XGpio led;
unsigned int i,j,k;
XGpio_Initialize(&led,XPAR_LEDS_DEVICE_ID);
XGpio_SetDataDirection(&led, 1, 0x0);
while(1)
{
XGpio_DiscreteWrite(&led, 1, 0x3);
for(k=0;k<60000;k++);
XGpio_DiscreteWrite(&led, 1, 0x0);
for(k=0;k<60000;k++);
} // while(1)
}//main()


there are the following error, plz help me


/usr/bin/bash: cd: /cygdrive/e/technical: No such file or directory
make: *** No rule to make target `/cygdrive/e/technical', needed b
`TestApp/executable.elf'. Stop.



---------------------------------------
Posted through http://www.FPGARelated.com
 

Welcome to EDABoard.com

Sponsor

Back
Top