Added interrupt configuration for the weather meter

This commit is contained in:
Antonio Lignan 2016-01-17 02:22:19 +01:00
parent 103911f619
commit aacbcd904f
3 changed files with 155 additions and 82 deletions

View File

@ -56,6 +56,8 @@
#include <stdint.h> #include <stdint.h>
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#define READ_SENSOR_PERIOD CLOCK_SECOND #define READ_SENSOR_PERIOD CLOCK_SECOND
#define ANEMOMETER_THRESHOLD_TICK 8
#define RAIN_GAUGE_THRESHOLD_TICK 15
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
static struct etimer et; static struct etimer et;
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
@ -63,15 +65,17 @@ PROCESS(test_weather_meter_sensors, "Test Weather meter sensors");
AUTOSTART_PROCESSES(&test_weather_meter_sensors); AUTOSTART_PROCESSES(&test_weather_meter_sensors);
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
static void static void
rain_callback(uint8_t value) rain_callback(uint16_t value)
{ {
printf("*** Rain\n"); printf("*** Rain gauge over threshold (%u ticks)\n", value);
weather_meter.configure(WEATHER_METER_RAIN_GAUGE_INT_OVER,
(value + RAIN_GAUGE_THRESHOLD_TICK));
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
static void static void
wind_speed_callback(uint8_t value) wind_speed_callback(uint16_t value)
{ {
printf("*** Wind speed\n"); printf("*** Wind speed over threshold (%u ticks)\n", value);
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
PROCESS_THREAD(test_weather_meter_sensors, ev, data) PROCESS_THREAD(test_weather_meter_sensors, ev, data)
@ -86,8 +90,17 @@ PROCESS_THREAD(test_weather_meter_sensors, ev, data)
WEATHER_METER_REGISTER_ANEMOMETER_INT(wind_speed_callback); WEATHER_METER_REGISTER_ANEMOMETER_INT(wind_speed_callback);
WEATHER_METER_REGISTER_RAIN_GAUGE_INT(rain_callback); WEATHER_METER_REGISTER_RAIN_GAUGE_INT(rain_callback);
/* Enable the sensors, this has to be called before any of the interrupt calls
* like the ones below
*/
SENSORS_ACTIVATE(weather_meter); SENSORS_ACTIVATE(weather_meter);
/* And the upper threshold value to compare and generate an interrupt */
weather_meter.configure(WEATHER_METER_ANEMOMETER_INT_OVER,
ANEMOMETER_THRESHOLD_TICK);
weather_meter.configure(WEATHER_METER_RAIN_GAUGE_INT_OVER,
RAIN_GAUGE_THRESHOLD_TICK);
etimer_set(&et, READ_SENSOR_PERIOD); etimer_set(&et, READ_SENSOR_PERIOD);
while(1) { while(1) {
@ -100,17 +113,17 @@ PROCESS_THREAD(test_weather_meter_sensors, ev, data)
#if WEATHER_METER_RAIN_RETURN_TICKS #if WEATHER_METER_RAIN_RETURN_TICKS
rain *= WEATHER_METER_AUX_RAIN_MM; rain *= WEATHER_METER_AUX_RAIN_MM;
if(rain > (WEATHER_METER_AUX_RAIN_MM * 3)) { if(rain > (WEATHER_METER_AUX_RAIN_MM * 3)) {
printf("Rain: %lu.%lu mm\n", (rain / 10000), (rain % 10000)); printf("Rain: %lu.%lu mm, ", (rain / 10000), (rain % 10000));
#else #else
if(rain >= 10) { if(rain >= 10) {
printf("Rain: %u.%u mm\n", (rain / 10), (rain % 10)); printf("Rain: %u.%u mm, ", (rain / 10), (rain % 10));
#endif #endif
} else { } else {
printf("Rain: 0.%lu mm\n", rain); printf("Rain: 0.%lu mm, ", rain);
} }
printf("Wind direction: %u metres/hour\n", wind_dir); printf("Wind (dir: %u deg, ", wind_dir);
printf("Wind speed %u\n", wind_speed); printf("speed %u m/h)\n", wind_speed);
etimer_reset(&et); etimer_reset(&et);
} }

View File

@ -47,6 +47,7 @@
#include "contiki.h" #include "contiki.h"
#include "dev/adc-sensors.h" #include "dev/adc-sensors.h"
#include "dev/weather-meter.h" #include "dev/weather-meter.h"
#include "dev/zoul-sensors.h"
#include "lib/sensors.h" #include "lib/sensors.h"
#include "dev/sys-ctrl.h" #include "dev/sys-ctrl.h"
#include "dev/gpio.h" #include "dev/gpio.h"
@ -54,22 +55,24 @@
#include "sys/timer.h" #include "sys/timer.h"
#include "sys/etimer.h" #include "sys/etimer.h"
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#define DEBUG 1 #define DEBUG 0
#if DEBUG #if DEBUG
#define PRINTF(...) printf(__VA_ARGS__) #define PRINTF(...) printf(__VA_ARGS__)
#else #else
#define PRINTF(...) #define PRINTF(...)
#endif #endif
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#define DEBOUNCE_DURATION (CLOCK_SECOND >> 6) #define DEBOUNCE_DURATION (CLOCK_SECOND >> 4)
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#define ANEMOMETER_SENSOR_PORT_BASE GPIO_PORT_TO_BASE(ANEMOMETER_SENSOR_PORT) #define ANEMOMETER_SENSOR_PORT_BASE GPIO_PORT_TO_BASE(ANEMOMETER_SENSOR_PORT)
#define ANEMOMETER_SENSOR_PIN_MASK GPIO_PIN_MASK(ANEMOMETER_SENSOR_PIN) #define ANEMOMETER_SENSOR_PIN_MASK GPIO_PIN_MASK(ANEMOMETER_SENSOR_PIN)
#define RAIN_GAUGE_SENSOR_PORT_BASE GPIO_PORT_TO_BASE(RAIN_GAUGE_SENSOR_PORT) #define RAIN_GAUGE_SENSOR_PORT_BASE GPIO_PORT_TO_BASE(RAIN_GAUGE_SENSOR_PORT)
#define RAIN_GAUGE_SENSOR_PIN_MASK GPIO_PIN_MASK(RAIN_GAUGE_SENSOR_PIN) #define RAIN_GAUGE_SENSOR_PIN_MASK GPIO_PIN_MASK(RAIN_GAUGE_SENSOR_PIN)
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
void (*rain_gauge_int_callback)(uint8_t value); void (*rain_gauge_int_callback)(uint16_t value);
void (*anemometer_int_callback)(uint8_t value); void (*anemometer_int_callback)(uint16_t value);
/*---------------------------------------------------------------------------*/
static uint8_t enabled;
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
process_event_t anemometer_int_event; process_event_t anemometer_int_event;
process_event_t rain_gauge_int_event; process_event_t rain_gauge_int_event;
@ -80,12 +83,14 @@ static struct timer debouncetimer;
typedef struct { typedef struct {
uint16_t ticks; uint16_t ticks;
uint16_t value; uint16_t value;
} a_ticking_sensor_t; uint8_t int_en;
uint16_t int_thres;
} weather_meter_sensors_t;
typedef struct { typedef struct {
uint16_t wind_vane; uint16_t wind_vane;
a_ticking_sensor_t rain_gauge; weather_meter_sensors_t rain_gauge;
a_ticking_sensor_t anemometer; weather_meter_sensors_t anemometer;
} weather_meter_sensors; } weather_meter_sensors;
static weather_meter_sensors weather_sensors; static weather_meter_sensors weather_sensors;
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
@ -103,9 +108,19 @@ PROCESS_THREAD(weather_meter_int_process, ev, data)
while(1) { while(1) {
PROCESS_YIELD(); PROCESS_YIELD();
/* The anemometer ticks twice per rotation, and a wind speed of 2.4 km/h if((ev == anemometer_int_event) && (weather_sensors.anemometer.int_en)) {
* makes the switch close every second, convert RPM to linear velocity if(weather_sensors.anemometer.ticks >=
*/ weather_sensors.anemometer.int_thres) {
anemometer_int_callback(weather_sensors.anemometer.ticks);
}
}
if((ev == rain_gauge_int_event) && (weather_sensors.rain_gauge.int_en)) {
if(weather_sensors.rain_gauge.ticks >=
weather_sensors.rain_gauge.int_thres) {
rain_gauge_int_callback(weather_sensors.rain_gauge.ticks);
}
}
if(ev == PROCESS_EVENT_TIMER) { if(ev == PROCESS_EVENT_TIMER) {
@ -113,9 +128,10 @@ PROCESS_THREAD(weather_meter_int_process, ev, data)
GPIO_DISABLE_INTERRUPT(ANEMOMETER_SENSOR_PORT_BASE, GPIO_DISABLE_INTERRUPT(ANEMOMETER_SENSOR_PORT_BASE,
ANEMOMETER_SENSOR_PIN_MASK); ANEMOMETER_SENSOR_PIN_MASK);
/* Two ticks per rotation */ /* The anemometer ticks twice per rotation, and a wind speed of 2.4 km/h
* makes the switch close every second, convert RPM to linear velocity
*/
rpm = weather_sensors.anemometer.ticks * 30; rpm = weather_sensors.anemometer.ticks * 30;
mph = rpm * WEATHER_METER_AUX_ANGULAR; mph = rpm * WEATHER_METER_AUX_ANGULAR;
mph /= 1000; mph /= 1000;
@ -130,9 +146,6 @@ PROCESS_THREAD(weather_meter_int_process, ev, data)
ANEMOMETER_SENSOR_PIN_MASK); ANEMOMETER_SENSOR_PIN_MASK);
etimer_restart(&et); etimer_restart(&et);
} }
// anemometer_int_callback(0);
// rain_gauge_int_callback(0);
} }
PROCESS_END(); PROCESS_END();
} }
@ -175,6 +188,11 @@ value(int type)
return WEATHER_METER_ERROR; return WEATHER_METER_ERROR;
} }
if(!enabled) {
PRINTF("Weather: module is not configured\n");
return WEATHER_METER_ERROR;
}
switch(type) { switch(type) {
case WEATHER_METER_WIND_VANE: case WEATHER_METER_WIND_VANE:
/* FIXME: return the values in degrees */ /* FIXME: return the values in degrees */
@ -203,16 +221,21 @@ value(int type)
static int static int
configure(int type, int value) configure(int type, int value)
{ {
if(type != WEATHER_METER_ACTIVE) { if((type != WEATHER_METER_ACTIVE) &&
(type != WEATHER_METER_ANEMOMETER_INT_OVER) &&
(type != WEATHER_METER_RAIN_GAUGE_INT_OVER) &&
(type != WEATHER_METER_ANEMOMETER_INT_DIS) &&
(type != WEATHER_METER_RAIN_GAUGE_INT_DIS)) {
PRINTF("Weather: invalid configuration option\n"); PRINTF("Weather: invalid configuration option\n");
return WEATHER_METER_ERROR; return WEATHER_METER_ERROR;
} }
weather_sensors.wind_vane = 0; if(type == WEATHER_METER_ACTIVE) {
weather_sensors.anemometer.int_en = 0;
weather_sensors.rain_gauge.int_en = 0;
weather_sensors.anemometer.ticks = 0; weather_sensors.anemometer.ticks = 0;
weather_sensors.anemometer.value = 0;
weather_sensors.rain_gauge.ticks = 0; weather_sensors.rain_gauge.ticks = 0;
weather_sensors.rain_gauge.value = 0;
if(!value) { if(!value) {
anemometer_int_callback = NULL; anemometer_int_callback = NULL;
@ -221,6 +244,9 @@ configure(int type, int value)
ANEMOMETER_SENSOR_PIN_MASK); ANEMOMETER_SENSOR_PIN_MASK);
GPIO_DISABLE_INTERRUPT(RAIN_GAUGE_SENSOR_PORT_BASE, GPIO_DISABLE_INTERRUPT(RAIN_GAUGE_SENSOR_PORT_BASE,
RAIN_GAUGE_SENSOR_PIN_MASK); RAIN_GAUGE_SENSOR_PIN_MASK);
process_exit(&weather_meter_int_process);
enabled = 0;
PRINTF("Weather: disabled\n");
return WEATHER_METER_SUCCESS; return WEATHER_METER_SUCCESS;
} }
@ -254,6 +280,34 @@ configure(int type, int value)
nvic_interrupt_enable(ANEMOMETER_SENSOR_VECTOR); nvic_interrupt_enable(ANEMOMETER_SENSOR_VECTOR);
nvic_interrupt_enable(RAIN_GAUGE_SENSOR_VECTOR); nvic_interrupt_enable(RAIN_GAUGE_SENSOR_VECTOR);
enabled = 1;
PRINTF("Weather: started\n");
return WEATHER_METER_SUCCESS;
}
switch(type) {
case WEATHER_METER_ANEMOMETER_INT_OVER:
weather_sensors.anemometer.int_en = 1;
weather_sensors.anemometer.int_thres = value;
PRINTF("Weather: anemometer threshold %u\n", value);
break;
case WEATHER_METER_RAIN_GAUGE_INT_OVER:
weather_sensors.rain_gauge.int_en = 1;
weather_sensors.rain_gauge.int_thres = value;
PRINTF("Weather: rain gauge threshold %u\n", value);
break;
case WEATHER_METER_ANEMOMETER_INT_DIS:
PRINTF("Weather: anemometer int disabled\n");
weather_sensors.anemometer.int_en = 0;
break;
case WEATHER_METER_RAIN_GAUGE_INT_DIS:
PRINTF("Weather: rain gauge int disabled\n");
weather_sensors.rain_gauge.int_en = 0;
break;
default:
return WEATHER_METER_ERROR;
}
return WEATHER_METER_SUCCESS; return WEATHER_METER_SUCCESS;
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/

View File

@ -44,6 +44,7 @@
*/ */
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#include "lib/sensors.h" #include "lib/sensors.h"
#include "dev/zoul-sensors.h"
/* -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- */
#ifndef WEATHER_METER_H_ #ifndef WEATHER_METER_H_
#define WEATHER_METER_H_ #define WEATHER_METER_H_
@ -57,6 +58,11 @@
#define WEATHER_METER_WIND_VANE 0x02 #define WEATHER_METER_WIND_VANE 0x02
#define WEATHER_METER_ACTIVE SENSORS_ACTIVE #define WEATHER_METER_ACTIVE SENSORS_ACTIVE
#define WEATHER_METER_ANEMOMETER_INT_OVER HW_INT_OVER_THRS
#define WEATHER_METER_ANEMOMETER_INT_DIS HW_INT_DISABLE
#define WEATHER_METER_RAIN_GAUGE_INT_OVER (HW_INT_OVER_THRS << 1)
#define WEATHER_METER_RAIN_GAUGE_INT_DIS (HW_INT_DISABLE << 1)
#define WEATHER_METER_SUCCESS 0 #define WEATHER_METER_SUCCESS 0
#define WEATHER_METER_ERROR (-1) #define WEATHER_METER_ERROR (-1)
@ -79,8 +85,8 @@
*/ */
#define WEATHER_METER_REGISTER_ANEMOMETER_INT(ptr) anemometer_int_callback = ptr; #define WEATHER_METER_REGISTER_ANEMOMETER_INT(ptr) anemometer_int_callback = ptr;
#define WEATHER_METER_REGISTER_RAIN_GAUGE_INT(ptr) rain_gauge_int_callback = ptr; #define WEATHER_METER_REGISTER_RAIN_GAUGE_INT(ptr) rain_gauge_int_callback = ptr;
extern void (*anemometer_int_callback)(uint8_t value); extern void (*anemometer_int_callback)(uint16_t value);
extern void (*rain_gauge_int_callback)(uint8_t value); extern void (*rain_gauge_int_callback)(uint16_t value);
/** @} */ /** @} */
/* -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- */
/** /**