Self test boot program for testing icarus sensors

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.cpp Source File

RNGSensor.cpp

00001 #include "RNGSensor.h"
00002 #include "mbed.h"
00003 
00004 #ifndef LOG
00005 #define LOG(...) do printf(__VA_ARGS__); while (0)
00006 #endif
00007 
00008 RNGSensor::RNGSensor() : BaseSensor() {
00009     
00010 }
00011  
00012 char* RNGSensor::getSimpleName() {
00013     return "RNGSensor";
00014 }
00015 
00016 
00017 
00018 uint32_t RNGSensor::verifyIntegrity(uint32_t* errorResult) {
00019     LOG("Start verfication of Random Number Generator");
00020     return 0;
00021 }
00022 
00023 void RNGSensor::getSensorDetails(sensor_t* sensorDetails) {
00024 
00025 }