Skip to content

Commit

Permalink
Corrected copy/paste error in disabled flow deck code. Closes #475
Browse files Browse the repository at this point in the history
  • Loading branch information
krichardsson committed Sep 26, 2019
1 parent 77e6dbe commit 0c26532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deck/drivers/src/flowdeck_v1v2.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ static void flowdeckTask(void *param)
#if defined(USE_MA_SMOOTHING)
// Use MA Smoothing
pixelAverages.averageX[pixelAverages.ptr] = (float32_t)accpx;
pixelAverages.averageX[pixelAverages.ptr] = (float32_t)accpy;
pixelAverages.averageY[pixelAverages.ptr] = (float32_t)accpy;

float32_t meanX;
float32_t meanY;
Expand Down

0 comments on commit 0c26532

Please sign in to comment.