Library of hardware declarations and utility functions for the ELEC350/1 Practicals and Coursework

Dependents:   Task618-mbedos-F429ZI Task621-mbedos_FZ429ZI Task622-mbedos-FZ429ZI Task632-mbedos-FZ429 ... more

Revision:
8:df979097cc71
Parent:
5:58ba1a6dbf60
--- a/sample_hardware.hpp	Wed Dec 06 15:57:58 2017 +0000
+++ b/sample_hardware.hpp	Thu Dec 07 15:28:16 2017 +0000
@@ -7,6 +7,9 @@
 #else
 #include "BMP280.h"
 #endif
+#include "TextLCD.h"
+#include "SDBlockDevice.h"
+#include "FATFileSystem.h"
 
 enum ELEC350_ERROR_CODE {OK, FATAL};
 
@@ -27,6 +30,9 @@
 extern BMP280 sensor;
 #endif
 
+extern TextLCD lcd;
+extern SDBlockDevice sd;
+
 extern void post();
 extern void errorCode(ELEC350_ERROR_CODE err);