diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-05-05 15:38:58 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-05-05 15:38:58 -0400 |
commit | ef8c58b96ea8d1e503362c5d18a74cd5d0101e0c (patch) | |
tree | aa82866bb55c213aead8d42f589f17102b1a2bcc /wirish | |
parent | 8fc5225a70c55be4e62b3a4eb9ce92f61e7e843f (diff) | |
download | librambutan-ef8c58b96ea8d1e503362c5d18a74cd5d0101e0c.tar.gz librambutan-ef8c58b96ea8d1e503362c5d18a74cd5d0101e0c.zip |
Renaming "enum ExtIntTriggerMode_" -> "enum ExtIntTriggerMode".
Done for consistency the rest of the source. Doesn't affect any
documented features.
Diffstat (limited to 'wirish')
-rw-r--r-- | wirish/ext_interrupts.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wirish/ext_interrupts.h b/wirish/ext_interrupts.h index 364bcda..7d20801 100644 --- a/wirish/ext_interrupts.h +++ b/wirish/ext_interrupts.h @@ -38,7 +38,7 @@ * The kind of transition on an external pin which should trigger an * interrupt. */ -typedef enum ExtIntTriggerMode_ { +typedef enum ExtIntTriggerMode { RISING, /**< To trigger an interrupt when the pin transitions LOW to HIGH */ FALLING, /**< To trigger an interrupt when the pin transitions |