Time: 17:33 Date: 10/12/2017 Description: Task 1,7,8 Currently Functioning

Dependencies:   BME280 BMP280 TextLCD

Working Repository

Committer:
thomasmorris
Date:
Tue Jan 09 00:37:01 2018 +0000
Revision:
48:244d6d81bb52
Parent:
47:6d128e500875
Child:
49:d51f96a46cc3
HOLY SHIT IT WORKS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thomasmorris 47:6d128e500875 1 #ifndef SD_CARD_HPP
thomasmorris 47:6d128e500875 2 #define SD_CARD_HPP
thomasmorris 47:6d128e500875 3
thomasmorris 47:6d128e500875 4 #include "mbed.h"
thomasmorris 47:6d128e500875 5 #include "rtos.h"
thomasmorris 47:6d128e500875 6 #include "FIFO.hpp"
thomasmorris 47:6d128e500875 7 #include "SERIAL.hpp"
thomasmorris 48:244d6d81bb52 8 #include "sample_hardware.hpp"
thomasmorris 48:244d6d81bb52 9 extern FILE* fp;
thomasmorris 47:6d128e500875 10 void SD_Init();//Initialised the SD CARD
thomasmorris 47:6d128e500875 11 void SD_Card_Write();
thomasmorris 48:244d6d81bb52 12 extern void SD_Card_Eject();
thomasmorris 47:6d128e500875 13
thomasmorris 48:244d6d81bb52 14 extern InterruptIn SD_CARD_DETECT;
thomasmorris 47:6d128e500875 15 #endif