mirror of
https://github.com/MarekZegare4/MeshCore-Solo.git
synced 2026-09-14 15:16:40 +00:00
12 lines
383 B
C
12 lines
383 B
C
#pragma once
|
|
|
|
#if defined(ETHERNET_ENABLED)
|
|
#if defined(ETHERNET_USE_CH390)
|
|
#include "helpers/ethernet/ch390/CH390EthernetInterface.h"
|
|
#elif defined(ETHERNET_USE_RAK13800)
|
|
#include "helpers/ethernet/RAK13800/RAK13800EthernetInterface.h"
|
|
#else
|
|
#error "ETHERNET_ENABLED is defined, but no specific driver flag (e.g. ETHERNET_USE_CH390) was provided!"
|
|
#endif
|
|
#endif
|