]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/mica2/VoltageNowC.nc
Consistent voltage stuff for mica family based on code from
[tinyos-2.x.git] / tos / platforms / mica2 / VoltageNowC.nc
diff --git a/tos/platforms/mica2/VoltageNowC.nc b/tos/platforms/mica2/VoltageNowC.nc
deleted file mode 100644 (file)
index edf0c18..0000000
+++ /dev/null
@@ -1,29 +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 VoltageNowC() {
-  provides interface Resource;
-  provides interface ReadNow<uint16_t>;
-}
-implementation {
-  components new AdcReadNowClientC(), VoltageDeviceP;
-
-  ReadNow = AdcReadNowClientC;
-  Resource = AdcReadNowClientC;
-  AdcReadNowClientC.Atm128AdcConfig -> VoltageDeviceP;
-  AdcReadNowClientC.ResourceConfigure -> VoltageDeviceP;
-}