Skip to content

Commit

Permalink
removed debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowk29 committed Sep 21, 2016
1 parent a7dd287 commit 5150132
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion io.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ void swapByteOrder_int16(double *current, uint16_t *rawsignal, int64_t length)
bitval.bits = rawsignal[2*i];
bitval.bits = (bitval.bits << 8) | (bitval.bits >> 8);
current[i] = (double) bitval.currentval;
printf("%g\n",current[i]);
}
}

Expand Down

0 comments on commit 5150132

Please sign in to comment.