ref: d60475e89d4ed87a2237a8e093e8c6198f419712
dir: /demos/stm32f429_disco/hw_init.h/
/**
* @file hw_init.h
* @version 0.01
* @date Oct 2, 2012
* @author Grzegorz Kostka, kostka.grzegorz@gmail.com
* @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_ */