now printf is disabled if twiddles arrays are external. Now while used for emdedded there is no prfintf garbage in compiled code.

This commit is contained in:
2025-10-09 15:38:10 +03:00
parent 86f488e456
commit 5e36a64acb
2 changed files with 10 additions and 2 deletions

View File

@ -20,8 +20,8 @@
#endif
#ifdef FFT_FP_EXTERNAL_TWIDDLES
extern int64_t twiddle_re[TWIDDLE_L];
extern int64_t twiddle_im[TWIDDLE_L];
extern volatile int64_t twiddle_re[TWIDDLE_L];
extern volatile int64_t twiddle_im[TWIDDLE_L];
#endif
void fft_twiddle_gen(int64_t* twiddle_re, int64_t* twiddle_im);