usb_eth.h 181 B

1234567891011121314151617
  1. #ifndef USB_ETH_H_
  2. #define USB_ETH_H_
  3. #include <stdbool.h>
  4. //
  5. void usb_switch(bool state);
  6. extern struct netif netif_data;
  7. void usb_eth_init(void);
  8. #endif /* USB_ETH_H_ */