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:
- 48:244d6d81bb52
- Parent:
- 47:6d128e500875
- Child:
- 49:d51f96a46cc3
File content as of revision 48:244d6d81bb52:
#ifndef SD_CARD_HPP #define SD_CARD_HPP #include "mbed.h" #include "rtos.h" #include "FIFO.hpp" #include "SERIAL.hpp" #include "sample_hardware.hpp" extern FILE* fp; void SD_Init();//Initialised the SD CARD void SD_Card_Write(); extern void SD_Card_Eject(); extern InterruptIn SD_CARD_DETECT; #endif