Skip to content

Commit

Permalink
bug fix in rotator
Browse files Browse the repository at this point in the history
  • Loading branch information
leomccormack committed Jan 9, 2024
1 parent bbe3ab1 commit ada5293
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/src/rotator/rotator.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void rotator_init
memset(pData->M_rot, 0, MAX_NUM_SH_SIGNALS*MAX_NUM_SH_SIGNALS*sizeof(float));
memset(pData->prev_M_rot, 0, MAX_NUM_SH_SIGNALS*MAX_NUM_SH_SIGNALS*sizeof(float));
memset(pData->prev_inputFrameTD, 0, MAX_NUM_SH_SIGNALS*ROTATOR_FRAME_SIZE*sizeof(float));
pData->M_rot_status = M_ROT_RECOMPUTE_QUATERNION;
pData->M_rot_status = M_ROT_RECOMPUTE_EULER;//M_ROT_RECOMPUTE_QUATERNION;
}

void rotator_process
Expand Down

0 comments on commit ada5293

Please sign in to comment.