hosei2

Dependencies:   FatFileSystem MSCFileSystem SCP1000 mbed

Files at this revision

API Documentation at this revision

Comitter:
hosei2
Date:
Wed Feb 08 10:31:26 2017 +0000
Commit message:
ver1.0

Changed in this revision

FatFileSystem.lib Show annotated file Show diff for this revision Revisions of this file
MSCFileSystem.lib Show annotated file Show diff for this revision Revisions of this file
SCP1000.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r 927b64c12d0c FatFileSystem.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/FatFileSystem.lib	Wed Feb 08 10:31:26 2017 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/AdamGreen/code/FatFileSystem/#6ceefe1c53e4
diff -r 000000000000 -r 927b64c12d0c MSCFileSystem.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MSCFileSystem.lib	Wed Feb 08 10:31:26 2017 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/chris/code/MSCFileSystem/#f80d1f58be90
diff -r 000000000000 -r 927b64c12d0c SCP1000.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SCP1000.lib	Wed Feb 08 10:31:26 2017 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/yamaguch/code/SCP1000/#6ffff12eb3fc
diff -r 000000000000 -r 927b64c12d0c main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Feb 08 10:31:26 2017 +0000
@@ -0,0 +1,63 @@
+#include "mbed.h"
+#include "SCP1000.h"
+#include "MSCFileSystem.h"
+Serial pc(USBTX,USBRX); ///// connect to PC
+DigitalOut sp1(p10);
+DigitalOut L1(LED1);
+DigitalOut L2(LED2);
+DigitalOut L3(LED3);
+DigitalOut L4(LED4);
+#define FSNAME "msc"
+MSCFileSystem msc(FSNAME);
+FILE *USB_fp;
+int main()
+{
+    pc.printf("\n\nMBED START UP\n\n");
+    pc.printf("3\n");
+    L4=1;
+    int L1_mode,L2_mode,L3_mode,L4_mode;
+    pc.printf("2\n");
+    L3=1;
+    SCP1000 scp1000(p11, p12, p13, p14 , SCP1000::HIGH_SPEED_MODE );
+    scp1000.setOperationMode(SCP1000::HIGH_SPEED_MODE);
+    float scp_pressure,scp_temperature;
+    float bscp_pressure,bscp_temperature;
+    float ascp_pressure,ascp_temperature;
+    pc.printf("1\n");
+    L2=1;
+    char totaldata[512];
+    int i=0;
+    pc.printf("READY GO!\n\n");
+    pc.printf("0\n");
+    L1=1;
+    while(1)
+    {
+        scp_pressure = scp1000.readPressure();
+        scp_temperature = scp1000.readTemperature();
+        L1_mode=L1; L2_mode=L2;
+        L3_mode=L3; L4_mode=L4;
+        ascp_pressure=bscp_pressure*0.9+scp_pressure*0.1;
+        ascp_temperature=bscp_temperature*0.9+scp_temperature*0.1;
+        sprintf(totaldata,"%d,%f,%f,%d,%f,%f,%d,%d,%d,%d\n",
+            i,scp_pressure, scp_temperature,i,ascp_pressure,ascp_temperature,
+            L1_mode,L2_mode,L3_mode,L4_mode);
+        pc.printf("%d,%f,%f,%d,%f,%f,%d,%d,%d,%d\n",
+            i,scp_pressure, scp_temperature,i,ascp_pressure,ascp_temperature,
+            L1_mode,L2_mode,L3_mode,L4_mode);
+            i++;
+            bscp_pressure=ascp_pressure;
+            bscp_temperature=ascp_temperature;
+            if(sizeof(i)>0)
+            {
+            USB_fp = fopen( "/" FSNAME "/data.txt", "a");
+            if ( USB_fp != NULL ) fprintf(USB_fp, "%s\r\n",totaldata);
+            fclose(USB_fp);
+        }
+        L1=0;L2=0;L3=0;L4=0;
+        if(i%4==0) {L1=1;}
+        else if(i%4==1){L2=1;}
+        else if(i%4==2){L3=1;}
+        else if(i%4==3){L4=1;}
+    }
+
+}
\ No newline at end of file
diff -r 000000000000 -r 927b64c12d0c mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Wed Feb 08 10:31:26 2017 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/9baf128c2fab
\ No newline at end of file