aboutsummaryrefslogtreecommitdiffstats
path: root/wirish/include
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2012-06-05 18:11:29 -0400
committerMarti Bolivar <mbolivar@leaflabs.com>2012-06-07 03:38:30 -0400
commit66167fcf43fabbf33a1ea357954a433cee4a76ff (patch)
treebde30708cc8f20f5e90054a5d6095599434a37b9 /wirish/include
parentab6814b687a670475fcf9be2be2af30f72904320 (diff)
downloadlibrambutan-66167fcf43fabbf33a1ea357954a433cee4a76ff.tar.gz
librambutan-66167fcf43fabbf33a1ea357954a433cee4a76ff.zip
<wirish/boards.h>: Add BOARD_BUTTON_PRESSED_LEVEL.
This allows boards to override the logic level of a pressed button. All Maple boards have a pressed button read HIGH, but if the opposite convention is used, isButtonPressed() will infinite loop. Make isButtonPressed() respect this setting. Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
Diffstat (limited to 'wirish/include')
-rw-r--r--wirish/include/wirish/boards.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/wirish/include/wirish/boards.h b/wirish/include/wirish/boards.h
index 73d5509..6676a02 100644
--- a/wirish/include/wirish/boards.h
+++ b/wirish/include/wirish/boards.h
@@ -110,13 +110,21 @@ extern void boardInit(void);
*/
bool boardUsesPin(uint8 pin);
-/* Set derived definitions */
+/*
+ * Derived and default board definitions
+ */
+
#define CLOCK_SPEED_MHZ CYCLES_PER_MICROSECOND
#define CLOCK_SPEED_HZ (CLOCK_SPEED_MHZ * 1000000UL)
+
#ifndef SYSTICK_RELOAD_VAL
#define SYSTICK_RELOAD_VAL (1000 * CYCLES_PER_MICROSECOND - 1)
#endif
+#ifndef BOARD_BUTTON_PRESSED_LEVEL
+#define BOARD_BUTTON_PRESSED_LEVEL HIGH
+#endif
+
/**
* @brief Does the board break out a USART/UART's RX and TX pins?
*