ref: 273f02b2eb705250f7e53ead6ab41237a0085713
dir: /demos/stm32f429_disco/hw_init.h/
/** * @file hw_init.h * @version 0.01 * @date Oct 2, 2012 * @author Grzegorz Kostka, [email protected] * @brief ... * * @note * * @addtogroup group * @{ * @addtogroup subgroup * @{ **********************************************************/ #ifndef HW_INIT_H_ #define HW_INIT_H_ #include <config.h> #include <stdbool.h> #include <stdint.h> void hw_init(void); void hw_usb_process(void); bool hw_usb_connected(void); bool hw_usb_enum_done(void); void hw_led_red(bool on); void hw_led_green(bool on); uint32_t hw_get_ms(void); #endif /* HW_INIT_H_ */