Commit 486cebce authored by Laurent THOMAS's avatar Laurent THOMAS

replace a printf() by a cleaner call to AssertFatal()

parent fd83be4e
...@@ -618,17 +618,15 @@ typedef enum dft_size_idx { ...@@ -618,17 +618,15 @@ typedef enum dft_size_idx {
case Sz: \ case Sz: \
return DFT_##Sz; \ return DFT_##Sz; \
break; break;
static inline static inline dft_size_idx_t get_dft(int size)
dft_size_idx_t get_dft(int ofdm_symbol_size)
{ {
switch (ofdm_symbol_size) { switch (size) {
FOREACH_DFTSZ(FIND_ENUM) FOREACH_DFTSZ(FIND_ENUM)
default: default:
printf("function get_dft : unsupported ofdm symbol size \n"); AssertFatal(false, "function get_dft : unsupported DFT size %d\n", size);
assert(0);
break; break;
} }
return DFT_SIZE_IDXTABLESIZE; // never reached and will trigger assertion in idft function; return DFT_SIZE_IDXTABLESIZE;
} }
#define SZ_iENUM(Sz) IDFT_##Sz, #define SZ_iENUM(Sz) IDFT_##Sz,
...@@ -678,14 +676,12 @@ struct { ...@@ -678,14 +676,12 @@ struct {
return IDFT_##iSz; \ return IDFT_##iSz; \
break; break;
static inline static inline idft_size_idx_t get_idft(int size)
idft_size_idx_t get_idft(int ofdm_symbol_size)
{ {
switch (ofdm_symbol_size) { switch (size) {
FOREACH_IDFTSZ(FIND_iENUM) FOREACH_IDFTSZ(FIND_iENUM)
default: default:
printf("function get_idft : unsupported ofdm symbol size \n"); AssertFatal(false, "function get_idft : unsupported iDFT size %d\n", size);
assert(0);
break; break;
} }
return IDFT_SIZE_IDXTABLESIZE; // never reached and will trigger assertion in idft function return IDFT_SIZE_IDXTABLESIZE; // never reached and will trigger assertion in idft function
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment