fsfw-example-common/stm32h7/networking/networking.h

15 lines
383 B
C
Raw Normal View History

2021-07-16 13:20:38 +02:00
#ifndef BSP_STM32H7_RTEMS_NETWORKING_NETWORKING_H_
#define BSP_STM32H7_RTEMS_NETWORKING_NETWORKING_H_
#include <lwip/netif.h>
namespace networking {
void setEthCableConnected(bool status);
bool getEthCableConnected();
2022-05-22 15:30:08 +02:00
void setLwipAddresses(ip_addr_t *ipaddr, ip_addr_t *netmask, ip_addr_t *gw);
2021-07-16 13:20:38 +02:00
2022-08-08 12:32:06 +02:00
} // namespace networking
2021-07-16 13:20:38 +02:00
#endif /* BSP_STM32H7_RTEMS_NETWORKING_NETWORKING_H_ */