aboutsummaryrefslogtreecommitdiffstats
path: root/wirish/ext_interrupts.c
blob: 54b8be9d5da7015aa73d1b56ea9ce548e48846b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* *****************************************************************************
 * The MIT License
 *
 * Copyright (c) 2010 Perry Hung.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 * ****************************************************************************/

/**
 *  @file ext_interrupts.c
 *
 *  @brief Wiring-like interface for external interrupts
 */

#include "wirish.h"
#include "exti.h"
#include "ext_interrupts.h"

typedef struct ExtiInfo {
    uint8 channel;
    uint8 port;
} ExtiInfo;

static ExtiInfo PIN_TO_EXTI_CHANNEL[NR_MAPLE_PINS] = {
    {EXTI3,  EXTI_CONFIG_PORTA},      // D0/PA3
    {EXTI2,  EXTI_CONFIG_PORTA},      // D1/PA2
    {EXTI0,  EXTI_CONFIG_PORTA},      // D2/PA0
    {EXTI1,  EXTI_CONFIG_PORTA},      // D3/PA1
    {EXTI5,  EXTI_CONFIG_PORTB},      // D4/PB5
    {EXTI6,  EXTI_CONFIG_PORTB},      // D5/PB6
    {EXTI8,  EXTI_CONFIG_PORTA},      // D6/PA8
    {EXTI9,  EXTI_CONFIG_PORTA},      // D7/PA9
    {EXTI10, EXTI_CONFIG_PORTA},      // D8/PA10
    {EXTI7,  EXTI_CONFIG_PORTB},      // D9/PB7
    {EXTI4,  EXTI_CONFIG_PORTA},      // D10/PA4
    {EXTI7,  EXTI_CONFIG_PORTA},      // D11/PA7
    {EXTI6,  EXTI_CONFIG_PORTA},      // D12/PA6
    {EXTI5,  EXTI_CONFIG_PORTA},      // D13/PA5
};


/**
 *  @brief Attach an interrupt handler to be triggered on a given
 *  transition on the pin. Runs in interrupt context
 *
 *  @param[in] pin Maple pin number
 *  @param[in] handler Function to run upon external interrupt trigger.
 *  @param[in] mode Type of transition to trigger on, eg falling, rising, etc.
 *
 *  @sideeffect Registers a handler
 */
int attachInterrupt(uint8 pin, voidFuncPtr handler, ExtInterruptTriggerMode mode) {
    uint8 outMode;
    /* Parameter checking  */
    if (pin >= NR_MAPLE_PINS) {
        return EXT_INTERRUPT_INVALID_PIN;
    }

    if (!handler) {
        ASSERT(0);
        return EXT_INTERRUPT_INVALID_FUNCTION;
    }

    switch (mode) {
    case RISING:
        outMode = EXTI_RISING;
        break;
    case FALLING:
        outMode = EXTI_FALLING;
        break;
    case CHANGE:
        outMode = EXTI_RISING_FALLING;
        break;
    default:
        ASSERT(0);
        return EXT_INTERRUPT_INVALID_MODE;;
    }

    exti_attach_interrupt(PIN_TO_EXTI_CHANNEL[pin].channel,
                          PIN_TO_EXTI_CHANNEL[pin].port,
                          handler, mode);

    return 0;
}

int detachInterrupt(uint8 pin) {
    if (!(pin < NR_MAPLE_PINS)) {
        return EXT_INTERRUPT_INVALID_PIN;
    }

    exti_detach_interrupt(PIN_TO_EXTI_CHANNEL[pin].channel);
}