CMSIS-DSP: Removed compilation warning.

pull/19/head
Christophe Favergeon 5 years ago
parent 2b6d208557
commit 8d2fca6efe

@ -392,7 +392,7 @@ void stage_rfft_f32(
pA += 2; pA += 2;
pB -= 2; pB -= 2;
k--; k--;
} while (k > 0U); } while (k > 0);
} }
/* Prepares data for inverse cfft */ /* Prepares data for inverse cfft */
@ -422,7 +422,7 @@ void merge_rfft_f32(
pB = p + 2*k ; pB = p + 2*k ;
pA += 2 ; pA += 2 ;
while (k > 0U) while (k > 0)
{ {
/* G is half of the frequency complex spectrum */ /* G is half of the frequency complex spectrum */
//for k = 2:N //for k = 2:N

Loading…
Cancel
Save