Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Platform.h')
-rw-r--r--src/Platform.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Platform.h b/src/Platform.h
index cbbd4ec2..aec4f3d0 100644
--- a/src/Platform.h
+++ b/src/Platform.h
@@ -121,8 +121,10 @@ const size_t FILE_BUFFER_SIZE = 256;
enum class BoardType : uint8_t
{
Auto = 0,
-#ifdef DUET_NG
+#if defined(DUET_NG) && defined(DUET_WIFI)
DuetWiFi_10 = 1
+#elif defined(DUET_NG) && defined(DUET_ETHERNET)
+ DuetEthernet_10 = 1
#elif defined(__RADDS__)
RADDS_15 = 1
#else