]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - apps/AntiTheft/Root/AntiTheftRootC.nc
Merge TinyOS 2.1.1 into master.
[tinyos-2.x.git] / apps / AntiTheft / Root / AntiTheftRootC.nc
index 7a9a2630a5f1943de48676fb9dd22847e2bb3cbc..ada387b5ec1a9ba6750b5d8bf5b3b3c0c67996de 100644 (file)
@@ -55,7 +55,7 @@ implementation
        tree */
     if (error == SUCCESS)
       {
-       call LowPowerListening.setLocalDutyCycle(200);
+       call LowPowerListening.setLocalWakeupInterval(512);
        call DisseminationControl.start();
        call CollectionControl.start();
        call RootControl.setRoot();
@@ -93,11 +93,12 @@ implementation
       {
        /* Copy payload (newAlert) from collection system to our serial
           message buffer (fwdAlert), then send our serial message */
-       alert_t *fwdAlert = call AlertsForward.getPayload(&fwdMsg);
-
-       *fwdAlert = *newAlert;
-       if (call AlertsForward.send(AM_BROADCAST_ADDR, &fwdMsg, sizeof *fwdAlert) == SUCCESS)
-         fwdBusy = TRUE;
+       alert_t *fwdAlert = call AlertsForward.getPayload(&fwdMsg, sizeof(alert_t));
+       if (fwdAlert != NULL) {
+         *fwdAlert = *newAlert;
+         if (call AlertsForward.send(AM_BROADCAST_ADDR, &fwdMsg, sizeof *fwdAlert) == SUCCESS)
+           fwdBusy = TRUE;
+       }
       }
     return msg;
   }