osd-contiki/cpu/stm32w108/hal/micro/button.h

29 lines
648 B
C
Raw Normal View History

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