From fb40ad9d62137d58e6cb4cd2fd635c8eeffab413 Mon Sep 17 00:00:00 2001 From: mdhom Date: Mon, 2 Nov 2020 14:28:26 +0100 Subject: [PATCH] added input_mode enum values --- GUI/src/views/Dashboard.vue | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/GUI/src/views/Dashboard.vue b/GUI/src/views/Dashboard.vue index 07dbae0e..81d88287 100644 --- a/GUI/src/views/Dashboard.vue +++ b/GUI/src/views/Dashboard.vue @@ -254,6 +254,40 @@ let odriveEnums = { text: "Position Control", value: 3, }, + ], + input_mode: [ + { + text: "Inactive", + value: 0 + }, + { + text: "Passthrough", + value: 1 + }, + { + text: "Velocity Ramp", + value: 2 + }, + { + text: "Position Filter", + value: 3 + }, + { + text: "Mix Channels", + value: 4 + }, + { + text: "Trapezoidal Trajectory", + value: 5 + }, + { + text: "Torque Ramp", + value: 6 + }, + { + text: "Mirror", + value: 7 + } ] }