contiki/tests/blink-red.c

32 lines
559 B
C
Raw Normal View History

2010-02-21 15:25:22 +00:00
#include <mc1322x.h>
2009-11-04 22:30:18 +00:00
#define MBAR_GPIO 0x80000000
#define GPIO_PAD_DIR0 ((volatile uint32_t *) 0x80000000)
#define GPIO_DATA0 ((volatile uint32_t *) 0x80000008)
#define UART1_DATA ((volatile uint32_t *) 0x80005008)
#define DELAY 400000
2010-02-21 23:47:12 +00:00
//#define LED_BITS LED_RED
2009-11-04 22:30:18 +00:00
__attribute__ ((section ("startup")))
void main(void) {
volatile uint32_t i;
2009-11-04 22:30:18 +00:00
2010-02-21 23:47:12 +00:00
// *GPIO_PAD_DIR0 = LED_BITS;
2009-11-04 22:30:18 +00:00
while(1) {
2010-02-21 23:47:12 +00:00
// *GPIO_DATA0 = LED_BITS;
for(i=0; i<DELAY; i++) { continue; }
2009-11-04 22:30:18 +00:00
*GPIO_DATA0 = 0x00000000;
for(i=0; i<DELAY; i++) { continue; }
};
2009-11-04 22:30:18 +00:00
}
2009-11-04 22:30:18 +00:00