C&DH library

Dependencies:   SDFileSystem

Dependents:   Lab3-04_Q_Save_battery_voltage_to_microSD Lab3-05_model_program_2 Appendix-01_Camera_Data_Transmit_to_GS Lab3-01_Save_the_letters ... more

Committer:
HeptaSatTraining2019
Date:
Thu Nov 07 17:47:18 2019 +0000
Revision:
2:acea019126b1
Parent:
0:58ce2bfde7a8

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
HeptaSatTraining2019 0:58ce2bfde7a8 1 #ifndef MBED_HEPTACDH_H
HeptaSatTraining2019 0:58ce2bfde7a8 2 #define MBED_HEPTACDH_H
HeptaSatTraining2019 0:58ce2bfde7a8 3 #include "SDFileSystem.h"
HeptaSatTraining2019 0:58ce2bfde7a8 4 #include "mbed.h"
HeptaSatTraining2019 0:58ce2bfde7a8 5
HeptaSatTraining2019 0:58ce2bfde7a8 6 class HEPTA_CDH : public SDFileSystem{
HeptaSatTraining2019 0:58ce2bfde7a8 7 public:
HeptaSatTraining2019 0:58ce2bfde7a8 8
HeptaSatTraining2019 0:58ce2bfde7a8 9 HEPTA_CDH(PinName mosi, PinName miso, PinName sclk, PinName cs, const char* name);
HeptaSatTraining2019 0:58ce2bfde7a8 10
HeptaSatTraining2019 0:58ce2bfde7a8 11 private:
HeptaSatTraining2019 0:58ce2bfde7a8 12 };
HeptaSatTraining2019 0:58ce2bfde7a8 13
HeptaSatTraining2019 0:58ce2bfde7a8 14 #endif