Self test boot program for testing icarus sensors

Dependencies:   BLE_API mbed nRF51822

Fork of BLE_UARTConsole by Bluetooth Low Energy

Revision:
7:438b55fe8576
Child:
8:e9ae7a01d866
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/RNGSensor.cpp	Mon Jan 26 13:57:26 2015 +0000
@@ -0,0 +1,21 @@
+#include "RNGSensor.h"
+#include "mbed.h"
+
+
+RNGSensor::RNGSensor() : BaseSensor(NULL) {
+    
+}
+ 
+char* BaseSensor::getSimpleName() {
+    return "RNGSensor";
+}
+
+
+
+int BaseSensor::verifyIntegrity(int* errorResult) {
+    return 0;
+}
+
+void BaseSensor::getSensorDetails(sensor_t* sensorDetails) {
+
+}
\ No newline at end of file