grovewfs: isr is used internally, changed access modifier to private

Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
Mihai Tudor Panu 2015-09-04 14:45:18 -07:00
parent 2bae3931b9
commit 4b8b75b19b

View File

@ -116,12 +116,6 @@ namespace upm {
*/
uint32_t flowCounter() { return m_flowCounter; };
/**
* Flow interrupt service routine (ISR)
*
*/
static void flowISR(void *ctx);
/**
* Computes the flow rate in liters per minute (LPM)
*
@ -130,6 +124,12 @@ namespace upm {
float flowRate();
private:
/**
* Flow interrupt service routine (ISR)
*
*/
static void flowISR(void *ctx);
volatile uint32_t m_flowCounter;
struct timeval m_startTime;
mraa_gpio_context m_gpio;