osd-contiki/cpu/stm32w108/hal/micro/button.h
Adam Dunkels a5046e83c7 Cleanup and refactoring of the STM32w port
This is a general cleanup of things like code style issues and code structure of the STM32w port to make it more like the rest of Contiki is structured.
2013-03-18 13:31:26 +01:00

29 lines
652 B
C

/** @file /hal/micro/button.h
* @brief Header for button driver
*
* <!--(C) COPYRIGHT 2010 STMicroelectronics. All rights reserved. -->
*/
#ifndef _BUTTON_H_
#define _BUTTON_H_
/* button status */
#define BUTTON_PRESSED 0
#define BUTTON_RELEASED 1
#define BUTTON_UNKNOWN 3
typedef uint8_t HalBoardButton;
/* Functions -----------------------------------------------------------------*/
/** @brief Init buttons */
void halInitButton(void);
/** @brief Get button status */
uint8_t halGetButtonStatus(HalBoardButton button);
#endif /* _BUTTON_H_ */
/******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE****/