Скачиваний:
10
Добавлен:
05.09.2014
Размер:
441 б
Скачать
/***************************************
*
*	   LETI traning 2011
*
***************************************/
#include "LPC17xx.h"
#include "eint.h"
#include "leds.h"     

extern int led;

//--external interrupt:
void eint0_init(void) {
	LPC_PINCON->PINSEL4 |= (1<<20); //connect eint0 to pin
	//setup eint0
	//enable eint0 interrupt
}

//---
void EINT0_IRQHandler (void) __irq {
	//clear int		
	//blinky operations
}
Соседние файлы в папке src