From: kusy Date: Thu, 15 Jan 2009 00:57:49 +0000 (+0000) Subject: Removed two includes which shouldn't be here. X-Git-Tag: rc_6_tinyos_2_1_1~529 X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=commitdiff_plain;h=dade6b9533149d7e6d3affa3a0adb511e9a2c3e9;p=tinyos-2.x.git Removed two includes which shouldn't be here. --- diff --git a/tos/chips/pxa27x/cif/HplPXA27XQuickCaptIntM.nc b/tos/chips/pxa27x/cif/HplPXA27XQuickCaptIntM.nc index 78abf87c..7f9d5804 100644 --- a/tos/chips/pxa27x/cif/HplPXA27XQuickCaptIntM.nc +++ b/tos/chips/pxa27x/cif/HplPXA27XQuickCaptIntM.nc @@ -45,8 +45,6 @@ * @author Brano Kusy (branislav.kusy@gmail.com) * @version October 25, 2007 */ -#include "SCCB.h" -#include "OV7649.h" #include "PXA27XQuickCaptInt.h" #include "DMA.h" #include "dmaArray.h" @@ -150,7 +148,6 @@ implementation async command void HplPXA27XQuickCaptInt.disableQuick() { - led_clr();//call LED_PIN.clr(); CICR0 &= ~(CICR0_EN); CISR |= CISR_CQD; } @@ -218,13 +215,11 @@ implementation //atomic{printfUART(">>>>>>>>>>>>>>> PPID_CIF_Irq.fired() >>>>>>>>>>>\n", "");} volatile uint32_t tempCISR; - call Leds.led0Toggle(); atomic { tempCISR = CISR; } // Start-Of-Frame if ((tempCISR & CISR_SOF) && (~(CICR0) & CICR0_SOFM)) { atomic CISR |= CISR_SOF; - led_set();//call LED_PIN.set(); signal HplPXA27XQuickCaptInt.startOfFrame(); // this disables CIF after the current frame capture is done CICR0 |= CICR0_DIS; @@ -232,7 +227,6 @@ implementation // End-Of-Frame if ((tempCISR & CISR_EOF) && (~(CICR0) & CICR0_EOFM)) { atomic CISR |= CISR_EOF; - led_clr();//call LED_PIN.clr(); signal HplPXA27XQuickCaptInt.endOfFrame(); return; }