]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/chips/msp430/pins/HplMsp430InterruptNMIP.nc
Reverting back to decentralized handling of interrupts on the msp430. Centralizing...
[tinyos-2.x.git] / tos / chips / msp430 / pins / HplMsp430InterruptNMIP.nc
index 97b945b2be82667805510cffff0eac383de8f615..1942ff24204eb2c6439410d20319da5fac7072d5 100644 (file)
@@ -27,11 +27,10 @@ module HplMsp430InterruptNMIP
   provides interface HplMsp430Interrupt as NMI;
   provides interface HplMsp430Interrupt as OF;
   provides interface HplMsp430Interrupt as ACCV;
-  uses interface HplMsp430InterruptSig as SIGNAL_NMI_VECTOR;
 }
 implementation
 {
-  inline async event void SIGNAL_NMI_VECTOR.fired() 
+  TOSH_SIGNAL(NMI_VECTOR)
   {
     volatile int n = IFG1;
     if (n & NMIIFG) { signal NMI.fired(); return; }