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/CAN/CanMessageGenericConstructor.cpp')
-rw-r--r--src/CAN/CanMessageGenericConstructor.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/CAN/CanMessageGenericConstructor.cpp b/src/CAN/CanMessageGenericConstructor.cpp
index ef61896e..a62f01bd 100644
--- a/src/CAN/CanMessageGenericConstructor.cpp
+++ b/src/CAN/CanMessageGenericConstructor.cpp
@@ -329,6 +329,19 @@ void CanMessageGenericConstructor::AddDriverIdParam(char c, DriverId did) THROWS
InsertValue(&did.localDriver, sz, pos);
}
+void CanMessageGenericConstructor::AddFloatArrayParam(char c, const float *v, size_t numV) THROWS(GCodeException)
+{
+ ParamDescriptor::ParamType t;
+ size_t sz;
+ const unsigned int pos = FindInsertPoint(c, t, sz);
+ if (t != ParamDescriptor::float_array || numV != sz)
+ {
+ throw ConstructParseException("fval array wrong parameter type or length");
+ }
+ InsertValue(&numV, sizeof(uint8_t), pos);
+ InsertValue(v, numV * sizeof(float), pos + sizeof(uint8_t));
+}
+
GCodeResult CanMessageGenericConstructor::SendAndGetResponse(CanMessageType msgType, CanAddress dest, const StringRef& reply) const noexcept
{
CanMessageBuffer * const buf = CanMessageBuffer::Allocate();