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/Event.cpp')
-rw-r--r--src/Platform/Event.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Platform/Event.cpp b/src/Platform/Event.cpp
index 5439bed7..d145ce66 100644
--- a/src/Platform/Event.cpp
+++ b/src/Platform/Event.cpp
@@ -92,9 +92,7 @@ inline Event::Event(Event *_ecv_null p_next, EventType et, uint16_t p_param, uin
if (ep != nullptr && ep->isBeingProcessed)
{
vars.InsertNewParameter("D", ExpressionValue((int32_t)(ep->deviceNumber)));
-#if SUPPORT_CAN_EXPANSION
- vars.InsertNewParameter("B", ExpressionValue((int32_t)(ep->boardAddress)));
-#endif
+ vars.InsertNewParameter("B", ExpressionValue((int32_t)(ep->boardAddress))); // always include B so that the same macros can be used on all Duets
vars.InsertNewParameter("P", ExpressionValue((int32_t)(ep->param)));
}
}