]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/mica2/VoltageStreamC.nc
Consistent voltage stuff for mica family based on code from
[tinyos-2.x.git] / tos / platforms / mica2 / VoltageStreamC.nc
diff --git a/tos/platforms/mica2/VoltageStreamC.nc b/tos/platforms/mica2/VoltageStreamC.nc
deleted file mode 100644 (file)
index 6749d89..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/* $Id$
- * Copyright (c) 2006 Intel Corporation
- * All rights reserved.
- *
- * This file is distributed under the terms in the attached INTEL-LICENSE     
- * file. If you do not find these files, copies can be found by writing to
- * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, 
- * 94704.  Attention:  Intel License Inquiry.
- */
-/**
- * Voltage sensor.
- * 
- * @author David Gay
- */
-
-#include "hardware.h"
-
-generic configuration VoltageStreamC() {
-  provides interface ReadStream<uint16_t>;
-}
-implementation {
-  components VoltageDeviceP, new AdcReadStreamClientC();
-
-  ReadStream = AdcReadStreamClientC;
-  AdcReadStreamClientC.Atm128AdcConfig -> VoltageDeviceP;
-  AdcReadStreamClientC.ResourceConfigure -> VoltageDeviceP;
-}