fuck this

Dependencies:   BMP280

Sampling.h

Committer:
Swaggie
Date:
2018-01-02
Revision:
5:bea93c8e50b7
Parent:
4:2e6d9492b76d
Child:
6:8e1795a5886b

File content as of revision 5:bea93c8e50b7:

#ifndef __Sampling__
#define __Sampling__

#ifdef BME
#include "BME280.h"
#else
#include "BMP280.h"
#endif

#ifdef BME
extern BME280 sensor;
#else
extern BMP280 sensor;
#endif

void SampleTimerISR(void);
//Called by ticker. Calls the sample funcs of each device by flagging the threads

void ConfigThreadsAndIR(void);
//Setup Interrupts and Threads

void InitiateHW(void);
//

#endif