From 42c8c0873c00e692eb88c54e7da4fcbabbd9a4b6 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Tue, 14 Dec 2010 13:10:12 -0800 Subject: zpu: working txrx, modified blink lights to look better, no interrupt (poll handler) --- firmware/microblaze/apps/blinkenlights.c | 4 +++- firmware/microblaze/apps/txrx_uhd.c | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'firmware/microblaze/apps') diff --git a/firmware/microblaze/apps/blinkenlights.c b/firmware/microblaze/apps/blinkenlights.c index 4cebe5c9d..30cb33a7f 100644 --- a/firmware/microblaze/apps/blinkenlights.c +++ b/firmware/microblaze/apps/blinkenlights.c @@ -12,9 +12,11 @@ int main(int argc, char *argv[]) { uint32_t c = 0; uint8_t i = 0; + output_regs->led_src = 0; + while(1) { //delay(5000000); - for(c=0;c<5000000;c++) asm("NOP"); + for(c=0;c<50000;c++) asm("NOP"); output_regs->leds = (i++ % 2) ? 0xFF : 0x00; //blink everything on that register } diff --git a/firmware/microblaze/apps/txrx_uhd.c b/firmware/microblaze/apps/txrx_uhd.c index dc41e56c4..8adaf6bb2 100644 --- a/firmware/microblaze/apps/txrx_uhd.c +++ b/firmware/microblaze/apps/txrx_uhd.c @@ -373,6 +373,7 @@ main(void) pkt_ctrl_release_incoming_buffer(); } + pic_interrupt_handler(); int pending = pic_regs->pending; // poll for under or overrun if (pending & PIC_UNDERRUN_INT){ -- cgit v1.2.3