From 4b8b75b19bb803d90ceea998c045b4d83bc1d3cd Mon Sep 17 00:00:00 2001 From: Mihai Tudor Panu Date: Fri, 4 Sep 2015 14:45:18 -0700 Subject: [PATCH] grovewfs: isr is used internally, changed access modifier to private Signed-off-by: Mihai Tudor Panu --- src/grovewfs/grovewfs.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/grovewfs/grovewfs.h b/src/grovewfs/grovewfs.h index 382ecbf7..51227fbe 100644 --- a/src/grovewfs/grovewfs.h +++ b/src/grovewfs/grovewfs.h @@ -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;