blob: 4cebe5c9d0dfcbb1557419529bf798d5e727964a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* -*- c++ -*- */
/*
* Copyright 2010 Ettus Research LLC
*
*/
#include "memory_map.h"
#include <nonstdio.h>
int main(int argc, char *argv[]) {
uint32_t c = 0;
uint8_t i = 0;
while(1) {
//delay(5000000);
for(c=0;c<5000000;c++) asm("NOP");
output_regs->leds = (i++ % 2) ? 0xFF : 0x00; //blink everything on that register
}
return 0;
}
//void delay(uint32_t t) {
// while(t-- != 0) asm("NOP");
//}
|