Icarus Sensors / Mbed 2 deprecated SelfTestBoot

Dependencies:   BLE_API mbed nRF51822

Fork of BLE_UARTConsole by Bluetooth Low Energy

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers RNGSensor.h Source File

RNGSensor.h

00001 #ifndef MBED_RNG_SENSOR_H
00002 #define MBED_RNG_SENSOR_H
00003  
00004 #include "mbed.h"
00005 
00006 #include "BaseSensor.h"
00007  
00008 class RNGSensor : public BaseSensor {
00009 public:
00010     RNGSensor();
00011     //get sensor details from actual implementation
00012     virtual char* getSimpleName();
00013     virtual void getSensorDetails(sensor_t*);
00014     //verify basic integrity of underlining hardware
00015     virtual uint32_t verifyIntegrity(uint32_t*);
00016 private:  
00017 
00018 };
00019  
00020 #endif