2012-03-05 16:47:01 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2005, Swedish Institute of Computer Science
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the Contiki operating system.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file contains ISRs: Keep it in the HOME bank.
|
|
|
|
*/
|
|
|
|
#include "dev/port.h"
|
|
|
|
#include "dev/button-sensor.h"
|
2012-04-30 12:26:04 +02:00
|
|
|
#include "dev/watchdog.h"
|
2012-03-05 16:47:01 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2012-09-05 17:00:23 +02:00
|
|
|
static CC_AT_DATA struct timer debouncetimer;
|
2012-03-05 16:47:01 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2012-07-16 13:55:39 +02:00
|
|
|
/* Button 1 - SmartRF and cc2531 USB Dongle */
|
2011-12-22 22:37:42 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2012-12-16 14:25:33 +01:00
|
|
|
static int
|
|
|
|
value_b1(int type)
|
2012-03-05 16:47:01 +01:00
|
|
|
{
|
2011-12-22 22:37:42 +01:00
|
|
|
type;
|
|
|
|
return BUTTON_READ(1) || !timer_expired(&debouncetimer);
|
2012-03-05 16:47:01 +01:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2012-12-16 14:25:33 +01:00
|
|
|
static int
|
|
|
|
status_b1(int type)
|
2012-03-05 16:47:01 +01:00
|
|
|
{
|
2012-12-16 14:25:33 +01:00
|
|
|
switch(type) {
|
2012-03-05 16:47:01 +01:00
|
|
|
case SENSORS_ACTIVE:
|
|
|
|
case SENSORS_READY:
|
2011-12-22 22:37:42 +01:00
|
|
|
return BUTTON_IRQ_ENABLED(1);
|
2012-12-16 14:25:33 +01:00
|
|
|
}
|
2012-03-05 16:47:01 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2012-12-16 14:25:33 +01:00
|
|
|
static int
|
|
|
|
configure_b1(int type, int value)
|
2012-03-05 16:47:01 +01:00
|
|
|
{
|
|
|
|
switch(type) {
|
|
|
|
case SENSORS_HW_INIT:
|
2013-04-03 16:59:05 +02:00
|
|
|
#if !MODELS_CONF_CC2531_USB_STICK
|
2012-03-05 16:47:01 +01:00
|
|
|
P0INP |= 2; /* Tri-state */
|
2011-12-22 22:37:42 +01:00
|
|
|
#endif
|
|
|
|
BUTTON_IRQ_ON_PRESS(1);
|
|
|
|
BUTTON_FUNC_GPIO(1);
|
|
|
|
BUTTON_DIR_INPUT(1);
|
|
|
|
return 1;
|
|
|
|
case SENSORS_ACTIVE:
|
|
|
|
if(value) {
|
|
|
|
if(!BUTTON_IRQ_ENABLED(1)) {
|
|
|
|
timer_set(&debouncetimer, 0);
|
|
|
|
BUTTON_IRQ_FLAG_OFF(1);
|
|
|
|
BUTTON_IRQ_ENABLE(1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
BUTTON_IRQ_DISABLE(1);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* Button 2 - cc2531 USb Dongle only */
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2013-04-03 16:59:05 +02:00
|
|
|
#if MODELS_CONF_CC2531_USB_STICK
|
2012-12-16 14:25:33 +01:00
|
|
|
static int
|
|
|
|
value_b2(int type)
|
2011-12-22 22:37:42 +01:00
|
|
|
{
|
|
|
|
type;
|
|
|
|
return BUTTON_READ(2) || !timer_expired(&debouncetimer);
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2012-12-16 14:25:33 +01:00
|
|
|
static int
|
|
|
|
status_b2(int type)
|
2011-12-22 22:37:42 +01:00
|
|
|
{
|
2012-12-16 14:25:33 +01:00
|
|
|
switch(type) {
|
2011-12-22 22:37:42 +01:00
|
|
|
case SENSORS_ACTIVE:
|
|
|
|
case SENSORS_READY:
|
|
|
|
return BUTTON_IRQ_ENABLED(2);
|
2012-12-16 14:25:33 +01:00
|
|
|
}
|
2011-12-22 22:37:42 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2012-12-16 14:25:33 +01:00
|
|
|
static int
|
|
|
|
configure_b2(int type, int value)
|
2011-12-22 22:37:42 +01:00
|
|
|
{
|
|
|
|
switch(type) {
|
|
|
|
case SENSORS_HW_INIT:
|
|
|
|
BUTTON_IRQ_ON_PRESS(2);
|
|
|
|
BUTTON_FUNC_GPIO(2);
|
|
|
|
BUTTON_DIR_INPUT(2);
|
2012-03-05 16:47:01 +01:00
|
|
|
return 1;
|
|
|
|
case SENSORS_ACTIVE:
|
|
|
|
if(value) {
|
2011-12-22 22:37:42 +01:00
|
|
|
if(!BUTTON_IRQ_ENABLED(2)) {
|
2012-03-05 16:47:01 +01:00
|
|
|
timer_set(&debouncetimer, 0);
|
2011-12-22 22:37:42 +01:00
|
|
|
BUTTON_IRQ_FLAG_OFF(2);
|
|
|
|
BUTTON_IRQ_ENABLE(2);
|
2012-03-05 16:47:01 +01:00
|
|
|
}
|
|
|
|
} else {
|
2011-12-22 22:37:42 +01:00
|
|
|
BUTTON_IRQ_DISABLE(2);
|
2012-03-05 16:47:01 +01:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2011-12-22 22:37:42 +01:00
|
|
|
#endif
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* ISRs */
|
2012-03-05 16:47:01 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2012-09-05 17:00:23 +02:00
|
|
|
/* avoid referencing bits, we don't call code which use them */
|
|
|
|
#pragma save
|
|
|
|
#if CC_CONF_OPTIMIZE_STACK_SIZE
|
|
|
|
#pragma exclude bits
|
|
|
|
#endif
|
2013-04-03 16:59:05 +02:00
|
|
|
#if MODELS_CONF_CC2531_USB_STICK
|
2011-12-16 20:01:33 +01:00
|
|
|
void
|
|
|
|
port_1_isr(void) __interrupt(P1INT_VECTOR)
|
2011-12-22 22:37:42 +01:00
|
|
|
{
|
|
|
|
EA = 0;
|
|
|
|
ENERGEST_ON(ENERGEST_TYPE_IRQ);
|
|
|
|
|
|
|
|
/* This ISR is for the entire port. Check if the interrupt was caused by our
|
|
|
|
* button's pin. */
|
|
|
|
if(BUTTON_IRQ_CHECK(1)) {
|
|
|
|
if(timer_expired(&debouncetimer)) {
|
|
|
|
timer_set(&debouncetimer, CLOCK_SECOND / 8);
|
|
|
|
sensors_changed(&button_1_sensor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(BUTTON_IRQ_CHECK(2)) {
|
|
|
|
if(timer_expired(&debouncetimer)) {
|
|
|
|
timer_set(&debouncetimer, CLOCK_SECOND / 8);
|
2012-04-30 12:26:04 +02:00
|
|
|
#if CC2531_CONF_B2_REBOOTS
|
|
|
|
watchdog_reboot();
|
|
|
|
#else /* General Purpose */
|
2011-12-22 22:37:42 +01:00
|
|
|
sensors_changed(&button_2_sensor);
|
2012-04-30 12:26:04 +02:00
|
|
|
#endif
|
2011-12-22 22:37:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BUTTON_IRQ_FLAG_OFF(1);
|
|
|
|
BUTTON_IRQ_FLAG_OFF(2);
|
|
|
|
|
|
|
|
ENERGEST_OFF(ENERGEST_TYPE_IRQ);
|
|
|
|
EA = 1;
|
|
|
|
}
|
2011-12-16 20:01:33 +01:00
|
|
|
#else
|
2012-03-05 16:47:01 +01:00
|
|
|
void
|
|
|
|
port_0_isr(void) __interrupt(P0INT_VECTOR)
|
|
|
|
{
|
|
|
|
EA = 0;
|
|
|
|
ENERGEST_ON(ENERGEST_TYPE_IRQ);
|
|
|
|
|
|
|
|
/* This ISR is for the entire port. Check if the interrupt was caused by our
|
|
|
|
* button's pin. */
|
2011-12-22 22:37:42 +01:00
|
|
|
if(BUTTON_IRQ_CHECK(1)) {
|
2012-03-05 16:47:01 +01:00
|
|
|
if(timer_expired(&debouncetimer)) {
|
|
|
|
timer_set(&debouncetimer, CLOCK_SECOND / 8);
|
|
|
|
sensors_changed(&button_sensor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-22 22:37:42 +01:00
|
|
|
BUTTON_IRQ_FLAG_OFF(1);
|
2012-03-05 16:47:01 +01:00
|
|
|
|
|
|
|
ENERGEST_OFF(ENERGEST_TYPE_IRQ);
|
|
|
|
EA = 1;
|
|
|
|
}
|
2011-12-22 22:37:42 +01:00
|
|
|
#endif
|
2012-09-05 17:00:23 +02:00
|
|
|
#pragma restore
|
2012-03-05 16:47:01 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2011-12-22 22:37:42 +01:00
|
|
|
SENSORS_SENSOR(button_1_sensor, BUTTON_SENSOR, value_b1, configure_b1, status_b1);
|
2013-04-03 16:59:05 +02:00
|
|
|
#if MODELS_CONF_CC2531_USB_STICK
|
2011-12-22 22:37:42 +01:00
|
|
|
SENSORS_SENSOR(button_2_sensor, BUTTON_SENSOR, value_b2, configure_b2, status_b2);
|
|
|
|
#endif
|