19 lines
323 B
C
19 lines
323 B
C
#ifndef BSP_STM32_BOARDCONFIG_HARDWARE_INIT_H_
|
|
#define BSP_STM32_BOARDCONFIG_HARDWARE_INIT_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern struct netif gnetif; /* network interface structure */
|
|
|
|
void hardware_init();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* BSP_STM32_BOARDCONFIG_HARDWARE_INIT_H_ */
|