Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BME280 BMP280 TextLCD
SD_CARD.hpp
- Committer:
- thomasmorris
- Date:
- 2018-01-09
- Revision:
- 49:d51f96a46cc3
- Parent:
- 48:244d6d81bb52
File content as of revision 49:d51f96a46cc3:
#ifndef SD_CARD_HPP #define SD_CARD_HPP #include "mbed.h" #include "rtos.h" #include <iostream> #include <fstream> #include "FIFO.hpp" #include "SERIAL.hpp" #include "sample_hardware.hpp" #define SD_CARD_WRITE 1 #define DONT_WRITE_TO_SD_CARD 0 extern FILE* fp; void SD_Init();//Initialised the SD CARD void SD_Card_Write(); extern void SD_Card_Eject(); extern bool SD_Write; extern InterruptIn SD_CARD_DETECT; #endif