mirror of https://github.com/meshcore-dev/MeshCore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
275 B
9 lines
275 B
#pragma once
|
|
|
|
#if defined(ETHERNET_ENABLED)
|
|
#if defined(ETHERNET_USE_CH390)
|
|
#include "helpers/ethernet/ch390/CH390EthernetInterface.h"
|
|
#else
|
|
#error "ETHERNET_ENABLED is defined, but no specific driver flag (e.g. ETHERNET_USE_CH390) was provided!"
|
|
#endif
|
|
#endif
|
|
|