Fix nuttx coding style

Remove TABs
This commit is contained in:
simbit18 2023-08-01 16:50:48 +02:00 committed by Xiang Xiao
parent 4b0a3d92ff
commit 85988dc77f
9 changed files with 21 additions and 23 deletions

View File

@ -280,9 +280,7 @@ static int foc_angle_onfo_run_f32(FAR foc_angle_f32_t *h,
DEBUGASSERT(h->data); DEBUGASSERT(h->data);
ob = h->data; ob = h->data;
/* Normalize the d-q voltage to get the d-q modulation /* Normalize the d-q voltage to get the d-q modulation voltage */
* voltage
*/
v_dq_mod.d = in->state->vdq.d * in->state->mod_scale; v_dq_mod.d = in->state->vdq.d * in->state->mod_scale;
v_dq_mod.q = in->state->vdq.q * in->state->mod_scale; v_dq_mod.q = in->state->vdq.q * in->state->mod_scale;