#include "xparameters.h"
#include "xgpio.h"
int main(void)
{
XGpio gpLED;
// Initialize the peripherals
XGpio_Initialize(&gpLED, XPAR_LEDS_8BITS_DEVICE_ID);
// Set the LED peripheral to outputs
XGpio_SetDataDirection(&gpLED, 1, 0x00);
Xuint32 ledState = 0;
Xuint32 daleyCntr = 0;
while(1)
{
ledState = (ledState + 1) % 256;
// Set the LED state
XGpio_DiscreteWrite(&gpLED, 1, ledState);
// Software delay loop for pause
for(daleyCntr = 0; daleyCntr < 500000; daleyCntr++);
}
}