summaryrefslogtreecommitdiff
path: root/nuttx/configs/skp16c26/src/up_buttons.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/skp16c26/src/up_buttons.c')
-rw-r--r--nuttx/configs/skp16c26/src/up_buttons.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/configs/skp16c26/src/up_buttons.c b/nuttx/configs/skp16c26/src/up_buttons.c
index 64d9d7345..828269a8e 100644
--- a/nuttx/configs/skp16c26/src/up_buttons.c
+++ b/nuttx/configs/skp16c26/src/up_buttons.c
@@ -38,7 +38,7 @@
****************************************************************************/
#include <nuttx/config.h>
-#include <sys/types.h>
+#include <stdint.h>
#include "chip.h"
#include "up_arch.h"
@@ -75,7 +75,7 @@
#ifdef CONFIG_ARCH_BUTTONS
void up_buttoninit(void)
{
- ubyte regval;
+ uint8_t regval;
regval = getreg8(M16C_PD8);
regval |= (SW1_BIT | SW2_BIT | SW3_BIT);
@@ -86,10 +86,10 @@ void up_buttoninit(void)
* Name: up_buttons
****************************************************************************/
-ubyte up_buttons(void)
+uint8_t up_buttons(void)
{
- ubyte swset = 0;
- ubyte regval = getreg8(M16C_P8);
+ uint8_t swset = 0;
+ uint8_t regval = getreg8(M16C_P8);
if (SW_PRESSED(regval, SW1_BIT))
{