From 2b4abec1eabbc0a2b8ea96c799ebd18da253c6c0 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 24 Jan 2014 13:59:24 -0600 Subject: Rename up_buttons() to board_buttons() --- apps/examples/buttons/buttons_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/examples/buttons/buttons_main.c') diff --git a/apps/examples/buttons/buttons_main.c b/apps/examples/buttons/buttons_main.c index fba88d026..130ec2181 100644 --- a/apps/examples/buttons/buttons_main.c +++ b/apps/examples/buttons/buttons_main.c @@ -312,7 +312,7 @@ static void show_buttons(uint8_t oldset, uint8_t newset) #ifdef CONFIG_ARCH_IRQBUTTONS static void button_handler(int id, int irq) { - uint8_t newset = up_buttons(); + uint8_t newset = board_buttons(); lowsyslog("IRQ:%d Button %d:%s SET:%02x:\n", irq, id, g_buttoninfo[BUTTON_INDEX(id)].name, newset); @@ -448,7 +448,7 @@ int buttons_main(int argc, char *argv[]) /* Poll button state */ - g_oldset = up_buttons(); + g_oldset = board_buttons(); #ifdef CONFIG_NSH_BUILTIN_APPS while (g_nbuttons < maxbuttons) #else @@ -457,7 +457,7 @@ int buttons_main(int argc, char *argv[]) { /* Get the set of pressed and release buttons. */ - newset = up_buttons(); + newset = board_buttons(); /* Any changes from the last sample? */ -- cgit v1.2.3