Abe Takumi / SCP1000

Dependents:   EM_Logger

Fork of SCP1000 by Kenneth Adams

Revision:
7:61d2e698d988
Parent:
6:70e36f2da425
Child:
8:1049590388b6
--- a/SCP1000.cpp	Tue Oct 05 20:04:30 2010 +0000
+++ b/SCP1000.cpp	Fri Oct 08 17:39:06 2010 +0000
@@ -1,5 +1,5 @@
 /** \file
- SCP1000 cpp file
+ SCP1000 source file
 */
 
 #include "SCP1000.h"
@@ -21,11 +21,6 @@
     wait(0.5);
 }
 
-///Reads the pressure
-/**
-    Reads the pressure from the sensor
-    @return Pressure in pascals.
-*/
 unsigned long SCP1000::readPressure() {
     unsigned long pressure_msb = read_register(PRESSURE);
     pressure_msb &= 0x07;