+/**
+ * Undecimate - I'd call it 'interpolate', but we'll save that
+ * name until someone does an actual interpolation command, not just
+ * blindly repeating samples
+ * @param Cmd
+ * @return
+ */
+int CmdUndec(const char *Cmd)
+{
+ //We have memory, don't we?
+ int swap[MAX_GRAPH_TRACE_LEN] = { 0 };
+ uint32_t i = 0 ,j = 0;
+ while(j+1 < MAX_GRAPH_TRACE_LEN && i < GraphTraceLen)
+ {
+ swap[j] = GraphBuffer[i];
+ swap[j+1] = GraphBuffer[i];
+ i++;
+ j+=2;
+ }
+ memcpy(GraphBuffer,swap, j);
+ GraphTraceLen = j;
+ PrintAndLog("Undecimated by 2");
+ RepaintGraphWindow();
+
+ /*
+ * Something is not right here, need to look into it,
+ * the undec seems to only operate on half the values **/
+ return 0;
+}