This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
fsfw_example_public/bsp_stm32_rtems/boardconfig/hardware_init.h

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_ */