]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/chips/msp430/pins/HplMsp430InterruptC.nc
Update to centralize inside one module where all interrupt handlers are signaled...
[tinyos-2.x.git] / tos / chips / msp430 / pins / HplMsp430InterruptC.nc
index 50ec746aebead97ed44903f6a3c5672fb79e0fe2..3cb8163e067291d5f81823fd77cfd44f8b63c822 100644 (file)
@@ -51,6 +51,7 @@ configuration HplMsp430InterruptC
 implementation
 {
   components HplMsp430InterruptP as HplInterruptP;
+  components HplMsp430InterruptSigP;
 #ifdef __msp430_have_port1
   Port10 = HplInterruptP.Port10;
   Port11 = HplInterruptP.Port11;
@@ -60,6 +61,7 @@ implementation
   Port15 = HplInterruptP.Port15;
   Port16 = HplInterruptP.Port16;
   Port17 = HplInterruptP.Port17;
+  HplInterruptP.SIGNAL_PORT1_VECTOR -> HplMsp430InterruptSigP.SIGNAL_PORT1_VECTOR;
 #endif
 #ifdef __msp430_have_port2
   Port20 = HplInterruptP.Port20;
@@ -70,5 +72,6 @@ implementation
   Port25 = HplInterruptP.Port25;
   Port26 = HplInterruptP.Port26;
   Port27 = HplInterruptP.Port27;
+  HplInterruptP.SIGNAL_PORT2_VECTOR -> HplMsp430InterruptSigP.SIGNAL_PORT2_VECTOR;
 #endif
 }